-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.ui
168 lines (168 loc) · 4.01 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?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>781</width>
<height>469</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralWidget">
<widget class="QTableWidget" name="tw_tab">
<property name="geometry">
<rect>
<x>60</x>
<y>30</y>
<width>601</width>
<height>351</height>
</rect>
</property>
<column>
<property name="text">
<string>Title</string>
</property>
</column>
<column>
<property name="text">
<string>Autor</string>
</property>
</column>
<column>
<property name="text">
<string>Type</string>
</property>
</column>
</widget>
<widget class="QPushButton" name="btn_addDoc">
<property name="geometry">
<rect>
<x>280</x>
<y>390</y>
<width>121</width>
<height>21</height>
</rect>
</property>
<property name="text">
<string>Add a document</string>
</property>
</widget>
<widget class="QPushButton" name="btn_dellDoc">
<property name="enabled">
<bool>false</bool>
</property>
<property name="geometry">
<rect>
<x>410</x>
<y>390</y>
<width>121</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Delete a document</string>
</property>
</widget>
<widget class="QPushButton" name="btn_modify">
<property name="geometry">
<rect>
<x>550</x>
<y>390</y>
<width>111</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Modify a document</string>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menuBar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>781</width>
<height>21</height>
</rect>
</property>
<widget class="QMenu" name="menuFichier">
<property name="title">
<string>File</string>
</property>
<addaction name="actionQuitter"/>
</widget>
<widget class="QMenu" name="menuEdition">
<property name="title">
<string>Edition</string>
</property>
<addaction name="separator"/>
<addaction name="actionAjouter"/>
<addaction name="actionSupprimer"/>
<addaction name="actionExporter_en_HTML"/>
</widget>
<widget class="QMenu" name="menuOutils">
<property name="title">
<string>Tools</string>
</property>
<addaction name="actionTrie_alphabetique"/>
<addaction name="actionTrie_par_auteur"/>
<addaction name="actionTrie_par_type"/>
</widget>
<addaction name="menuFichier"/>
<addaction name="menuEdition"/>
<addaction name="menuOutils"/>
</widget>
<widget class="QToolBar" name="mainToolBar">
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<action name="actionAjouter">
<property name="text">
<string>Ajouter document</string>
</property>
</action>
<action name="actionSupprimer">
<property name="text">
<string>Supprimer</string>
</property>
</action>
<action name="actionQuitter">
<property name="text">
<string>Quit</string>
</property>
</action>
<action name="actionExporter_en_HTML">
<property name="text">
<string>Exporter en HTML</string>
</property>
</action>
<action name="actionTrie_alphabetique">
<property name="text">
<string>Short by name</string>
</property>
</action>
<action name="actionTrie_par_type">
<property name="text">
<string>Short by type</string>
</property>
</action>
<action name="actionTrie_par_auteur">
<property name="text">
<string>Short by autor</string>
</property>
</action>
</widget>
<layoutdefault spacing="6" margin="11"/>
<resources/>
<connections/>
</ui>