mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
26 lines
454 B
C++
26 lines
454 B
C++
#ifndef __NCPP_NCSTYLE_HH
|
|
#define __NCPP_NCSTYLE_HH
|
|
|
|
#include <cstdint>
|
|
|
|
#include <notcurses/notcurses.h>
|
|
|
|
#include "_flag_enum_operator_helpers.hh"
|
|
|
|
namespace ncpp
|
|
{
|
|
enum class CellStyle : uint32_t
|
|
{
|
|
None = 0,
|
|
Underline = NCSTYLE_UNDERLINE,
|
|
Reverse = NCSTYLE_REVERSE,
|
|
Dim = NCSTYLE_DIM,
|
|
Bold = NCSTYLE_BOLD,
|
|
Italic = NCSTYLE_ITALIC,
|
|
Struck = NCSTYLE_STRUCK,
|
|
};
|
|
|
|
DECLARE_ENUM_FLAG_OPERATORS (CellStyle)
|
|
}
|
|
#endif
|