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