diff options
Diffstat (limited to 'mainwindow.ui')
-rw-r--r-- | mainwindow.ui | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/mainwindow.ui b/mainwindow.ui index 56ad8ad..11f2aa6 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -13,6 +13,9 @@ <property name="windowTitle"> <string>Scribiu</string> </property> + <property name="windowIcon"> + <iconset theme="scribiu"/> + </property> <widget class="QWidget" name="centralWidget"> <layout class="QVBoxLayout" name="verticalLayout"> <property name="spacing"> @@ -340,6 +343,8 @@ <property name="title"> <string>&File</string> </property> + <addaction name="actionExport"/> + <addaction name="separator"/> <addaction name="actionQuit"/> </widget> <addaction name="menuFile"/> @@ -347,7 +352,7 @@ <widget class="QStatusBar" name="statusBar"/> <action name="actionQuit"> <property name="icon"> - <iconset theme="application-quit"> + <iconset theme="application-exit"> <normaloff/> </iconset> </property> @@ -361,6 +366,14 @@ <enum>QAction::QuitRole</enum> </property> </action> + <action name="actionExport"> + <property name="icon"> + <iconset theme="document-save-as"/> + </property> + <property name="text"> + <string>&Export...</string> + </property> + </action> </widget> <layoutdefault spacing="6" margin="11"/> <customwidgets> @@ -577,6 +590,38 @@ </hint> </hints> </connection> + <connection> + <sender>actionQuit</sender> + <signal>triggered()</signal> + <receiver>MainWindow</receiver> + <slot>deleteLater()</slot> + <hints> + <hint type="sourcelabel"> + <x>-1</x> + <y>-1</y> + </hint> + <hint type="destinationlabel"> + <x>358</x> + <y>192</y> + </hint> + </hints> + </connection> + <connection> + <sender>actionExport</sender> + <signal>triggered()</signal> + <receiver>MainWindow</receiver> + <slot>handleExport()</slot> + <hints> + <hint type="sourcelabel"> + <x>-1</x> + <y>-1</y> + </hint> + <hint type="destinationlabel"> + <x>358</x> + <y>192</y> + </hint> + </hints> + </connection> </connections> <slots> <slot>handleNotebookSelected(QModelIndex)</slot> |