[gtk+] Add a css node test for scales
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Add a css node test for scales
- Date: Fri, 25 Mar 2016 17:22:18 +0000 (UTC)
commit 4c8557fa35e6e0705a21e084479606e749e823cc
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Mar 25 13:12:00 2016 -0400
Add a css node test for scales
testsuite/css/nodes/Makefile.am | 1 +
testsuite/css/nodes/scale.nodes | 63 ++++++++++++++++++++++++++
testsuite/css/nodes/scale.ui | 94 +++++++++++++++++++++++++++++++++++++++
3 files changed, 158 insertions(+), 0 deletions(-)
---
diff --git a/testsuite/css/nodes/Makefile.am b/testsuite/css/nodes/Makefile.am
index 55bd39d..339c47e 100644
--- a/testsuite/css/nodes/Makefile.am
+++ b/testsuite/css/nodes/Makefile.am
@@ -54,6 +54,7 @@ test_data = \
paned.ltr.ui paned.ltr.nodes \
paned.rtl.ui paned.rtl.nodes \
progressbar.ui progressbar.nodes \
+ scale.ui scale.nodes \
$(NULL)
EXTRA_DIST += $(test_in_files) $(test_data)
diff --git a/testsuite/css/nodes/scale.nodes b/testsuite/css/nodes/scale.nodes
new file mode 100644
index 0000000..0ba5727
--- /dev/null
+++ b/testsuite/css/nodes/scale.nodes
@@ -0,0 +1,63 @@
+[window.background:dir(ltr)]
+ decoration:dir(ltr)
+ box#scales.vertical:dir(ltr)
+ scale.horizontal:dir(ltr)
+ value.top
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.top:dir(ltr)
+ scale.horizontal:dir(ltr)
+ value.bottom
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.top:dir(ltr)
+ scale.horizontal:dir(ltr)
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.top:dir(ltr)
+ fill.top:dir(ltr)
+ scale.horizontal:dir(ltr)
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.bottom:dir(ltr)
+ scale.horizontal:dir(ltr)
+ marks.top:dir(ltr)
+ mark:dir(ltr)
+ indicator
+ label
+ mark:dir(ltr)
+ indicator
+ label
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.top:dir(ltr)
+ scale.horizontal:dir(ltr)
+ marks.top:dir(ltr)
+ mark:dir(ltr)
+ indicator
+ label
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.top:dir(ltr)
+ marks.bottom:dir(ltr)
+ mark:dir(ltr)
+ label
+ indicator
+ scale.horizontal:dir(ltr)
+ contents
+ trough:dir(ltr)
+ slider:dir(ltr)
+ highlight.top:dir(ltr)
+ marks.bottom:dir(ltr)
+ mark:dir(ltr)
+ label
+ indicator
+ mark:dir(ltr)
+ label
+ indicator
diff --git a/testsuite/css/nodes/scale.ui b/testsuite/css/nodes/scale.ui
new file mode 100644
index 0000000..ae13199
--- /dev/null
+++ b/testsuite/css/nodes/scale.ui
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<interface>
+ <!-- interface-requires gtk+ 3.0 -->
+ <object class="GtkAdjustment" id="adjustment1">
+ <property name="lower">0</property>
+ <property name="upper">100</property>
+ <property name="page-size">0</property>
+ <property name="value">5</property>
+ <property name="step-increment">1</property>
+ <property name="page-increment">10</property>
+ </object>
+ <object class="GtkWindow" id="window1">
+ <property name="can_focus">False</property>
+ <property name="type">popup</property>
+ <property name="default-width">100</property>
+ <child>
+ <object class="GtkBox">
+ <property name="visible">True</property>
+ <property name="name">scales</property>
+ <property name="orientation">vertical</property>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ </object>
+ </child>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ <property name="value-pos">bottom</property>
+ </object>
+ </child>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ <property name="draw-value">0</property>
+ <property name="show-fill-level">1</property>
+ <property name="fill-level">50</property>
+ </object>
+ </child>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ <property name="draw-value">0</property>
+ <property name="inverted">1</property>
+ </object>
+ </child>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ <property name="draw-value">0</property>
+ <marks>
+ <mark value="10" position="top">ten</mark>
+ <mark value="20" position="top">twenty</mark>
+ </marks>
+ </object>
+ </child>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ <property name="draw-value">0</property>
+ <marks>
+ <mark value="10" position="top">ten</mark>
+ <mark value="20" position="bottom">twenty</mark>
+ </marks>
+ </object>
+ </child>
+ <child>
+ <object class="GtkScale">
+ <property name="visible">True</property>
+ <property name="orientation">horizontal</property>
+ <property name="adjustment">adjustment1</property>
+ <property name="draw-value">0</property>
+ <marks>
+ <mark value="10" position="bottom">ten</mark>
+ <mark value="20" position="bottom">twenty</mark>
+ </marks>
+ </object>
+ </child>
+ </object>
+ </child>
+ </object>
+</interface>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]