00001
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
#ifndef _GUICOLORS_H
00024
#define _GUICOLORS_H
00025
00026
00027 #define DEFAULT_BG_R 0
00028 #define DEFAULT_BG_G 0
00029 #define DEFAULT_BG_B 0
00030
00031
00032 #define DEFAULT_FG_R 255
00033 #define DEFAULT_FG_G 0
00034 #define DEFAULT_FG_B 0
00035
00036
00037
00038
00039
00040 #define EDIT_DEFAULT_BG_R 255
00041 #define EDIT_DEFAULT_BG_G 255
00042 #define EDIT_DEFAULT_BG_B 255
00043
00044
00045 #define EDIT_DEFAULT_FG_R 0
00046 #define EDIT_DEFAULT_FG_G 0
00047 #define EDIT_DEFAULT_FG_B 0
00048
00049 #define EDIT_DEFAULT_FW 1
00050
00051
00052 #define EDIT_DEFAULT_FC_R 0
00053 #define EDIT_DEFAULT_FC_G 0
00054 #define EDIT_DEFAULT_FC_B 0
00055
00056
00057
00058 #define DIALOG_DEFAULT_BG_R 255
00059 #define DIALOG_DEFAULT_BG_G 255
00060 #define DIALOG_DEFAULT_BG_B 255
00061
00062 #define DIALOG_DEFAULT_FW 2
00063
00064
00065 #define DIALOG_DEFAULT_FC_R 0
00066 #define DIALOG_DEFAULT_FC_G 0
00067 #define DIALOG_DEFAULT_FC_B 0
00068
00069
00070
00071 #define STATIC_DEFAULT_BG_R DIALOG_DEFAULT_BG_R
00072 #define STATIC_DEFAULT_BG_G DIALOG_DEFAULT_BG_G
00073 #define STATIC_DEFAULT_BG_B DIALOG_DEFAULT_BG_B
00074
00075
00076 #define STATIC_DEFAULT_FG_R 0
00077 #define STATIC_DEFAULT_FG_G 0
00078 #define STATIC_DEFAULT_FG_B 0
00079
00080 #define STATIC_DEFAULT_FW 0
00081
00082
00083
00084 #define BUTTON_DEFAULT_BG_R 64
00085 #define BUTTON_DEFAULT_BG_G 64
00086 #define BUTTON_DEFAULT_BG_B 64
00087
00088
00089 #define BUTTON_DEFAULT_FG_R 224
00090 #define BUTTON_DEFAULT_FG_G 224
00091 #define BUTTON_DEFAULT_FG_B 224
00092
00093 #define BUTTON_DEFAULT_FW 1
00094
00095
00096 #define BUTTON_DEFAULT_FC_R 0
00097 #define BUTTON_DEFAULT_FC_G 0
00098 #define BUTTON_DEFAULT_FC_B 0
00099
00100
00101
#endif // _GUICOLORS_H