diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-02 16:28:09 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-02 16:28:09 -0400 |
| commit | e6706c7a5b82e68443de6ca262c77e1543986b1e (patch) | |
| tree | 794183a2da8be6ff758a2f1d380ca17c84da77a1 /src/mainwindow.ui | |
| parent | fab357ef4d1b65e2737fa2db93a42ede38653a59 (diff) | |
the toolbar menu is now in the ui file instead of being created by hand
it's also shared between the main menu and the context menu
Diffstat (limited to 'src/mainwindow.ui')
| -rw-r--r-- | src/mainwindow.ui | 93 |
1 files changed, 91 insertions, 2 deletions
diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 59d30a09..a4bd2888 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -1358,6 +1358,9 @@ p, li { white-space: pre-wrap; } <height>36</height> </size> </property> + <property name="toolButtonStyle"> + <enum>Qt::ToolButtonTextUnderIcon</enum> + </property> <attribute name="toolBarArea"> <enum>TopToolBarArea</enum> </attribute> @@ -1405,10 +1408,8 @@ p, li { white-space: pre-wrap; } </property> <addaction name="actionNexus"/> <addaction name="separator"/> - <addaction name="actionNotifications"/> <addaction name="actionModify_Executables"/> <addaction name="actionTool"/> - <addaction name="separator"/> <addaction name="actionSettings"/> </widget> <widget class="QMenu" name="menu_Help"> @@ -1425,8 +1426,30 @@ p, li { white-space: pre-wrap; } </property> <addaction name="actionCopy_Log_to_Clipboard"/> </widget> + <widget class="QMenu" name="menuView"> + <property name="title"> + <string>View</string> + </property> + <widget class="QMenu" name="menuToolbars"> + <property name="title"> + <string>Toolbars</string> + </property> + <addaction name="actionToolBarMainToggle"/> + <addaction name="actionToolBarLinksToggle"/> + <addaction name="separator"/> + <addaction name="actionToolBarSmallIcons"/> + <addaction name="actionToolBarLargeIcons"/> + <addaction name="separator"/> + <addaction name="actionToolBarIconsOnly"/> + <addaction name="actionToolBarTextOnly"/> + <addaction name="actionToolBarIconsAndText"/> + </widget> + <addaction name="menuToolbars"/> + <addaction name="actionNotifications"/> + </widget> <addaction name="menu_File"/> <addaction name="menu_Edit"/> + <addaction name="menuView"/> <addaction name="menu_Tools"/> <addaction name="menu_Help"/> </widget> @@ -1697,6 +1720,72 @@ p, li { white-space: pre-wrap; } <string>Exits Mod Organizer</string> </property> </action> + <action name="actionToolbar_Size"> + <property name="text"> + <string>Toolbar Size</string> + </property> + </action> + <action name="actionToolbar_style"> + <property name="text"> + <string>Toolbar Buttons</string> + </property> + </action> + <action name="actionToolBarMainToggle"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>&Main</string> + </property> + </action> + <action name="actionToolBarLinksToggle"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>&Links</string> + </property> + </action> + <action name="actionToolBarSmallIcons"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>&Small Icons</string> + </property> + </action> + <action name="actionToolBarLargeIcons"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>Lar&ge Icons</string> + </property> + </action> + <action name="actionToolBarIconsOnly"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>&Icons Only</string> + </property> + </action> + <action name="actionToolBarTextOnly"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>&Text Only</string> + </property> + </action> + <action name="actionToolBarIconsAndText"> + <property name="checkable"> + <bool>true</bool> + </property> + <property name="text"> + <string>I&cons and Text</string> + </property> + </action> </widget> <layoutdefault spacing="6" margin="11"/> <customwidgets> |
