]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/ui/CookiesDialog.ui
69773c1efc18067e343b42ecbade4dc160950bcc
[PrivacyBrowserPC.git] / src / ui / 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-android>.
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             <item>
37                 <!-- Scroll area. -->
38                 <widget class="QScrollArea" name="scrollArea" />
39             </item>
40
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="editDomainButton">
59                             <property name="text">
60                                 <string>Edit cookie</string>
61                             </property>
62
63                             <property name="icon">
64                                 <iconset theme="edit-entry" />
65                             </property>
66                         </widget>
67                     </item>
68
69                     <!-- Delete domain button. -->
70                     <item>
71                         <widget class="QPushButton" name="deleteDomainButton">
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                     <!-- Close button. -->
83                     <item>
84                         <widget class="QDialogButtonBox" name="dialogButtonBox">
85                             <property name="standardButtons">
86                                 <set>QDialogButtonBox::Close</set>
87                             </property>
88                         </widget>
89                     </item>
90                 </layout>
91             </item>
92         </layout>
93     </widget>
94 </ui>