1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <ui version="4.0"> |
---|
3 | <class>ImageViewerUI</class> |
---|
4 | <widget class="QMainWindow" name="ImageViewerUI"> |
---|
5 | <property name="geometry"> |
---|
6 | <rect> |
---|
7 | <x>0</x> |
---|
8 | <y>0</y> |
---|
9 | <width>492</width> |
---|
10 | <height>418</height> |
---|
11 | </rect> |
---|
12 | </property> |
---|
13 | <property name="windowTitle"> |
---|
14 | <string>Image Viewer</string> |
---|
15 | </property> |
---|
16 | <widget class="QWidget" name="centralwidget"> |
---|
17 | <layout class="QGridLayout" name="gridLayout"> |
---|
18 | <item row="0" column="0"> |
---|
19 | <widget class="QFrame" name="imgFrame"> |
---|
20 | <property name="sizePolicy"> |
---|
21 | <sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding"> |
---|
22 | <horstretch>0</horstretch> |
---|
23 | <verstretch>0</verstretch> |
---|
24 | </sizepolicy> |
---|
25 | </property> |
---|
26 | <property name="frameShape"> |
---|
27 | <enum>QFrame::StyledPanel</enum> |
---|
28 | </property> |
---|
29 | <property name="frameShadow"> |
---|
30 | <enum>QFrame::Raised</enum> |
---|
31 | </property> |
---|
32 | </widget> |
---|
33 | </item> |
---|
34 | </layout> |
---|
35 | </widget> |
---|
36 | <widget class="QMenuBar" name="menubar"> |
---|
37 | <property name="geometry"> |
---|
38 | <rect> |
---|
39 | <x>0</x> |
---|
40 | <y>0</y> |
---|
41 | <width>492</width> |
---|
42 | <height>26</height> |
---|
43 | </rect> |
---|
44 | </property> |
---|
45 | <widget class="QMenu" name="menuFile"> |
---|
46 | <property name="title"> |
---|
47 | <string>File</string> |
---|
48 | </property> |
---|
49 | <addaction name="actionLoad_Image"/> |
---|
50 | <addaction name="actionSave_Image"/> |
---|
51 | <addaction name="actionPrint_Image"/> |
---|
52 | </widget> |
---|
53 | <widget class="QMenu" name="menuEdit"> |
---|
54 | <property name="title"> |
---|
55 | <string>Edit</string> |
---|
56 | </property> |
---|
57 | <addaction name="actionCopy_Image"/> |
---|
58 | </widget> |
---|
59 | <widget class="QMenu" name="menuImage"> |
---|
60 | <property name="title"> |
---|
61 | <string>Image</string> |
---|
62 | </property> |
---|
63 | <addaction name="actionConvert_to_Data"/> |
---|
64 | </widget> |
---|
65 | <widget class="QMenu" name="menuHelp"> |
---|
66 | <property name="layoutDirection"> |
---|
67 | <enum>Qt::RightToLeft</enum> |
---|
68 | </property> |
---|
69 | <property name="title"> |
---|
70 | <string>Help</string> |
---|
71 | </property> |
---|
72 | <addaction name="actionHow_To"/> |
---|
73 | </widget> |
---|
74 | <addaction name="menuFile"/> |
---|
75 | <addaction name="menuEdit"/> |
---|
76 | <addaction name="menuImage"/> |
---|
77 | <addaction name="menuHelp"/> |
---|
78 | </widget> |
---|
79 | <widget class="QStatusBar" name="statusbar"/> |
---|
80 | <action name="actionLoad_Image"> |
---|
81 | <property name="text"> |
---|
82 | <string>Load Image</string> |
---|
83 | </property> |
---|
84 | </action> |
---|
85 | <action name="actionSave_Image"> |
---|
86 | <property name="text"> |
---|
87 | <string>Save Image</string> |
---|
88 | </property> |
---|
89 | </action> |
---|
90 | <action name="actionPrint_Image"> |
---|
91 | <property name="text"> |
---|
92 | <string>Print Image</string> |
---|
93 | </property> |
---|
94 | </action> |
---|
95 | <action name="actionCopy_Image"> |
---|
96 | <property name="text"> |
---|
97 | <string>Copy</string> |
---|
98 | </property> |
---|
99 | </action> |
---|
100 | <action name="actionConvert_to_Data"> |
---|
101 | <property name="text"> |
---|
102 | <string>Convert to Data</string> |
---|
103 | </property> |
---|
104 | </action> |
---|
105 | <action name="actionHow_To"> |
---|
106 | <property name="text"> |
---|
107 | <string>How To</string> |
---|
108 | </property> |
---|
109 | </action> |
---|
110 | </widget> |
---|
111 | <resources/> |
---|
112 | <connections/> |
---|
113 | </ui> |
---|