-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chronoracetable.ui
135 lines (135 loc) · 4.02 KB
/
chronoracetable.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
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<author>Lorenzo Buzzi</author>
<class>ChronoRaceTable</class>
<widget class="QDialog" name="ChronoRaceTable">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1024</width>
<height>768</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>1024</width>
<height>600</height>
</size>
</property>
<property name="windowTitle">
<string notr="true">Dialog</string>
</property>
<property name="windowIcon">
<iconset>
<normaloff>:/LBChronoRace.ico</normaloff>:/LBChronoRace.ico</iconset>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTableView" name="tableView">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="rowAdd">
<property name="toolTip">
<string>Add an empty row to the table</string>
</property>
<property name="text">
<string>Add Row</string>
</property>
<property name="icon">
<iconset resource="materialicons.qrc">
<normaloff>:/material/icons/playlist_add.svg</normaloff>:/material/icons/playlist_add.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="rowDel">
<property name="toolTip">
<string>Delete a row from the table</string>
</property>
<property name="text">
<string>Delete Row</string>
</property>
<property name="icon">
<iconset resource="materialicons.qrc">
<normaloff>:/material/icons/playlist_remove.svg</normaloff>:/material/icons/playlist_remove.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="modelImport">
<property name="toolTip">
<string>Import data from a CSV file</string>
</property>
<property name="text">
<string>Import</string>
</property>
<property name="icon">
<iconset resource="materialicons.qrc">
<normaloff>:/material/icons/download.svg</normaloff>:/material/icons/download.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="modelExport">
<property name="toolTip">
<string>Export data to a CSV file</string>
</property>
<property name="text">
<string>Export</string>
</property>
<property name="icon">
<iconset resource="materialicons.qrc">
<normaloff>:/material/icons/upload.svg</normaloff>:/material/icons/upload.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="dialogSave">
<property name="toolTip">
<string>Save the race data</string>
</property>
<property name="text">
<string>Save</string>
</property>
<property name="icon">
<iconset resource="materialicons.qrc">
<normaloff>:/material/icons/save.svg</normaloff>:/material/icons/save.svg</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="dialogQuit">
<property name="toolTip">
<string>Return to the application</string>
</property>
<property name="text">
<string>Quit</string>
</property>
<property name="icon">
<iconset resource="materialicons.qrc">
<normaloff>:/material/icons/exit_to_app.svg</normaloff>:/material/icons/exit_to_app.svg</iconset>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<resources>
<include location="materialicons.qrc"/>
</resources>
<connections/>
</ui>