diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 17:44:34 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 17:44:53 +0200 |
commit | 95a22bf2f02ad11c2602df5ac5ffd04fee93588c (patch) | |
tree | 1f26ad046db783bafa4f1e25e04f92d6fc784c9f /tools/gui/control.glade | |
parent | 46a6d028c5591b0775ef5862ff5c9e95fd68e7fd (diff) | |
download | libuca-95a22bf2f02ad11c2602df5ac5ffd04fee93588c.tar.gz libuca-95a22bf2f02ad11c2602df5ac5ffd04fee93588c.tar.bz2 libuca-95a22bf2f02ad11c2602df5ac5ffd04fee93588c.tar.xz libuca-95a22bf2f02ad11c2602df5ac5ffd04fee93588c.zip |
Implement experimental histogram view
Diffstat (limited to 'tools/gui/control.glade')
-rw-r--r-- | tools/gui/control.glade | 75 |
1 files changed, 65 insertions, 10 deletions
diff --git a/tools/gui/control.glade b/tools/gui/control.glade index ee888e8..6d6d791 100644 --- a/tools/gui/control.glade +++ b/tools/gui/control.glade @@ -164,28 +164,83 @@ <property name="can_focus">True</property> <property name="border_width">6</property> <child> - <object class="GtkScrolledWindow" id="scrolledwindow1"> - <property name="width_request">300</property> + <object class="GtkVPaned" id="vpaned1"> <property name="visible">True</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"> + <object class="GtkScrolledWindow" id="scrolledwindow1"> + <property name="width_request">640</property> + <property name="height_request">480</property> <property name="visible">True</property> - <property name="resize_mode">queue</property> + <property name="can_focus">True</property> + <property name="hscrollbar_policy">automatic</property> + <property name="vscrollbar_policy">automatic</property> <child> - <object class="GtkImage" id="image"> + <object class="GtkViewport" id="viewport1"> <property name="visible">True</property> - <property name="stock">gtk-missing-image</property> + <property name="resize_mode">queue</property> + <child> + <object class="GtkImage" id="image"> + <property name="width_request">640</property> + <property name="height_request">480</property> + <property name="visible">True</property> + <property name="stock">gtk-missing-image</property> + </object> + </child> </object> </child> </object> + <packing> + <property name="resize">True</property> + <property name="shrink">True</property> + </packing> + </child> + <child> + <object class="GtkNotebook" id="notebook1"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <child> + <object class="GtkHBox" id="histogram-box"> + <property name="visible">True</property> + <child> + <placeholder/> + </child> + <child> + <object class="GtkCheckButton" id="histogram-checkbutton"> + <property name="label" translatable="yes">Enable Live Update</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">False</property> + <property name="border_width">6</property> + <property name="active">True</property> + <property name="draw_indicator">True</property> + </object> + <packing> + <property name="pack_type">end</property> + <property name="position">1</property> + </packing> + </child> + </object> + </child> + <child type="tab"> + <object class="GtkLabel" id="label1"> + <property name="visible">True</property> + <property name="label" translatable="yes">Histogram</property> + </object> + <packing> + <property name="tab_fill">False</property> + </packing> + </child> + </object> + <packing> + <property name="resize">True</property> + <property name="shrink">True</property> + </packing> </child> </object> <packing> - <property name="resize">True</property> - <property name="shrink">False</property> + <property name="resize">False</property> + <property name="shrink">True</property> </packing> </child> <child> |