]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/uis/RequestDetailDialog.ui
Finish block list implementation.
[PrivacyBrowserPC.git] / src / uis / RequestDetailDialog.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   Copyright 2024 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc/>.
7
8   Privacy Browser PC is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser PC is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <ui version="4.0">
22     <class>RequestDetailDialog</class>
23
24     <widget class="QWidget">
25         <layout class="QVBoxLayout">
26             <!-- Disposition. -->
27             <item>
28                 <layout class="QHBoxLayout">
29                     <item>
30                         <widget class="QLabel">
31                             <property name="text">
32                                 <string>Disposition</string>
33                             </property>
34                         </widget>
35                     </item>
36
37                     <item>
38                         <widget class="QLineEdit" name="dispositionLineEdit">
39                             <property name="readOnly">
40                                 <bool>true</bool>
41                             </property>
42
43                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
44                             <property name="focusPolicy">
45                                 <enum>Qt::NoFocus</enum>
46                             </property>
47                         </widget>
48                     </item>
49                 </layout>
50             </item>
51
52             <!-- URL. -->
53             <item>
54                 <layout class="QHBoxLayout">
55                     <item>
56                         <widget class="QLabel">
57                             <property name="text">
58                                 <string>URL</string>
59                             </property>
60                         </widget>
61                     </item>
62
63                     <item>
64                         <widget class="QLineEdit" name="urlLineEdit">
65                             <property name="readOnly">
66                                 <bool>true</bool>
67                             </property>
68
69                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
70                             <property name="focusPolicy">
71                                 <enum>Qt::NoFocus</enum>
72                             </property>
73                         </widget>
74                     </item>
75                 </layout>
76             </item>
77
78             <item>
79                 <layout class="QHBoxLayout">
80                     <!-- Request Method. -->
81                     <item>
82                         <widget class="QLabel">
83                             <property name="text">
84                                 <string>Request Method</string>
85                             </property>
86                         </widget>
87                     </item>
88
89                     <item>
90                         <widget class="QLineEdit" name="requestMethodLineEdit">
91                             <property name="readOnly">
92                                 <bool>true</bool>
93                             </property>
94
95                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
96                             <property name="focusPolicy">
97                                 <enum>Qt::NoFocus</enum>
98                             </property>
99                         </widget>
100                     </item>
101
102                     <!-- Navigation Type. -->
103                     <item>
104                         <widget class="QLabel">
105                             <property name="text">
106                                 <string>Navigation Type</string>
107                             </property>
108                         </widget>
109                     </item>
110
111                     <item>
112                         <widget class="QLineEdit" name="navigationTypeLineEdit">
113                             <property name="readOnly">
114                                 <bool>true</bool>
115                             </property>
116
117                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
118                             <property name="focusPolicy">
119                                 <enum>Qt::NoFocus</enum>
120                             </property>
121                         </widget>
122                     </item>
123
124                     <!-- Resource Type. -->
125                     <item>
126                         <widget class="QLabel">
127                             <property name="text">
128                                 <string>Resource Type</string>
129                             </property>
130                         </widget>
131                     </item>
132
133                     <item>
134                         <widget class="QLineEdit" name="resourceTypeLineEdit">
135                             <property name="readOnly">
136                                 <bool>true</bool>
137                             </property>
138
139                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
140                             <property name="focusPolicy">
141                                 <enum>Qt::NoFocus</enum>
142                             </property>
143                         </widget>
144                     </item>
145                 </layout>
146             </item>
147
148             <!-- Horizontal line. -->
149             <item>
150                 <widget class="Line" name="horizontalLine">
151                     <property name="orientation">
152                         <enum>Qt::Horizontal</enum>
153                     </property>
154                 </widget>
155             </item>
156
157             <!-- Filter List. -->
158             <item>
159                 <layout class="QHBoxLayout">
160                     <item>
161                         <widget class="QLabel" name="filterListLabel">
162                             <property name="text">
163                                 <string>Filter List</string>
164                             </property>
165                         </widget>
166                     </item>
167
168                     <item>
169                         <widget class="QLineEdit" name="filterListLineEdit">
170                             <property name="readOnly">
171                                 <bool>true</bool>
172                             </property>
173
174                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
175                             <property name="focusPolicy">
176                                 <enum>Qt::NoFocus</enum>
177                             </property>
178                         </widget>
179                     </item>
180                 </layout>
181             </item>
182
183             <!-- Sublist. -->
184             <item>
185                 <layout class="QHBoxLayout">
186                     <item>
187                         <widget class="QLabel" name="sublistLabel">
188                             <property name="text">
189                                 <string>Sublist</string>
190                             </property>
191                         </widget>
192                     </item>
193
194                     <item>
195                         <widget class="QLineEdit" name="sublistListLineEdit">
196                             <property name="readOnly">
197                                 <bool>true</bool>
198                             </property>
199
200                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
201                             <property name="focusPolicy">
202                                 <enum>Qt::NoFocus</enum>
203                             </property>
204                         </widget>
205                     </item>
206                 </layout>
207             </item>
208
209             <!-- Applied Entry. -->
210             <item>
211                 <layout class="QHBoxLayout">
212                     <item>
213                         <widget class="QLabel" name="appliedEntryListLabel">
214                             <property name="text">
215                                 <string>Applied Entry List</string>
216                             </property>
217                         </widget>
218                     </item>
219
220                     <item>
221                         <widget class="QLineEdit" name="appliedEntryListLineEdit">
222                             <property name="readOnly">
223                                 <bool>true</bool>
224                             </property>
225
226                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
227                             <property name="focusPolicy">
228                                 <enum>Qt::NoFocus</enum>
229                             </property>
230                         </widget>
231                     </item>
232                 </layout>
233             </item>
234
235             <!-- Original Entry. -->
236             <item>
237                 <layout class="QHBoxLayout">
238                     <item>
239                         <widget class="QLabel" name="originalEntryLabel">
240                             <property name="text">
241                                 <string>Original Entry</string>
242                             </property>
243                         </widget>
244                     </item>
245
246                     <item>
247                         <widget class="QLineEdit" name="originalEntryLineEdit">
248                             <property name="readOnly">
249                                 <bool>true</bool>
250                             </property>
251
252                             <!-- Disabling focus allows the arrow keys to activate the buttons. -->
253                             <property name="focusPolicy">
254                                 <enum>Qt::NoFocus</enum>
255                             </property>
256                         </widget>
257                     </item>
258                 </layout>
259             </item>
260
261             <!-- Spacer. -->
262             <item>
263                 <spacer>
264                     <property name="orientation">
265                         <enum>Qt::Vertical</enum>
266                     </property>
267                 </spacer>
268             </item>
269
270             <item>
271                 <layout class="QHBoxLayout">
272                     <!-- Previous button.  -->
273                     <item>
274                         <widget class="QPushButton" name="previousButton">
275                             <property name="text">
276                                 <string>Previous</string>
277                             </property>
278
279                             <property name="icon">
280                                 <iconset theme="go-previous" />
281                             </property>
282                         </widget>
283                     </item>
284
285                     <!-- Next button.  -->
286                     <item>
287                         <widget class="QPushButton" name="nextButton">
288                             <property name="text">
289                                 <string>Next</string>
290                             </property>
291
292                             <property name="icon">
293                                 <iconset theme="go-next" />
294                             </property>
295                         </widget>
296                     </item>
297
298                     <!-- Close button - dialog button box. -->
299                     <item>
300                         <widget class="QDialogButtonBox" name="dialogButtonBox">
301                             <property name="standardButtons">
302                                 <set>QDialogButtonBox::Close</set>
303                             </property>
304                         </widget>
305                     </item>
306                 </layout>
307             </item>
308         </layout>
309     </widget>
310 </ui>