diff options
author | trondeau | 2009-04-18 03:14:34 +0000 |
---|---|---|
committer | trondeau | 2009-04-18 03:14:34 +0000 |
commit | d7f15ef8f1411db89585f9541198896de5924fc8 (patch) | |
tree | ad5d211a516730ea05113c614cb5aa04d824f079 /gr-qtgui/src/python/qt_digital_window.ui | |
parent | e41989bb374e67223bad12637ec5105acdd101b0 (diff) | |
download | gnuradio-d7f15ef8f1411db89585f9541198896de5924fc8.tar.gz gnuradio-d7f15ef8f1411db89585f9541198896de5924fc8.tar.bz2 gnuradio-d7f15ef8f1411db89585f9541198896de5924fc8.zip |
Using qt's designer program to build an interface from the .ui file. This makes qt_digital.py example look much better.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10878 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-qtgui/src/python/qt_digital_window.ui')
-rw-r--r-- | gr-qtgui/src/python/qt_digital_window.ui | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/gr-qtgui/src/python/qt_digital_window.ui b/gr-qtgui/src/python/qt_digital_window.ui new file mode 100644 index 000000000..67b7bbe92 --- /dev/null +++ b/gr-qtgui/src/python/qt_digital_window.ui @@ -0,0 +1,191 @@ +<ui version="4.0" > + <class>DigitalWindow</class> + <widget class="QMainWindow" name="DigitalWindow" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>1236</width> + <height>655</height> + </rect> + </property> + <property name="windowTitle" > + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralwidget" > + <widget class="QLineEdit" name="noiseEdit" > + <property name="geometry" > + <rect> + <x>120</x> + <y>520</y> + <width>113</width> + <height>23</height> + </rect> + </property> + </widget> + <widget class="QLabel" name="noiseLabel" > + <property name="geometry" > + <rect> + <x>10</x> + <y>520</y> + <width>111</width> + <height>20</height> + </rect> + </property> + <property name="text" > + <string>Noise Amplitude</string> + </property> + </widget> + <widget class="QPushButton" name="closeButton" > + <property name="geometry" > + <rect> + <x>260</x> + <y>580</y> + <width>80</width> + <height>27</height> + </rect> + </property> + <property name="text" > + <string>Close</string> + </property> + </widget> + <widget class="QLineEdit" name="freqEdit" > + <property name="geometry" > + <rect> + <x>120</x> + <y>550</y> + <width>113</width> + <height>23</height> + </rect> + </property> + </widget> + <widget class="QLineEdit" name="timeEdit" > + <property name="geometry" > + <rect> + <x>120</x> + <y>580</y> + <width>113</width> + <height>23</height> + </rect> + </property> + </widget> + <widget class="QLabel" name="freqLabel" > + <property name="geometry" > + <rect> + <x>10</x> + <y>550</y> + <width>101</width> + <height>17</height> + </rect> + </property> + <property name="text" > + <string>Frequency Offset</string> + </property> + </widget> + <widget class="QLabel" name="timeLabel" > + <property name="geometry" > + <rect> + <x>10</x> + <y>580</y> + <width>101</width> + <height>17</height> + </rect> + </property> + <property name="text" > + <string>Timing Offset</string> + </property> + </widget> + <widget class="QFrame" name="sinkFrame" > + <property name="geometry" > + <rect> + <x>10</x> + <y>10</y> + <width>1221</width> + <height>501</height> + </rect> + </property> + <property name="frameShape" > + <enum>QFrame::StyledPanel</enum> + </property> + <property name="frameShadow" > + <enum>QFrame::Raised</enum> + </property> + <widget class="QWidget" name="horizontalLayoutWidget" > + <property name="geometry" > + <rect> + <x>10</x> + <y>10</y> + <width>1201</width> + <height>481</height> + </rect> + </property> + <layout class="QHBoxLayout" name="sinkLayout" /> + </widget> + </widget> + </widget> + <widget class="QMenuBar" name="menubar" > + <property name="geometry" > + <rect> + <x>0</x> + <y>0</y> + <width>1236</width> + <height>22</height> + </rect> + </property> + <widget class="QMenu" name="menuFile" > + <property name="title" > + <string>&File</string> + </property> + <addaction name="actionExit" /> + </widget> + <addaction name="menuFile" /> + </widget> + <widget class="QStatusBar" name="statusbar" /> + <action name="actionExit" > + <property name="text" > + <string>E&xit</string> + </property> + </action> + </widget> + <tabstops> + <tabstop>closeButton</tabstop> + <tabstop>noiseEdit</tabstop> + <tabstop>freqEdit</tabstop> + <tabstop>timeEdit</tabstop> + </tabstops> + <resources/> + <connections> + <connection> + <sender>closeButton</sender> + <signal>clicked()</signal> + <receiver>DigitalWindow</receiver> + <slot>close()</slot> + <hints> + <hint type="sourcelabel" > + <x>322</x> + <y>623</y> + </hint> + <hint type="destinationlabel" > + <x>66</x> + <y>561</y> + </hint> + </hints> + </connection> + <connection> + <sender>actionExit</sender> + <signal>triggered()</signal> + <receiver>DigitalWindow</receiver> + <slot>close()</slot> + <hints> + <hint type="sourcelabel" > + <x>-1</x> + <y>-1</y> + </hint> + <hint type="destinationlabel" > + <x>617</x> + <y>327</y> + </hint> + </hints> + </connection> + </connections> +</ui> |