]> Pileus Git - ~andy/gtk/blobdiff - tests/testgtkrc
gdk: Update gdk_settings_map for blink timeout to work
[~andy/gtk] / tests / testgtkrc
index 4abd0853d17dccffbb60639fade7574a303ac985..990a32249279f8ed298861ac7bf955ce29e69612 100644 (file)
 # testgtkrc2 sets all the buttons in the main window to blue by default
 include "testgtkrc2"
 
-#include "/usr/local/share/themes/Pixmap/gtk/gtkrc"
-#include "/usr/local/share/themes/Redmond95/gtk/gtkrc"
-#include "/usr/local/share/themes/Metal/gtk/gtkrc"
-#include "/usr/local/share/themes/Notif/gtk/gtkrc"
-#include "/usr/local/share/themes/Default/gtk/gtkrc"
-
-# On Windows, if you have installed gtk-engines, try this for instance:
-#include "\\windows\\gtk\\themes\\Pixmap\\gtk\\gtkrc"
-
 double-click_timeout = 42
 bell-duration = 39
 bell_duration = 40
 
-pixmap_path "."
+# gtk-cursor-blink-time = 200
+# gtk-menu-bar-accel = F10
 
 style "global-style-properties"
 {
 #  xthickness = 20
-  GtkSpinButton::shadow_type = etched-out
+  GtkButton::child_displacement_x = 1
+  GtkButton::child_displacement_y = 1
+#  GtkWidget::cursor_color = "#ff0000"
+  GtkToolbar::space_size = 10
+  GtkToolbar::space_style = line
+  GtkToolbar::button_relief = none
+  GtkButtonBox::child_min_width = 0
+  GtkButtonBox::child_min_height = 0
+  GtkArrow::arrow-scaling = 1.0
+  GtkEntry::invisible-char = 10046
 }
+
 class "GtkWidget" style "global-style-properties"
 
 style "defaultfont"
@@ -76,6 +78,14 @@ style "button" = "default"
 #  bg[PRELIGHT] = { 0.75, 0, 0x00 }
 }
 
+style "label" = "default"
+{
+ base[PRELIGHT] = "gray"
+ base[ACTIVE] = mix (0.9, "gray", "purple")
+}
+
+class "GtkLabel" style "label"
+
 style "toggle_button" = "button"
 {
   fg[NORMAL] = { 1.0, 0, 0 }
@@ -110,9 +120,17 @@ style "curve"
   fg[NORMAL] = { 58000, 0, 0 }                  # red
 }
 
-style "red-bar"
+style "red-bar-parent"
 {
-  bg[PRELIGHT] = { 0.95, .55, 0.55 }
+  color["my-red"] = "red"
+  color["my-other-red"] = { 0.95, .55, 0.55 }
+}
+
+style "red-bar" = "red-bar-parent"
+{
+  color["my-light-red"] = lighter (lighter (@my-red))
+
+  bg[PRELIGHT] = @my-light-red
 }
 
 # override testgtk2, introduce the green color in the button list
@@ -123,6 +141,12 @@ style 'button_list' = 'button'
 }
 widget "main window.*GtkScrolledWindow.*GtkButton*" style "button_list"
 
+style "checkbutton" {
+#  GtkCheckButton::indicator-size = 27
+}
+
+class "GtkCheckButton" style "checkbutton"
+
 
 class "GtkScrollbar" style "red-bar"
 
@@ -135,7 +159,6 @@ widget_class "*GtkRadioButton*" style "toggle_button"
 widget_class "*GtkButton*" style "button"
 widget_class "*Ruler" style "ruler"
 widget_class "*GtkText" style "text"
-widget "*GtkCurve" style "curve"
 
 binding "test1"
 {
@@ -179,3 +202,27 @@ style "testthickness" {
 }
 
 #class "GtkFrame" style "testthickness"
+
+# Test ordering of RC file priorities
+
+style "testgtk-red-style" {
+  fg[NORMAL] = "red"
+}
+
+style "testgtk-green-style" {
+  fg[NORMAL] = "green"
+}
+
+style "testgtk-blue-style" {
+ fg[NORMAL] = "blue"
+}
+
+
+widget_class "*.GtkAspectFrame.*.GtkLabel" style "testgtk-green-style"
+widget_class "*.GtkAspectFrame.*.GtkLabel" style "testgtk-blue-style"  # override because it's later
+
+widget "*.testgtk-red-label" style "testgtk-red-style"  # override because it's widget, not widget_class
+
+widget "*.testgtk-green-label" style : highest "testgtk-green-style"
+# overrides the following, because it is higher priority
+widget "*.testgtk-green-label" style "testgtk-red-style"