-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.ui
127 lines (127 loc) · 2.88 KB
/
mainwindow.ui
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
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>349</width>
<height>309</height>
</rect>
</property>
<property name="windowTitle">
<string>WahViewer</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QLabel" name="DisplayLB">
<property name="geometry">
<rect>
<x>0</x>
<y>10</y>
<width>341</width>
<height>251</height>
</rect>
</property>
<property name="text">
<string>Imagen not loaded</string>
</property>
<property name="scaledContents">
<bool>true</bool>
</property>
</widget>
<widget class="QPushButton" name="OpenBTN">
<property name="geometry">
<rect>
<x>0</x>
<y>260</y>
<width>80</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Open</string>
</property>
<property name="flat">
<bool>false</bool>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>349</width>
<height>20</height>
</rect>
</property>
<widget class="QMenu" name="menuFIle">
<property name="title">
<string>FIle</string>
</property>
<addaction name="actionOpen"/>
<addaction name="separator"/>
<addaction name="actionExitApp"/>
</widget>
<widget class="QMenu" name="menuImage">
<property name="title">
<string>Image</string>
</property>
<addaction name="actionCloseIMG"/>
</widget>
<addaction name="menuFIle"/>
<addaction name="menuImage"/>
</widget>
<action name="actionOpen_image">
<property name="text">
<string>Open image</string>
</property>
</action>
<action name="actionZoom_in">
<property name="text">
<string>Zoom in</string>
</property>
</action>
<action name="actionZoom_out">
<property name="text">
<string>Zoom out</string>
</property>
</action>
<action name="actionReset_zoom">
<property name="text">
<string>Reset zoom</string>
</property>
</action>
<action name="actionExit">
<property name="text">
<string>Exit</string>
</property>
</action>
<action name="actionClose_image">
<property name="text">
<string>Close image</string>
</property>
</action>
<action name="actionOpen">
<property name="text">
<string>Open</string>
</property>
</action>
<action name="actionExitApp">
<property name="text">
<string>Exit</string>
</property>
</action>
<action name="actionCloseIMG">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>Close image</string>
</property>
</action>
</widget>
<resources/>
<connections/>
</ui>