diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-04-16 12:25:23 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-04-16 12:25:23 +0200 |
commit | 3ffc19bbe6a399654e642ed7941cb81ed23f6920 (patch) | |
tree | 48648fc76b9c4f847cae5c688c9923153c8a3630 /test/control.glade | |
parent | fd45b7181c42d5edc2d5753c32d5b6f48bd98cac (diff) | |
download | uca-3ffc19bbe6a399654e642ed7941cb81ed23f6920.tar.gz uca-3ffc19bbe6a399654e642ed7941cb81ed23f6920.tar.bz2 uca-3ffc19bbe6a399654e642ed7941cb81ed23f6920.tar.xz uca-3ffc19bbe6a399654e642ed7941cb81ed23f6920.zip |
Port control application to libuca 0.6
Diffstat (limited to 'test/control.glade')
-rw-r--r-- | test/control.glade | 110 |
1 files changed, 106 insertions, 4 deletions
diff --git a/test/control.glade b/test/control.glade index b9fab85..eeeeaaf 100644 --- a/test/control.glade +++ b/test/control.glade @@ -14,11 +14,16 @@ <column type="guint"/> </columns> </object> + <object class="GtkListStore" id="camera-types"> + <columns> + <!-- column-name name --> + <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> - <signal name="destroy" handler="on_destroy"/> <signal name="delete_event" handler="on_delete_event"/> <child> <object class="GtkVBox" id="vbox1"> @@ -119,7 +124,6 @@ <property name="label" translatable="yes">Run</property> <property name="use_underline">True</property> <property name="stock_id">gtk-media-play</property> - <signal name="clicked" handler="on_toolbutton_run_clicked"/> </object> <packing> <property name="expand">False</property> @@ -132,7 +136,6 @@ <property name="label" translatable="yes">Record</property> <property name="use_underline">True</property> <property name="stock_id">gtk-media-record</property> - <signal name="clicked" handler="on_toolbutton_record_clicked"/> </object> <packing> <property name="expand">False</property> @@ -145,7 +148,6 @@ <property name="label" translatable="yes">Stop</property> <property name="use_underline">True</property> <property name="stock_id">gtk-media-stop</property> - <signal name="clicked" handler="on_toolbutton_stop_clicked"/> </object> <packing> <property name="expand">False</property> @@ -311,4 +313,104 @@ <property name="step_increment">1</property> <property name="page_increment">10</property> </object> + <object class="GtkWindow" id="choice-window"> + <child> + <object class="GtkVBox" id="vbox3"> + <property name="visible">True</property> + <property name="spacing">2</property> + <child> + <object class="GtkTreeView" id="treeview-cameras"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="model">camera-types</property> + <child> + <object class="GtkTreeViewColumn" id="treeviewcolumn1"> + <property name="title">column</property> + <child> + <object class="GtkCellRendererText" id="cellrenderertext1"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + </child> + </object> + <packing> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHButtonBox" id="hbuttonbox1"> + <property name="visible">True</property> + <property name="spacing">6</property> + <property name="layout_style">end</property> + <child> + <object class="GtkButton" id="button-cancel"> + <property name="label">gtk-quit</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + <signal name="clicked" handler="gtk_main_quit"/> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="button-proceed"> + <property name="label">gtk-ok</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="padding">6</property> + <property name="position">1</property> + </packing> + </child> + </object> + </child> + </object> + <object class="GtkDialog" id="dialog1"> + <property name="border_width">5</property> + <property name="type_hint">normal</property> + <child internal-child="vbox"> + <object class="GtkVBox" id="dialog-vbox2"> + <property name="visible">True</property> + <property name="spacing">2</property> + <child> + <placeholder/> + </child> + <child internal-child="action_area"> + <object class="GtkHButtonBox" id="dialog-action_area2"> + <property name="visible">True</property> + <property name="layout_style">end</property> + <child> + <placeholder/> + </child> + <child> + <placeholder/> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="pack_type">end</property> + <property name="position">0</property> + </packing> + </child> + </object> + </child> + </object> </interface> |