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/mainwnd.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/mainwnd.ui')
-rw-r--r-- | src/gatscon/mainwnd.ui | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/src/gatscon/mainwnd.ui b/src/gatscon/mainwnd.ui new file mode 100644 index 0000000..e080dd3 --- /dev/null +++ b/src/gatscon/mainwnd.ui | |||
@@ -0,0 +1,115 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | ||
2 | <ui version="4.0"> | ||
3 | <class>MainWnd</class> | ||
4 | <widget class="QMainWindow" name="MainWnd"> | ||
5 | <property name="geometry"> | ||
6 | <rect> | ||
7 | <x>0</x> | ||
8 | <y>0</y> | ||
9 | <width>431</width> | ||
10 | <height>319</height> | ||
11 | </rect> | ||
12 | </property> | ||
13 | <property name="windowTitle"> | ||
14 | <string>GatsCon</string> | ||
15 | </property> | ||
16 | <widget class="QWidget" name="centralwidget"/> | ||
17 | <widget class="QMenuBar" name="menubar"> | ||
18 | <property name="geometry"> | ||
19 | <rect> | ||
20 | <x>0</x> | ||
21 | <y>0</y> | ||
22 | <width>431</width> | ||
23 | <height>21</height> | ||
24 | </rect> | ||
25 | </property> | ||
26 | <widget class="QMenu" name="menu_File"> | ||
27 | <property name="title"> | ||
28 | <string>&File</string> | ||
29 | </property> | ||
30 | <addaction name="action_Open_gats_file"/> | ||
31 | </widget> | ||
32 | <widget class="QMenu" name="menu_Network"> | ||
33 | <property name="title"> | ||
34 | <string>&Network</string> | ||
35 | </property> | ||
36 | <addaction name="action_Open_connection"/> | ||
37 | <addaction name="action_Open_proxy_connection"/> | ||
38 | </widget> | ||
39 | <addaction name="menu_File"/> | ||
40 | <addaction name="menu_Network"/> | ||
41 | </widget> | ||
42 | <widget class="QStatusBar" name="statusbar"/> | ||
43 | <action name="action_Open_connection"> | ||
44 | <property name="text"> | ||
45 | <string>&Open connection...</string> | ||
46 | </property> | ||
47 | </action> | ||
48 | <action name="action_Open_proxy_connection"> | ||
49 | <property name="text"> | ||
50 | <string>&Start proxy...</string> | ||
51 | </property> | ||
52 | </action> | ||
53 | <action name="action_Open_gats_file"> | ||
54 | <property name="text"> | ||
55 | <string>&Open gats file...</string> | ||
56 | </property> | ||
57 | </action> | ||
58 | </widget> | ||
59 | <resources/> | ||
60 | <connections> | ||
61 | <connection> | ||
62 | <sender>action_Open_connection</sender> | ||
63 | <signal>triggered()</signal> | ||
64 | <receiver>MainWnd</receiver> | ||
65 | <slot>connect()</slot> | ||
66 | <hints> | ||
67 | <hint type="sourcelabel"> | ||
68 | <x>215</x> | ||
69 | <y>159</y> | ||
70 | </hint> | ||
71 | <hint type="destinationlabel"> | ||
72 | <x>215</x> | ||
73 | <y>159</y> | ||
74 | </hint> | ||
75 | </hints> | ||
76 | </connection> | ||
77 | <connection> | ||
78 | <sender>action_Open_proxy_connection</sender> | ||
79 | <signal>triggered()</signal> | ||
80 | <receiver>MainWnd</receiver> | ||
81 | <slot>proxy()</slot> | ||
82 | <hints> | ||
83 | <hint type="sourcelabel"> | ||
84 | <x>-1</x> | ||
85 | <y>-1</y> | ||
86 | </hint> | ||
87 | <hint type="destinationlabel"> | ||
88 | <x>215</x> | ||
89 | <y>159</y> | ||
90 | </hint> | ||
91 | </hints> | ||
92 | </connection> | ||
93 | <connection> | ||
94 | <sender>action_Open_gats_file</sender> | ||
95 | <signal>triggered()</signal> | ||
96 | <receiver>MainWnd</receiver> | ||
97 | <slot>open()</slot> | ||
98 | <hints> | ||
99 | <hint type="sourcelabel"> | ||
100 | <x>-1</x> | ||
101 | <y>-1</y> | ||
102 | </hint> | ||
103 | <hint type="destinationlabel"> | ||
104 | <x>215</x> | ||
105 | <y>159</y> | ||
106 | </hint> | ||
107 | </hints> | ||
108 | </connection> | ||
109 | </connections> | ||
110 | <slots> | ||
111 | <slot>connect()</slot> | ||
112 | <slot>proxy()</slot> | ||
113 | <slot>open()</slot> | ||
114 | </slots> | ||
115 | </ui> | ||