X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=engines%2Fopenbox%2Fobtheme.c;h=ccd17cc0bf7da1ff8f1c629703cf834c274bb38a;hb=49eea4715faa55a0da670112619f22da6e20f5aa;hp=f0dbb6763a6ca0502081d0e8a4a41af2fce7e898;hpb=506c1aa005d0328d4d32e123d437c6afe92b8ea4;p=chaz%2Fopenbox diff --git a/engines/openbox/obtheme.c b/engines/openbox/obtheme.c index f0dbb676..ccd17cc0 100644 --- a/engines/openbox/obtheme.c +++ b/engines/openbox/obtheme.c @@ -328,7 +328,8 @@ gboolean obtheme_load() } if (!read_int(db, "handleWidth", &ob_s_handle_height) || - ob_s_handle_height < 0 || ob_s_handle_height > 100) ob_s_handle_height = 6; + ob_s_handle_height < 0 || ob_s_handle_height > 100) + ob_s_handle_height = 6; if (!read_int(db, "bevelWidth", &ob_s_bevel) || ob_s_bevel <= 0 || ob_s_bevel > 100) ob_s_bevel = 3; if (!read_int(db, "borderWidth", &ob_s_bwidth) || @@ -344,7 +345,7 @@ gboolean obtheme_load() ob_s_cb_unfocused_color = color_new(0xff, 0xff, 0xff); if (!read_color(db, "window.label.focus.textColor", &ob_s_title_focused_color)) - ob_s_title_focused_color = color_new(0xff, 0xff, 0xff); + ob_s_title_focused_color = color_new(0x0, 0x0, 0x0); if (!read_color(db, "window.label.unfocus.textColor", &ob_s_title_unfocused_color)) ob_s_title_unfocused_color = color_new(0xff, 0xff, 0xff); @@ -356,49 +357,67 @@ gboolean obtheme_load() ob_s_titlebut_unfocused_color = color_new(0xff, 0xff, 0xff); if (read_mask(db, "window.button.max.mask", &ob_s_max_unset_mask)) { - if (!read_mask(db, "window.button.max.pressed.mask", + if (!read_mask(db, "window.button.max.toggled.mask", &ob_s_max_set_mask)) { ob_s_max_set_mask = pixmap_mask_copy(ob_s_max_unset_mask); } } else { { - char data[] = { 0x3f, 0x3f, 0x21, 0x21, 0x21, 0x3f }; - ob_s_max_unset_mask = pixmap_mask_new(6, 6, data); + char data[] = { 0x7f, 0x7f, 0x7f, 0x41, 0x41, 0x41, 0x7f }; + ob_s_max_unset_mask = pixmap_mask_new(7, 7, data); } { - char data[] = { 0x3c, 0x24, 0x27, 0x3f, 0x0f, 0x0f }; - ob_s_max_set_mask = pixmap_mask_new(6, 6, data); + char data[] = { 0x7c, 0x44, 0x47, 0x47, 0x7f, 0x1f, 0x1f }; + ob_s_max_set_mask = pixmap_mask_new(7, 7, data); } } if (!read_mask(db, "window.button.icon.mask", &ob_s_iconify_mask)) { - char data[] = { 0x00, 0x00, 0x00, 0x3f, 0x3f, 0x3f }; - ob_s_iconify_mask = pixmap_mask_new(6, 6, data); + char data[] = { 0x00, 0x00, 0x00, 0x00, 0x7f, 0x7f, 0x7f }; + ob_s_iconify_mask = pixmap_mask_new(7, 7, data); } if (read_mask(db, "window.button.stick.mask", &ob_s_desk_unset_mask)) { - if (!read_mask(db, "window.button.stick.pressed.mask", + if (!read_mask(db, "window.button.stick.toggled.mask", &ob_s_desk_set_mask)) { ob_s_desk_set_mask = pixmap_mask_copy(ob_s_desk_unset_mask); } } else { { - char data[] = { 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 }; - ob_s_desk_unset_mask = pixmap_mask_new(6, 6, data); + char data[] = { 0x63, 0x63, 0x00, 0x00, 0x00, 0x63, 0x63 }; + ob_s_desk_unset_mask = pixmap_mask_new(7, 7, data); } { - char data[] = { 0x0c, 0x0c, 0x3f, 0x3f, 0x0c, 0x0c }; - ob_s_desk_set_mask = pixmap_mask_new(6, 6, data); + char data[] = { 0x00, 0x36, 0x36, 0x08, 0x36, 0x36, 0x00 }; + ob_s_desk_set_mask = pixmap_mask_new(7, 7, data); + } + } + + if (read_mask(db, "window.button.shade.mask", + &ob_s_shade_unset_mask)) { + if (!read_mask(db, "window.button.shade.toggled.mask", + &ob_s_shade_set_mask)) { + ob_s_shade_set_mask = + pixmap_mask_copy(ob_s_shade_unset_mask); + } + } else { + { + char data[] = { 0x7f, 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x00 }; + ob_s_shade_unset_mask = pixmap_mask_new(7, 7, data); + } + { + char data[] = { 0x7f, 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x7f }; + ob_s_shade_set_mask = pixmap_mask_new(7, 7, data); } } if (!read_mask(db, "window.button.close.mask", &ob_s_close_mask)) { - char data[] = { 0x33, 0x3f, 0x1e, 0x1e, 0x3f, 0x33 }; - ob_s_close_mask = pixmap_mask_new(6, 6, data); + char data[] = { 0x63, 0x77, 0x3e, 0x1c, 0x3e, 0x77, 0x63 }; + ob_s_close_mask = pixmap_mask_new(7, 7, data); } if (!read_appearance(db, "window.title.focus", ob_a_focused_title)) @@ -448,6 +467,14 @@ gboolean obtheme_load() ob_a_focused_unpressed_desk = appearance_copy(ob_a_focused_unpressed_max); ob_a_focused_pressed_desk = appearance_copy(ob_a_focused_pressed_max); ob_a_focused_pressed_set_desk = appearance_copy(ob_a_focused_pressed_max); + ob_a_unfocused_unpressed_shade = + appearance_copy(ob_a_unfocused_unpressed_max); + ob_a_unfocused_pressed_shade = appearance_copy(ob_a_unfocused_pressed_max); + ob_a_unfocused_pressed_set_shade = + appearance_copy(ob_a_unfocused_pressed_max); + ob_a_focused_unpressed_shade = appearance_copy(ob_a_focused_unpressed_max); + ob_a_focused_pressed_shade = appearance_copy(ob_a_focused_pressed_max); + ob_a_focused_pressed_set_shade = appearance_copy(ob_a_focused_pressed_max); ob_a_unfocused_unpressed_iconify = appearance_copy(ob_a_unfocused_unpressed_max); ob_a_unfocused_pressed_iconify = @@ -495,6 +522,12 @@ gboolean obtheme_load() ob_a_unfocused_unpressed_desk->texture[0].type = ob_a_unfocused_pressed_desk->texture[0].type = ob_a_unfocused_pressed_set_desk->texture[0].type = + ob_a_focused_unpressed_shade->texture[0].type = + ob_a_focused_pressed_shade->texture[0].type = + ob_a_focused_pressed_set_shade->texture[0].type = + ob_a_unfocused_unpressed_shade->texture[0].type = + ob_a_unfocused_pressed_shade->texture[0].type = + ob_a_unfocused_pressed_set_shade->texture[0].type = ob_a_focused_unpressed_iconify->texture[0].type = ob_a_focused_pressed_iconify->texture[0].type = ob_a_unfocused_unpressed_iconify->texture[0].type = @@ -520,6 +553,14 @@ gboolean obtheme_load() ob_a_focused_pressed_set_desk->texture[0].data.mask.mask = ob_a_unfocused_pressed_set_desk->texture[0].data.mask.mask = ob_s_desk_set_mask; + ob_a_focused_unpressed_shade->texture[0].data.mask.mask = + ob_a_unfocused_unpressed_shade->texture[0].data.mask.mask = + ob_a_focused_pressed_shade->texture[0].data.mask.mask = + ob_a_unfocused_pressed_shade->texture[0].data.mask.mask = + ob_s_shade_unset_mask; + ob_a_focused_pressed_set_shade->texture[0].data.mask.mask = + ob_a_unfocused_pressed_set_shade->texture[0].data.mask.mask = + ob_s_shade_set_mask; ob_a_focused_unpressed_iconify->texture[0].data.mask.mask = ob_a_unfocused_unpressed_iconify->texture[0].data.mask.mask = ob_a_focused_pressed_iconify->texture[0].data.mask.mask = @@ -533,6 +574,9 @@ gboolean obtheme_load() ob_a_focused_unpressed_desk->texture[0].data.mask.color = ob_a_focused_pressed_desk->texture[0].data.mask.color = ob_a_focused_pressed_set_desk->texture[0].data.mask.color = + ob_a_focused_unpressed_shade->texture[0].data.mask.color = + ob_a_focused_pressed_shade->texture[0].data.mask.color = + ob_a_focused_pressed_set_shade->texture[0].data.mask.color = ob_a_focused_unpressed_iconify->texture[0].data.mask.color = ob_a_focused_pressed_iconify->texture[0].data.mask.color = ob_s_titlebut_focused_color; @@ -544,6 +588,9 @@ gboolean obtheme_load() ob_a_unfocused_unpressed_desk->texture[0].data.mask.color = ob_a_unfocused_pressed_desk->texture[0].data.mask.color = ob_a_unfocused_pressed_set_desk->texture[0].data.mask.color = + ob_a_unfocused_unpressed_shade->texture[0].data.mask.color = + ob_a_unfocused_pressed_shade->texture[0].data.mask.color = + ob_a_unfocused_pressed_set_shade->texture[0].data.mask.color = ob_a_unfocused_unpressed_iconify->texture[0].data.mask.color = ob_a_unfocused_pressed_iconify->texture[0].data.mask.color = ob_s_titlebut_unfocused_color;