diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-09-10 16:47:56 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-09-14 08:51:10 +0300 |
commit | 3d8255c70e71e3d4d23a7c798c94b16ab7e970f6 (patch) | |
tree | f191d578d39640a7c01b8c0df974c453272ede55 /src/rekonqwindow.ui | |
parent | Migrate BookmarkManager (diff) | |
download | rekonq-3d8255c70e71e3d4d23a7c798c94b16ab7e970f6.tar.xz |
Add Bookmarks panel
Diffstat (limited to 'src/rekonqwindow.ui')
-rw-r--r-- | src/rekonqwindow.ui | 53 |
1 files changed, 51 insertions, 2 deletions
diff --git a/src/rekonqwindow.ui b/src/rekonqwindow.ui index b16fe187..64e1a517 100644 --- a/src/rekonqwindow.ui +++ b/src/rekonqwindow.ui @@ -110,7 +110,39 @@ </layout> </item> <item> - <widget class="QStackedWidget" name="views"/> + <widget class="QSplitter" name="splitter"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <widget class="BookmarksPanel" name="bookmarksPanel"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="maximumSize"> + <size> + <width>400</width> + <height>16777215</height> + </size> + </property> + </widget> + <widget class="QStackedWidget" name="views"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + </widget> + </widget> </item> </layout> </widget> @@ -120,7 +152,7 @@ <x>0</x> <y>0</y> <width>800</width> - <height>30</height> + <height>22</height> </rect> </property> <widget class="QMenu" name="menuFile"> @@ -152,6 +184,7 @@ <property name="title"> <string>Bookmarks</string> </property> + <addaction name="actionShowBookmarksPanel"/> </widget> <widget class="QMenu" name="menuSettings"> <property name="title"> @@ -211,6 +244,17 @@ <string>Close Tab</string> </property> </action> + <action name="actionShowBookmarksPanel"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="checked"> + <bool>true</bool> + </property> + <property name="text"> + <string>Show Bookmarks Panel</string> + </property> + </action> </widget> <customwidgets> <customwidget> @@ -224,6 +268,11 @@ <header>tabbar/tabbar.h</header> <container>1</container> </customwidget> + <customwidget> + <class>BookmarksPanel</class> + <extends>QTreeView</extends> + <header>panels/bookmarkspanel.hpp</header> + </customwidget> </customwidgets> <resources/> <connections> |