4coder/4coder_generated/style.h

93 lines
1.4 KiB
C
Raw Normal View History

2016-03-04 23:10:00 +00:00
enum Style_Tag{
Stag_Bar,
Stag_Bar_Active,
Stag_Base,
Stag_Pop1,
Stag_Pop2,
Stag_Back,
Stag_Margin,
Stag_Margin_Hover,
Stag_Margin_Active,
2017-04-23 02:11:03 +00:00
Stag_List_Item,
Stag_List_Item_Hover,
Stag_List_Item_Active,
2016-03-04 23:10:00 +00:00
Stag_Cursor,
Stag_At_Cursor,
2018-09-22 23:45:24 +00:00
Stag_Highlight_Cursor_Line,
2016-03-04 23:10:00 +00:00
Stag_Highlight,
Stag_At_Highlight,
Stag_Mark,
Stag_Default,
Stag_Comment,
Stag_Keyword,
Stag_Str_Constant,
Stag_Char_Constant,
Stag_Int_Constant,
Stag_Float_Constant,
Stag_Bool_Constant,
Stag_Preproc,
Stag_Include,
Stag_Special_Character,
2016-10-14 21:21:17 +00:00
Stag_Ghost_Character,
2016-03-04 23:10:00 +00:00
Stag_Highlight_Junk,
Stag_Highlight_White,
Stag_Paste,
Stag_Undo,
Stag_Next_Undo,
2018-09-30 12:14:47 +00:00
Stag_Back_Cycle_1,
Stag_Back_Cycle_2,
Stag_Back_Cycle_3,
Stag_Back_Cycle_4,
Stag_Text_Cycle_1,
Stag_Text_Cycle_2,
Stag_Text_Cycle_3,
Stag_Text_Cycle_4,
Stag_COUNT
2016-03-04 23:10:00 +00:00
};
static char *style_tag_names[] = {
"Bar",
"Bar_Active",
"Base",
"Pop1",
"Pop2",
"Back",
"Margin",
"Margin_Hover",
"Margin_Active",
"List_Item",
"List_Item_Hover",
"List_Item_Active",
"Cursor",
"At_Cursor",
2018-09-22 23:45:24 +00:00
"Highlight_Cursor_Line",
"Highlight",
"At_Highlight",
"Mark",
"Default",
"Comment",
"Keyword",
"Str_Constant",
"Char_Constant",
"Int_Constant",
"Float_Constant",
"Bool_Constant",
"Preproc",
"Include",
"Special_Character",
"Ghost_Character",
"Highlight_Junk",
"Highlight_White",
"Paste",
"Undo",
"Next_Undo",
2018-09-30 12:14:47 +00:00
"Back_Cycle_1",
"Back_Cycle_2",
"Back_Cycle_3",
"Back_Cycle_4",
"Text_Cycle_1",
"Text_Cycle_2",
"Text_Cycle_3",
"Text_Cycle_4",
};