Newer
Older
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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PlotCanvas</class>
<widget class="QMainWindow" name="PlotCanvas">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QRootCanvas" name="canvas" native="true"/>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionClear"/>
<addaction name="actionScreenShot"/>
<addaction name="actionSave2Txt"/>
</widget>
<action name="actionClear">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icons/icons/reload.svg</normaloff>:/icons/icons/reload.svg</iconset>
</property>
<property name="text">
<string>Clear</string>
</property>
</action>
<action name="actionFreeze">
<property name="text">
<string>Freeze</string>
</property>
</action>
<action name="actionScreenShot">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icons/icons/screenshot.svg</normaloff>:/icons/icons/screenshot.svg</iconset>
</property>
<property name="text">
<string>ScreenShot</string>
</property>
</action>
<action name="actionZoomout">
<property name="text">
<string>Zoomout</string>
</property>
</action>
<action name="actionSave2Txt">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icons/icons/save.svg</normaloff>:/icons/icons/save.svg</iconset>
</property>
<property name="text">
<string>Save2Txt</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>QRootCanvas</class>
<extends>QWidget</extends>
<header location="global">qrootcanvas.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>