diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-05-16 20:51:20 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-05-16 20:51:20 +0000 |
commit | 02c60c6720f41bcfc367d02ae4c655b651642991 (patch) | |
tree | bbda9db56f71c846e5712bcbf44a52f475795f0a /src/gatscon/connectdlg.ui | |
parent | 09e3102ffba4b9ee11d988f95c04d344790127db (diff) | |
download | libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.gz libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.bz2 libgats-02c60c6720f41bcfc367d02ae4c655b651642991.tar.xz libgats-02c60c6720f41bcfc367d02ae4c655b651642991.zip |
Almost there! I'm adding a qtbenc-like program for gats, only cooler. It'll
really help us debug gats based protocols and look at gats files, and the like.
Diffstat (limited to 'src/gatscon/connectdlg.ui')
-rw-r--r-- | src/gatscon/connectdlg.ui | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/src/gatscon/connectdlg.ui b/src/gatscon/connectdlg.ui new file mode 100644 index 0000000..fd2d909 --- /dev/null +++ b/src/gatscon/connectdlg.ui | |||
@@ -0,0 +1,99 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <ui version="4.0"> | ||
3 | <class>ConnectDlg</class> | ||
4 | <widget class="QDialog" name="ConnectDlg"> | ||
5 | <property name="geometry"> | ||
6 | <rect> | ||
7 | <x>0</x> | ||
8 | <y>0</y> | ||
9 | <width>300</width> | ||
10 | <height>93</height> | ||
11 | </rect> | ||
12 | </property> | ||
13 | <property name="windowTitle"> | ||
14 | <string>GatsCon - Connect</string> | ||
15 | </property> | ||
16 | <layout class="QVBoxLayout" name="verticalLayout"> | ||
17 | <item> | ||
18 | <layout class="QFormLayout" name="formLayout"> | ||
19 | <item row="0" column="0"> | ||
20 | <widget class="QLabel" name="label"> | ||
21 | <property name="text"> | ||
22 | <string>Hostname:</string> | ||
23 | </property> | ||
24 | </widget> | ||
25 | </item> | ||
26 | <item row="1" column="0"> | ||
27 | <widget class="QLabel" name="label_2"> | ||
28 | <property name="text"> | ||
29 | <string>Port:</string> | ||
30 | </property> | ||
31 | </widget> | ||
32 | </item> | ||
33 | <item row="0" column="1"> | ||
34 | <widget class="QLineEdit" name="leHost"> | ||
35 | <property name="text"> | ||
36 | <string>localhost</string> | ||
37 | </property> | ||
38 | </widget> | ||
39 | </item> | ||
40 | <item row="1" column="1"> | ||
41 | <widget class="QSpinBox" name="sbPort"> | ||
42 | <property name="minimum"> | ||
43 | <number>1</number> | ||
44 | </property> | ||
45 | <property name="maximum"> | ||
46 | <number>32767</number> | ||
47 | </property> | ||
48 | </widget> | ||
49 | </item> | ||
50 | </layout> | ||
51 | </item> | ||
52 | <item> | ||
53 | <widget class="QDialogButtonBox" name="buttonBox"> | ||
54 | <property name="orientation"> | ||
55 | <enum>Qt::Horizontal</enum> | ||
56 | </property> | ||
57 | <property name="standardButtons"> | ||
58 | <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> | ||
59 | </property> | ||
60 | </widget> | ||
61 | </item> | ||
62 | </layout> | ||
63 | </widget> | ||
64 | <resources/> | ||
65 | <connections> | ||
66 | <connection> | ||
67 | <sender>buttonBox</sender> | ||
68 | <signal>accepted()</signal> | ||
69 | <receiver>ConnectDlg</receiver> | ||
70 | <slot>accept()</slot> | ||
71 | <hints> | ||
72 | <hint type="sourcelabel"> | ||
73 | <x>248</x> | ||
74 | <y>254</y> | ||
75 | </hint> | ||
76 | <hint type="destinationlabel"> | ||
77 | <x>157</x> | ||
78 | <y>274</y> | ||
79 | </hint> | ||
80 | </hints> | ||
81 | </connection> | ||
82 | <connection> | ||
83 | <sender>buttonBox</sender> | ||
84 | <signal>rejected()</signal> | ||
85 | <receiver>ConnectDlg</receiver> | ||
86 | <slot>reject()</slot> | ||
87 | <hints> | ||
88 | <hint type="sourcelabel"> | ||
89 | <x>316</x> | ||
90 | <y>260</y> | ||
91 | </hint> | ||
92 | <hint type="destinationlabel"> | ||
93 | <x>286</x> | ||
94 | <y>274</y> | ||
95 | </hint> | ||
96 | </hints> | ||
97 | </connection> | ||
98 | </connections> | ||
99 | </ui> | ||