diff options
author | MaZderMind <git@mazdermind.de> | 2015-08-07 08:38:58 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-08-07 08:38:58 +0200 |
commit | 9eda09a1b66ceb3874c471910fc8c26874d2981e (patch) | |
tree | 45f9cfb1732b3ef0218328b47d2328c27347583f /voctogui/ui | |
parent | a753cd71a02cd64c3dd03bbf4d22b605bae82c7e (diff) |
implement audioselector, videopreviews and composition-toolbar
Diffstat (limited to 'voctogui/ui')
-rw-r--r-- | voctogui/ui/voctogui.ui | 40 |
1 files changed, 14 insertions, 26 deletions
diff --git a/voctogui/ui/voctogui.ui b/voctogui/ui/voctogui.ui index 5e0deb2..eac6794 100644 --- a/voctogui/ui/voctogui.ui +++ b/voctogui/ui/voctogui.ui @@ -32,20 +32,6 @@ <property name="can_focus">False</property> <property name="pixbuf">stream-live.svg</property> </object> - <object class="GtkListStore" id="liststore_audio"> - <columns> - <!-- column-name name --> - <column type="gchararray"/> - </columns> - <data> - <row> - <col id="0" translatable="yes">cam1</col> - </row> - <row> - <col id="0" translatable="yes">cam2</col> - </row> - </data> - </object> <object class="GtkWindow" id="window"> <property name="can_focus">False</property> <property name="default_width">1280</property> @@ -226,21 +212,23 @@ </packing> </child> <child> - <object class="GtkComboBox" id="combo_audio"> + <object class="GtkEventBox" id="combo_audio_events"> <property name="visible">True</property> - <property name="sensitive">False</property> <property name="can_focus">False</property> - <property name="margin_left">5</property> - <property name="margin_right">5</property> - <property name="margin_top">5</property> - <property name="margin_bottom">5</property> - <property name="model">liststore_audio</property> - <property name="id_column">0</property> + <property name="events">GDK_BUTTON_PRESS_MASK | GDK_STRUCTURE_MASK</property> <child> - <object class="GtkCellRendererText" id="cellrenderertext"/> - <attributes> - <attribute name="text">0</attribute> - </attributes> + <object class="GtkComboBoxText" id="combo_audio"> + <property name="visible">True</property> + <property name="sensitive">False</property> + <property name="can_focus">False</property> + <property name="events">GDK_BUTTON_PRESS_MASK | GDK_STRUCTURE_MASK</property> + <property name="margin_top">5</property> + <property name="margin_bottom">5</property> + <items> + <item translatable="yes">Foo</item> + <item translatable="yes">Bar</item> + </items> + </object> </child> </object> <packing> |