forked from AuroraMiddleware/gtk
make a bunch of data const
This commit is contained in:
parent
0217c9dbfb
commit
7ba35e56de
@ -57,49 +57,49 @@ typedef enum {
|
||||
|
||||
#define PART_SIZE 13
|
||||
|
||||
static char check_aa_bits[] = {
|
||||
static const char check_aa_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
||||
static char check_base_bits[] = {
|
||||
static const char check_base_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,
|
||||
0x07,0xfc,0x07,0xfc,0x07,0xfc,0x07,0x00,0x00,0x00,0x00};
|
||||
static char check_black_bits[] = {
|
||||
static const char check_black_bits[] = {
|
||||
0x00,0x00,0xfe,0x0f,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,
|
||||
0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x00,0x00};
|
||||
static char check_dark_bits[] = {
|
||||
static const char check_dark_bits[] = {
|
||||
0xff,0x1f,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,
|
||||
0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,0x00};
|
||||
static char check_light_bits[] = {
|
||||
static const char check_light_bits[] = {
|
||||
0x00,0x00,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
|
||||
0x10,0x00,0x10,0x00,0x10,0x00,0x10,0x00,0x10,0xfe,0x1f};
|
||||
static char check_mid_bits[] = {
|
||||
static const char check_mid_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
|
||||
0x08,0x00,0x08,0x00,0x08,0x00,0x08,0xfc,0x0f,0x00,0x00};
|
||||
static char check_text_bits[] = {
|
||||
static const char check_text_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x03,0x88,0x03,0xd8,0x01,0xf8,
|
||||
0x00,0x70,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
||||
static char radio_base_bits[] = {
|
||||
static const char radio_base_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0xf0,0x01,0xf8,0x03,0xfc,0x07,0xfc,0x07,0xfc,0x07,0xfc,
|
||||
0x07,0xfc,0x07,0xf8,0x03,0xf0,0x01,0x00,0x00,0x00,0x00};
|
||||
static char radio_black_bits[] = {
|
||||
static const char radio_black_bits[] = {
|
||||
0x00,0x00,0xf0,0x01,0x0c,0x02,0x04,0x00,0x02,0x00,0x02,0x00,0x02,0x00,0x02,
|
||||
0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
||||
static char radio_dark_bits[] = {
|
||||
static const char radio_dark_bits[] = {
|
||||
0xf0,0x01,0x0c,0x06,0x02,0x00,0x02,0x00,0x01,0x00,0x01,0x00,0x01,0x00,0x01,
|
||||
0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00};
|
||||
static char radio_light_bits[] = {
|
||||
static const char radio_light_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x08,0x00,0x10,0x00,0x10,0x00,0x10,0x00,
|
||||
0x10,0x00,0x10,0x00,0x08,0x00,0x08,0x0c,0x06,0xf0,0x01};
|
||||
static char radio_mid_bits[] = {
|
||||
static const char radio_mid_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x04,0x00,0x08,0x00,0x08,0x00,0x08,0x00,
|
||||
0x08,0x00,0x08,0x00,0x04,0x0c,0x06,0xf0,0x01,0x00,0x00};
|
||||
static char radio_text_bits[] = {
|
||||
static const char radio_text_bits[] = {
|
||||
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x00,0xf0,0x01,0xf0,0x01,0xf0,
|
||||
0x01,0xe0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
||||
|
||||
static struct {
|
||||
char *bits;
|
||||
GdkBitmap *bmap;
|
||||
const char *bits;
|
||||
GdkBitmap *bmap;
|
||||
} parts[] = {
|
||||
{ check_aa_bits, NULL },
|
||||
{ check_base_bits, NULL },
|
||||
@ -223,7 +223,7 @@ sys_color_to_gtk_color(int id, GdkColor *pcolor)
|
||||
static void
|
||||
setup_system_styles(GtkStyle *style)
|
||||
{
|
||||
char buf[1024], font_buf[64], *font_ptr;
|
||||
char buf[1024], font_buf[256], *font_ptr;
|
||||
GdkColor menu_color;
|
||||
GdkColor menu_text_color;
|
||||
GdkColor fg_prelight;
|
||||
@ -1375,7 +1375,7 @@ draw_handle (GtkStyle *style,
|
||||
{
|
||||
XpThemeElement hndl;
|
||||
|
||||
if (TRUE) {
|
||||
if (!GTK_IS_HANDLE_BOX(widget)) {
|
||||
if (orientation == GTK_ORIENTATION_VERTICAL)
|
||||
hndl = XP_THEME_ELEMENT_GRIPPER_V;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user