/*StyledEdit: constants*/ #ifndef CONSTANTS_H #define CONSTANTS_H #include #include #define APP_SIGNATURE "application/x-vnd.obos.styled-edit" const float TEXT_INSET = 3.0; /*Messages for menu commands file menu*/ const uint32 MENU_NEW ='MFnw'; const uint32 MENU_OPEN ='MFop'; const uint32 MENU_SAVE ='MSav'; const uint32 MENU_SAVEAS ='MEsa'; const uint32 MENU_REVERT ='MFre'; const uint32 MENU_CLOSE ='MFcl'; const uint32 MENU_PAGESETUP ='MFps'; const uint32 MENU_PRINT ='MFpr'; const uint32 MENU_QUIT ='MFqu'; //edit menu const uint32 MENU_CLEAR ='MEcl'; const uint32 MENU_FIND ='MEfi'; const uint32 MENU_FIND_AGAIN ='MEfa'; const uint32 MENU_FIND_SELECTION ='MEfs'; const uint32 MENU_REPLACE ='MEre'; const uint32 MENU_REPLACE_SAME ='MErs'; const uint32 MSG_SEARCH ='msea'; const uint32 MSG_REPLACE ='msre'; const uint32 MSG_REPLACE_ALL ='mrea'; //"Font"-menu const uint32 FONT_SIZE ='FMsi'; const uint32 FONT_FAMILY ='FFch'; const uint32 FONT_STYLE ='FSch'; const uint32 FONT_COLOR ='Fcol'; //fontcolors //red, green, blue, alphachannel const rgb_color BLACK = {0, 0, 0, 255}; const rgb_color RED = {255, 0, 0, 255}; const rgb_color GREEN = {0, 255, 0, 255}; const rgb_color BLUE = {0, 0, 255, 255}; const rgb_color CYAN = {0, 255, 255, 255}; const rgb_color MAGENTA = {255, 0, 255, 255}; const rgb_color YELLOW = {255, 255, 0, 255}; //"Document"-menu const uint32 ALIGN_LEFT ='ALle'; const uint32 ALIGN_CENTER ='ALce'; const uint32 ALIGN_RIGHT ='ALri'; const uint32 WRAP_LINES ='MDwr'; //enables "edit" menuitems const uint32 ENABLE_ITEMS ='ENit'; const uint32 DISABLE_ITEMS ='DIit'; const uint32 CHANGE_WINDOW ='CHwi'; const uint32 TEXT_CHANGED ='TEch'; // file panel constants const uint32 OPEN_AS_ENCODING ='FPoe'; const uint32 SAVE_AS_ENCODING ='FPse'; const uint32 SAVE_THEN_QUIT ='FPsq'; #endif // CONSTANTS_H