]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/uis/RequestsDialog.ui
Partial filter list implementation.
[PrivacyBrowserPC.git] / src / uis / RequestsDialog.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>RequestsDialog</class>
23
24     <widget class="QWidget">
25         <property name="geometry">
26             <rect>
27                 <x>0</x>
28                 <y>0</y>
29                 <height>1500</height>
30                 <width>2500</width>
31             </rect>
32         </property>
33
34         <!-- Main layout. -->
35         <layout class="QVBoxLayout">
36             <!-- Requests table. -->
37             <item>
38                 <widget class="QTableWidget" name="tableWidget">
39                     <property name="editTriggers">
40                         <set>QAbstractItemView::NoEditTriggers</set>
41                     </property>
42
43                     <property name="horizontalScrollMode">
44                         <enum>QAbstractItemView::ScrollPerPixel</enum>
45                     </property>
46
47                     <attribute name="horizontalHeaderShowSortIndicator" stdset="0">
48                         <bool>true</bool>
49                     </attribute>
50
51                     <attribute name="horizontalHeaderStretchLastSection">
52                         <bool>true</bool>
53                     </attribute>
54                 </widget>
55             </item>
56
57             <!-- Buttons. -->
58             <item>
59                 <widget class="QDialogButtonBox" name="dialogButtonBox">
60                     <property name="standardButtons">
61                         <set>QDialogButtonBox::Close</set>
62                     </property>
63                 </widget>
64             </item>
65         </layout>
66     </widget>
67 </ui>