diff options
author | Calum Benson <calum@src.gnome.org> | 2002-11-05 19:38:12 +0000 |
---|---|---|
committer | Calum Benson <calum@src.gnome.org> | 2002-11-05 19:38:12 +0000 |
commit | 6c18374142f9b45ede0fdecef660f503e854ccb0 (patch) | |
tree | 68776d77a4ef4eff28a22e7e8854baf831c93327 /src/themes | |
parent | a64b868dbd93ec1029bea5e3f8d77472272f6b0c (diff) | |
download | metacity-6c18374142f9b45ede0fdecef660f503e854ccb0.tar.gz |
Crux tweaks: adds a Restore button for maximized windows, and un-hard-codes
titlebar text colors. Fixes #97759.
Diffstat (limited to 'src/themes')
-rw-r--r-- | src/themes/Crux/active-restore-button.png | bin | 0 -> 171 bytes | |||
-rw-r--r-- | src/themes/Crux/inactive-restore-button.png | bin | 0 -> 249 bytes | |||
-rw-r--r-- | src/themes/Crux/metacity-theme-1.xml | 76 |
3 files changed, 62 insertions, 14 deletions
diff --git a/src/themes/Crux/active-restore-button.png b/src/themes/Crux/active-restore-button.png Binary files differnew file mode 100644 index 00000000..ec7259e3 --- /dev/null +++ b/src/themes/Crux/active-restore-button.png diff --git a/src/themes/Crux/inactive-restore-button.png b/src/themes/Crux/inactive-restore-button.png Binary files differnew file mode 100644 index 00000000..bafa2967 --- /dev/null +++ b/src/themes/Crux/inactive-restore-button.png diff --git a/src/themes/Crux/metacity-theme-1.xml b/src/themes/Crux/metacity-theme-1.xml index 989e9944..a6994561 100644 --- a/src/themes/Crux/metacity-theme-1.xml +++ b/src/themes/Crux/metacity-theme-1.xml @@ -80,7 +80,7 @@ <piece position="title"> <draw_ops> - <title color="white" x="IconTitleSpacing" y="0"/> + <title color="gtk:fg[SELECTED]" x="IconTitleSpacing" y="0"/> </draw_ops> </piece> @@ -217,21 +217,45 @@ </button> </frame_style> +<frame_style name="normal_maximized" parent="normal"> + <button function="maximize" state="normal"> + <draw_ops> + <include name="inactive_button"/> + <image filename="inactive-restore-button.png" x="2" y="2" width="width-4" height="height-4"/> + </draw_ops> + </button> -<!-- Active (focused) shaded style --> -<frame_style name="normal_shaded" geometry="normal" parent="normal"> - <piece position="left_titlebar_edge"> + <button function="maximize" state="pressed"> <draw_ops> - <image filename="inactive-left-top-border-shaded.png" x="0" y="3" width="object_width" height="object_height"/> + <include name="inactive_button_pressed"/> + <image filename="inactive-restore-button.png" x="2" y="2" width="width - 4" height="height - 4"/> </draw_ops> - </piece> - <piece position="right_titlebar_edge"> + </button> + + <button function="maximize" state="prelight"> <draw_ops> - <image filename="inactive-right-top-border-shaded.png" x="width - object_width" y="3" width="object_width" height="object_height"/> + <include name="inactive_button_prelight"/> + <image filename="inactive-restore-button.png" x="2" y="2" width="width-4" height="height-4"/> </draw_ops> - </piece> + </button> + </frame_style> +<!-- Active (focused) shaded style --> + <frame_style name="normal_shaded" geometry="normal" parent="normal"> + <piece position="left_titlebar_edge"> + <draw_ops> + <image filename="inactive-left-top-border-shaded.png" x="0" y="3" width="object_width" height="object_height"/> + </draw_ops> + </piece> + <piece position="right_titlebar_edge"> + <draw_ops> + <image filename="inactive-right-top-border-shaded.png" x="width - object_width" y="3" width="object_width" height="object_height"/> + </draw_ops> + </piece> + </frame_style> + + <!-- Active (focused) style --> <frame_style name="focused" geometry="normal"> <piece position="left_edge"> @@ -248,7 +272,7 @@ <piece position="title"> <draw_ops> - <title color="white" x="IconTitleSpacing" y="((height - title_height) / 2) `max` 0"/> + <title color="gtk:fg[SELECTED]" x="IconTitleSpacing" y="((height - title_height) / 2) `max` 0"/> </draw_ops> </piece> @@ -399,6 +423,30 @@ </button> </frame_style> +<frame_style name="focused_maximized" geometry="normal" parent="focused"> + <button function="maximize" state="normal"> + <draw_ops> + <include name="active_button"/> + <image filename="active-restore-button.png" x="2" y="2" width="width-4" height="height-4"/> + </draw_ops> + </button> + + <button function="maximize" state="pressed"> + <draw_ops> + <include name="active_button_pressed"/> + <image filename="active-restore-button.png" x="2" y="2" width="width-4" height="height-4"/> + </draw_ops> + </button> + + <button function="maximize" state="prelight"> + <draw_ops> + <include name="active_button_prelight"/> + <image filename="active-restore-button.png" x="2" y="2" width="width-4" height="height-4"/> + </draw_ops> + </button> + +</frame_style> + <!-- Active (focused) shaded style --> <frame_style name="focused_shaded" geometry="normal" parent="focused"> <piece position="left_titlebar_edge"> @@ -469,12 +517,12 @@ <frame_style_set name="normal"> <frame focus="yes" state="shaded" style="focused_shaded"/> <frame focus="yes" state="normal" resize="both" style="focused"/> -<frame focus="yes" state="maximized" style="focused"/> -<frame focus="yes" state="maximized_and_shaded" style="focused_shaded"/> +<frame focus="yes" state="maximized" style="focused_maximized"/> +<frame focus="yes" state="maximized_and_shaded" style="focused_maximized"/> <frame focus="no" state="normal" resize="both" style="normal"/> <frame focus="no" state="shaded" style="normal_shaded"/> -<frame focus="no" state="maximized" style="normal"/> -<frame focus="no" state="maximized_and_shaded" style="normal_shaded"/> +<frame focus="no" state="maximized" style="normal_maximized"/> +<frame focus="no" state="maximized_and_shaded" style="normal_maximized"/> </frame_style_set> <frame_style_set name="border"> |