diff options
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"/> |
