aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/mainUI.ui
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-03-14 07:05:13 -0400
committerKen Moore <ken@ixsystems.com>2017-03-14 07:05:13 -0400
commit89ba7785e706fb6a43e96d7c2b34203767d27097 (patch)
tree73eb52dc01811adf00edf375283c44e325d6debf /src-qt5/desktop-utils/lumina-pdf/mainUI.ui
parentAdd a new desktop application: lumina-pdf (diff)
downloadlumina-89ba7785e706fb6a43e96d7c2b34203767d27097.tar.gz
lumina-89ba7785e706fb6a43e96d7c2b34203767d27097.tar.bz2
lumina-89ba7785e706fb6a43e96d7c2b34203767d27097.zip
Update the new lumina-pdf to work as a QMainWindow with a QPrintPreviewWidget embedded within it (instead of a QPrintPrevewDialog for everything).
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/mainUI.ui')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/mainUI.ui149
1 files changed, 149 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.ui b/src-qt5/desktop-utils/lumina-pdf/mainUI.ui
new file mode 100644
index 00000000..5547d219
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.ui
@@ -0,0 +1,149 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>MainUI</class>
+ <widget class="QMainWindow" name="MainUI">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>659</width>
+ <height>588</height>
+ </rect>
+ </property>
+ <property name="windowTitle">
+ <string>MainWindow</string>
+ </property>
+ <widget class="QWidget" name="centralwidget"/>
+ <widget class="QMenuBar" name="menubar">
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>659</width>
+ <height>22</height>
+ </rect>
+ </property>
+ <widget class="QMenu" name="menuFile">
+ <property name="title">
+ <string>File</string>
+ </property>
+ <addaction name="actionPrint"/>
+ <addaction name="separator"/>
+ <addaction name="actionOpen_PDF"/>
+ <addaction name="separator"/>
+ <addaction name="actionClose"/>
+ </widget>
+ <addaction name="menuFile"/>
+ </widget>
+ <widget class="QStatusBar" name="statusbar"/>
+ <widget class="QToolBar" name="toolBar">
+ <property name="windowTitle">
+ <string>toolBar</string>
+ </property>
+ <property name="movable">
+ <bool>false</bool>
+ </property>
+ <property name="floatable">
+ <bool>false</bool>
+ </property>
+ <attribute name="toolBarArea">
+ <enum>TopToolBarArea</enum>
+ </attribute>
+ <attribute name="toolBarBreak">
+ <bool>true</bool>
+ </attribute>
+ <addaction name="actionFit_Page"/>
+ <addaction name="actionFit_Width"/>
+ <addaction name="separator"/>
+ <addaction name="actionSingle_Page"/>
+ <addaction name="actionDual_Pages"/>
+ <addaction name="actionAll_Pages"/>
+ </widget>
+ <widget class="QToolBar" name="toolBar2">
+ <property name="windowTitle">
+ <string>toolBar_2</string>
+ </property>
+ <property name="movable">
+ <bool>false</bool>
+ </property>
+ <property name="allowedAreas">
+ <set>Qt::BottomToolBarArea</set>
+ </property>
+ <property name="floatable">
+ <bool>false</bool>
+ </property>
+ <attribute name="toolBarArea">
+ <enum>BottomToolBarArea</enum>
+ </attribute>
+ <attribute name="toolBarBreak">
+ <bool>false</bool>
+ </attribute>
+ </widget>
+ <action name="actionOpen_PDF">
+ <property name="text">
+ <string>Open PDF</string>
+ </property>
+ <property name="shortcut">
+ <string>Ctrl+O</string>
+ </property>
+ </action>
+ <action name="actionClose">
+ <property name="text">
+ <string>Close</string>
+ </property>
+ <property name="shortcut">
+ <string>Ctrl+Q</string>
+ </property>
+ </action>
+ <action name="actionFit_Page">
+ <property name="checkable">
+ <bool>true</bool>
+ </property>
+ <property name="text">
+ <string>Fit Page</string>
+ </property>
+ </action>
+ <action name="actionFit_Width">
+ <property name="checkable">
+ <bool>true</bool>
+ </property>
+ <property name="text">
+ <string>Fit Width</string>
+ </property>
+ </action>
+ <action name="actionPrint">
+ <property name="text">
+ <string>Print</string>
+ </property>
+ <property name="shortcut">
+ <string>Ctrl+P</string>
+ </property>
+ </action>
+ <action name="actionSingle_Page">
+ <property name="checkable">
+ <bool>true</bool>
+ </property>
+ <property name="text">
+ <string>Single Page</string>
+ </property>
+ </action>
+ <action name="actionDual_Pages">
+ <property name="checkable">
+ <bool>true</bool>
+ </property>
+ <property name="text">
+ <string>Dual Pages</string>
+ </property>
+ </action>
+ <action name="actionAll_Pages">
+ <property name="checkable">
+ <bool>true</bool>
+ </property>
+ <property name="text">
+ <string>All Pages</string>
+ </property>
+ </action>
+ </widget>
+ <resources/>
+ <connections/>
+</ui>
bgstack15