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