diff options
author | José Fonseca <jose.r.fonseca@gmail.com> | 2011-11-25 15:51:09 +0000 |
---|---|---|
committer | José Fonseca <jose.r.fonseca@gmail.com> | 2012-03-18 10:17:54 +0000 |
commit | d562b8ea67082b09802d0b1818a975d4be680073 (patch) | |
tree | 29b2cd09e957eed80afae2c878f3b7396cddfdfa /gui/ui | |
parent | d994cf0c2c7d198ac3daacfe83a1f6b3c3c9e975 (diff) |
Attempt to allow to control image dynamic range.
For better visualization of depth/stencil images (issue#55), and also to
allow view float/integer images in the future.
Diffstat (limited to 'gui/ui')
-rw-r--r-- | gui/ui/imageviewer.ui | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/gui/ui/imageviewer.ui b/gui/ui/imageviewer.ui index 3ae2dadc..7c5964a2 100644 --- a/gui/ui/imageviewer.ui +++ b/gui/ui/imageviewer.ui @@ -43,6 +43,61 @@ </widget> </widget> </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QLabel" name="lowerLabel"> + <property name="text"> + <string>Lower</string> + </property> + </widget> + </item> + <item> + <widget class="QDoubleSpinBox" name="lowerSpinBox"> + <property name="singleStep"> + <double>0.050000000000000</double> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="upperLabel"> + <property name="text"> + <string>Upper</string> + </property> + </widget> + </item> + <item> + <widget class="QDoubleSpinBox" name="upperSpinBox"> + <property name="singleStep"> + <double>0.050000000000000</double> + </property> + <property name="value"> + <double>1.000000000000000</double> + </property> + </widget> + </item> + <item> + <widget class="QCheckBox" name="flipCheckBox"> + <property name="text"> + <string>Flip</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> </layout> </widget> <resources/> |