]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/uis/BookmarksDialog.ui
Partial bookmark implementation. https://redmine.stoutner.com/issues/968
[PrivacyBrowserPC.git] / src / uis / BookmarksDialog.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   Copyright 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>BookmarksDialog</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                     <!-- Close button - dialog button box. -->
44                     <item>
45                         <widget class="QDialogButtonBox" name="dialogButtonBox">
46                             <property name="standardButtons">
47                                 <set>QDialogButtonBox::Close</set>
48                             </property>
49                         </widget>
50                     </item>
51                 </layout>
52             </item>
53         </layout>
54     </widget>
55 </ui>