]> Pileus Git - ~andy/gtk/blobdiff - tests/testgtkrc
add a little test for the newly introduced indicator-size property.
[~andy/gtk] / tests / testgtkrc
index ff0288c6514818669b406c6488e3a6c6802ebd75..f711ae79bdbae90c068a8f095f802f9c690058bf 100644 (file)
 # testgtkrc2 sets all the buttons in the main window to blue by default
 include "testgtkrc2"
 
-pixmap_path "."
+double-click_timeout = 42
+bell-duration = 39
+bell_duration = 40
+
+# gtk-cursor-blink-time = 200
+# gtk-menu-bar-accel = F10
+
+style "global-style-properties"
+{
+#  xthickness = 20
+  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
+}
+class "GtkWidget" style "global-style-properties"
 
 style "defaultfont"
 {
-#  fontset = "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*,*"
-  font = "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*,*"
+  font_name = "Sans 12"
+
+  Gtest::foo = 47
+  Gtest::bar = 47
+#  GtkScrollbar::spacing = 33
+#  GtkButton::color = { 3, 2,45, 6, 6, 4, 23 }
+}
+
+style "myicons"
+{
+  stock["gtk-dialog-warning"] = 
+    { 
+      { "3DRings.xpm", *, *, *} 
+    }
 }
 
+class "GtkImage" style "myicons"
+
 # common default
 class "GtkWidget" style "defaultfont"
 
 style "window"
 {
-#  bg_pixmap[NORMAL] = "warning.xpm"
+# bg_pixmap[NORMAL] = "marble.xpm"
 }
 
 style "scale"
@@ -46,7 +79,8 @@ style "toggle_button" = "button"
 {
   fg[NORMAL] = { 1.0, 0, 0 }
   fg[ACTIVE] = { 1.0, 0, 0 }
-  bg_pixmap[NORMAL] = "<parent>"
+#  bg_pixmap[ACTIVE] = "check-y.xpm"
+#  bg_pixmap[NORMAL] = "check-n.xpm"
 }
 
 style "text"
@@ -67,7 +101,7 @@ style "slider"
 
 style "ruler"
 {
-  font = '-adobe-helvetica-medium-r-normal--*-80-*-*-*-*-*-*'
+  font_name = 'Sans 8'
 }
 
 style "curve"
@@ -75,19 +109,33 @@ style "curve"
   fg[NORMAL] = { 58000, 0, 0 }                  # red
 }
 
-style "red-bar"
+style "red-bar-parent"
+{
+  color["my-red"] = "red"
+  color["my-other-red"] = { 0.95, .55, 0.55 }
+}
+
+style "red-bar" = "red-bar-parent"
 {
-  bg[PRELIGHT] = { 0.95, .55, 0.55 }
+  color["my-light-red"] = lighter (lighter (@my-red))
+
+  bg[PRELIGHT] = @my-light-red
 }
 
 # override testgtk2, introduce the green color in the button list
 style 'button_list' = 'button'
 {
-  font = "-adobe-helvetica-medium-r-normal--*-100-*-*-*-*-*-*"
+  font_name = "Monospace 10"
   bg[PRELIGHT] = { 0, 0.75, 0x00 }
 }
 widget "main window.*GtkScrolledWindow.*GtkButton*" style "button_list"
 
+style "checkbutton" {
+#  GtkCheckButton::indicator-size = 27
+}
+
+class "GtkCheckButton" style "checkbutton"
+
 
 class "GtkScrollbar" style "red-bar"
 
@@ -123,8 +171,8 @@ binding "test2"
 # application (for hard coded bindings on application basis)
 # rc          (used implicitel by rc files)
 # highest
-class "GtkWindow" binding "test1"           # implicit : rc
-class "GtkWindow" binding : highest "test2" # override "rc" priority
+class "GtkCList" binding  "test1"           # implicit : rc
+#class "GtkWindow" binding : highest "test2" # override "rc" priority
 
 binding "clist-test"
 {
@@ -137,3 +185,34 @@ binding "clist-test"
 }
 
 class "GtkCList" binding "clist-test"
+
+style "testthickness" {
+  xthickness = 15
+  ythickness = 15
+}
+
+#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"