-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatacanvas.ui
114 lines (114 loc) · 2.99 KB
/
datacanvas.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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>DataCanvas</class>
<widget class="QMainWindow" name="DataCanvas">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>DataCanvas</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<item row="2" column="2">
<widget class="QPushButton" name="mathOpeBtn">
<property name="text">
<string>Math Operation</string>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QPushButton" name="setColorBtn">
<property name="text">
<string>Set Color</string>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QPushButton" name="clearBtn">
<property name="text">
<string>Clear</string>
</property>
</widget>
</item>
<item row="0" column="0" colspan="3">
<widget class="QCustomPlot" name="Canvas" native="true"/>
</item>
<item row="3" column="1">
<widget class="QComboBox" name="nameForm"/>
</item>
<item row="3" column="0">
<widget class="QLabel" name="setVisuality">
<property name="text">
<string><html><head/><body><p align="center">Set Graph Visuality</p></body></html></string>
</property>
</widget>
</item>
<item row="3" column="2">
<widget class="QPushButton" name="setVisualityBtn">
<property name="text">
<string>Conceal</string>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>26</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
<property name="title">
<string>File</string>
</property>
<addaction name="actionOpen"/>
<addaction name="separator"/>
<addaction name="actionSaveImage"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
<string>Edit</string>
</property>
<addaction name="actionOptions"/>
</widget>
<addaction name="menuFile"/>
<addaction name="menuEdit"/>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<action name="actionOpen">
<property name="text">
<string>Open</string>
</property>
</action>
<action name="actionOptions">
<property name="text">
<string>Options</string>
</property>
</action>
<action name="actionSaveImage">
<property name="text">
<string>Save Image to...</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>QCustomPlot</class>
<extends>QWidget</extends>
<header location="global">qcustomplot.h</header>
<container>1</container>
</customwidget>
</customwidgets>
<resources/>
<connections/>
</ui>