diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-06 23:07:45 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-06 23:07:45 +0200 |
| commit | 44e85dce678e7e36f436a6d0a25c212c9a2d3657 (patch) | |
| tree | 30dcc4eb5dfca0c50830443a8d68bec83dc06d7c /mainwindow.ui | |
| parent | d9e105e6e0accf5def8681334341069117cab213 (diff) | |
| download | kristall-44e85dce678e7e36f436a6d0a25c212c9a2d3657.tar.gz | |
A bit of redesign of the user interface, more convenience functions.
Diffstat (limited to 'mainwindow.ui')
| -rw-r--r-- | mainwindow.ui | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/mainwindow.ui b/mainwindow.ui index 04e6940..08ba787 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -179,6 +179,128 @@ </layout> </widget> </widget> + <widget class="QMenuBar" name="menuBar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>800</width> + <height>20</height> + </rect> + </property> + <widget class="QMenu" name="menuFile"> + <property name="title"> + <string>File</string> + </property> + <addaction name="actionNew_Tab"/> + <addaction name="actionClose_Tab"/> + <addaction name="separator"/> + <addaction name="actionSettings"/> + <addaction name="separator"/> + <addaction name="actionQuit"/> + </widget> + <widget class="QMenu" name="menuHelp"> + <property name="title"> + <string>Help</string> + </property> + <addaction name="actionAbout"/> + <addaction name="actionAbout_Qt"/> + </widget> + <widget class="QMenu" name="menuView"> + <property name="title"> + <string>View</string> + </property> + </widget> + <widget class="QMenu" name="menuNavigation"> + <property name="title"> + <string>Navigation</string> + </property> + <addaction name="actionBackward"/> + <addaction name="actionForward"/> + <addaction name="separator"/> + <addaction name="actionRefresh"/> + </widget> + <addaction name="menuFile"/> + <addaction name="menuNavigation"/> + <addaction name="menuView"/> + <addaction name="menuHelp"/> + </widget> + <action name="actionAbout"> + <property name="text"> + <string>About...</string> + </property> + </action> + <action name="actionQuit"> + <property name="text"> + <string>Quit</string> + </property> + </action> + <action name="actionNew_Tab"> + <property name="text"> + <string>New Tab</string> + </property> + <property name="shortcut"> + <string>Ctrl+T</string> + </property> + </action> + <action name="actionClose_Tab"> + <property name="text"> + <string>Close Tab</string> + </property> + <property name="shortcut"> + <string>Ctrl+W</string> + </property> + </action> + <action name="actionSettings"> + <property name="icon"> + <iconset resource="icons.qrc"> + <normaloff>:/icons/settings.svg</normaloff>:/icons/settings.svg</iconset> + </property> + <property name="text"> + <string>Settings</string> + </property> + </action> + <action name="actionBackward"> + <property name="icon"> + <iconset resource="icons.qrc"> + <normaloff>:/icons/arrow-left.svg</normaloff>:/icons/arrow-left.svg</iconset> + </property> + <property name="text"> + <string>Backward</string> + </property> + <property name="shortcut"> + <string>Alt+Left</string> + </property> + </action> + <action name="actionForward"> + <property name="icon"> + <iconset resource="icons.qrc"> + <normaloff>:/icons/arrow-right.svg</normaloff>:/icons/arrow-right.svg</iconset> + </property> + <property name="text"> + <string>Forward</string> + </property> + <property name="shortcut"> + <string>Alt+Right</string> + </property> + </action> + <action name="actionRefresh"> + <property name="icon"> + <iconset resource="icons.qrc"> + <normaloff>:/icons/refresh.svg</normaloff>:/icons/refresh.svg</iconset> + </property> + <property name="text"> + <string>Refresh</string> + </property> + <property name="shortcut"> + <string>F5</string> + </property> + </action> + <action name="actionAbout_Qt"> + <property name="text"> + <string>About Qt...</string> + </property> + </action> </widget> <resources> <include location="icons.qrc"/> |
