]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/uis/CookiesDialog.ui
Add a default folder icon to the edit folder dialog. https://redmine.stoutner.com...
[PrivacyBrowserPC.git] / src / uis / CookiesDialog.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   Copyright 2022-2023 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>CookiesDialog</class>
23
24     <widget class="QWidget">
25         <property name="geometry">
26             <rect>
27                 <x>0</x>
28                 <y>0</y>
29                 <height>1000</height>
30                 <width>1500</width>
31             </rect>
32         </property>
33
34         <layout class="QVBoxLayout">
35             <!-- Tree view. -->
36             <item>
37                 <widget class="QTreeView" name="treeView" />
38             </item>
39
40             <!-- Buttons. -->
41             <item>
42                 <layout class="QHBoxLayout">
43                     <!-- Add cookie button. -->
44                     <item>
45                         <widget class="QPushButton" name="addCookieButton">
46                             <property name="text">
47                                 <string>Add cookie</string>
48                             </property>
49
50                             <property name="icon">
51                                 <iconset theme="list-add" />
52                             </property>
53                         </widget>
54                     </item>
55
56                     <!-- Edit cookie button. -->
57                     <item>
58                         <widget class="QPushButton" name="editCookieButton">
59                             <property name="text">
60                                 <string>Edit cookie</string>
61                             </property>
62
63                             <property name="icon">
64                                 <iconset theme="document-edit" />
65                             </property>
66                         </widget>
67                     </item>
68
69                     <!-- Delete cookie button. -->
70                     <item>
71                         <widget class="QPushButton" name="deleteCookieButton">
72                             <property name="text">
73                                 <string>Delete cookie</string>
74                             </property>
75
76                             <property name="icon">
77                                 <iconset theme="list-remove" />
78                             </property>
79                         </widget>
80                     </item>
81
82                     <!-- Delete all cookies button. -->
83                     <item>
84                         <widget class="QPushButton" name="deleteAllCookiesButton">
85                             <property name="text">
86                                 <string>Delete all</string>
87                             </property>
88
89                             <property name="icon">
90                                 <iconset theme="edit-delete" />
91                             </property>
92                         </widget>
93                     </item>
94
95                     <!-- Close button - dialog button box. -->
96                     <item>
97                         <widget class="QDialogButtonBox" name="dialogButtonBox">
98                             <property name="standardButtons">
99                                 <set>QDialogButtonBox::Close</set>
100                             </property>
101                         </widget>
102                     </item>
103                 </layout>
104             </item>
105         </layout>
106     </widget>
107 </ui>