diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-07 17:28:07 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-07 17:28:07 +0100 |
commit | 923dab046564bdfcd7267281b99462f6d866d311 (patch) | |
tree | 84ae5326b05d0ca069aafc7ebc231e24d9a19a4a /test/control.glade | |
parent | 1b9734e1c19a7d3149013005502349eb2b9cd402 (diff) | |
download | libuca-923dab046564bdfcd7267281b99462f6d866d311.tar.gz libuca-923dab046564bdfcd7267281b99462f6d866d311.tar.bz2 libuca-923dab046564bdfcd7267281b99462f6d866d311.tar.xz libuca-923dab046564bdfcd7267281b99462f6d866d311.zip |
Add property listing
Diffstat (limited to 'test/control.glade')
-rw-r--r-- | test/control.glade | 78 |
1 files changed, 73 insertions, 5 deletions
diff --git a/test/control.glade b/test/control.glade index c56ddfe..dd9b829 100644 --- a/test/control.glade +++ b/test/control.glade @@ -8,10 +8,14 @@ <column type="gchararray"/> <!-- column-name PropertyValue --> <column type="gchararray"/> + <!-- column-name PropertyUnit --> + <column type="gchararray"/> </columns> </object> <object class="GtkWindow" id="window"> <property name="title" translatable="yes">Camera Control</property> + <property name="default_width">800</property> + <property name="default_height">600</property> <child> <object class="GtkVBox" id="vbox1"> <property name="visible">True</property> @@ -171,6 +175,45 @@ <child> <object class="GtkToolbar" id="toolbar"> <property name="visible">True</property> + <child> + <object class="GtkToolButton" id="toolbutton_run"> + <property name="visible">True</property> + <property name="use_action_appearance">False</property> + <property name="label" translatable="yes">Run</property> + <property name="use_underline">True</property> + <property name="stock_id">gtk-media-play</property> + </object> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> + <child> + <object class="GtkToolButton" id="toolbutton_record"> + <property name="visible">True</property> + <property name="use_action_appearance">False</property> + <property name="label" translatable="yes">Record</property> + <property name="use_underline">True</property> + <property name="stock_id">gtk-media-record</property> + </object> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> + <child> + <object class="GtkToolButton" id="toolbutton_stop"> + <property name="visible">True</property> + <property name="use_action_appearance">False</property> + <property name="label" translatable="yes">Stop</property> + <property name="use_underline">True</property> + <property name="stock_id">gtk-media-stop</property> + </object> + <packing> + <property name="expand">False</property> + <property name="homogeneous">True</property> + </packing> + </child> </object> <packing> <property name="expand">False</property> @@ -182,13 +225,27 @@ <property name="visible">True</property> <property name="can_focus">True</property> <child> - <object class="GtkImage" id="image"> + <object class="GtkScrolledWindow" id="scrolledwindow1"> <property name="visible">True</property> - <property name="stock">gtk-missing-image</property> + <property name="can_focus">True</property> + <property name="hscrollbar_policy">automatic</property> + <property name="vscrollbar_policy">automatic</property> + <child> + <object class="GtkViewport" id="viewport1"> + <property name="visible">True</property> + <property name="resize_mode">queue</property> + <child> + <object class="GtkImage" id="image"> + <property name="visible">True</property> + <property name="stock">gtk-missing-image</property> + </object> + </child> + </object> + </child> </object> <packing> - <property name="resize">False</property> - <property name="shrink">True</property> + <property name="resize">True</property> + <property name="shrink">False</property> </packing> </child> <child> @@ -218,9 +275,20 @@ </child> </object> </child> + <child> + <object class="GtkTreeViewColumn" id="unitcolumn"> + <property name="title" translatable="yes">Unit</property> + <child> + <object class="GtkCellRendererText" id="unitcell"/> + <attributes> + <attribute name="text">2</attribute> + </attributes> + </child> + </object> + </child> </object> <packing> - <property name="resize">True</property> + <property name="resize">False</property> <property name="shrink">True</property> </packing> </child> |