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,
|
|
|
|
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,
|
2017-06-05 21:48:49 +00:00
|
|
|
Stag_COUNT
|
2016-03-04 23:10:00 +00:00
|
|
|
};
|
|
|
|
|
2017-06-05 21:48:49 +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",
|
|
|
|
"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",
|
|
|
|
};
|