diff options
Diffstat (limited to 'src-qt5/desktop-utils/lumina-screenshot/MainUI.ui')
-rw-r--r-- | src-qt5/desktop-utils/lumina-screenshot/MainUI.ui | 227 |
1 files changed, 227 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-screenshot/MainUI.ui b/src-qt5/desktop-utils/lumina-screenshot/MainUI.ui new file mode 100644 index 00000000..e8a19727 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-screenshot/MainUI.ui @@ -0,0 +1,227 @@ +<?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>349</width> + <height>283</height> + </rect> + </property> + <property name="windowTitle"> + <string>Take Screenshot</string> + </property> + <widget class="QWidget" name="centralwidget"> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="label_screenshot"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="frameShape"> + <enum>QFrame::StyledPanel</enum> + </property> + <property name="frameShadow"> + <enum>QFrame::Sunken</enum> + </property> + <property name="text"> + <string>No Screenshot Yet</string> + </property> + <property name="alignment"> + <set>Qt::AlignCenter</set> + </property> + </widget> + </item> + <item> + <widget class="QGroupBox" name="group_new"> + <property name="title"> + <string>New Screenshot Settings</string> + </property> + <layout class="QGridLayout" name="gridLayout_2"> + <property name="topMargin"> + <number>2</number> + </property> + <property name="bottomMargin"> + <number>1</number> + </property> + <property name="spacing"> + <number>2</number> + </property> + <item row="3" column="1"> + <widget class="QCheckBox" name="check_frame"> + <property name="text"> + <string>Include Borders</string> + </property> + </widget> + </item> + <item row="0" column="0"> + <widget class="QSpinBox" name="spin_delay"> + <property name="suffix"> + <string> Seconds</string> + </property> + <property name="prefix"> + <string>Delay </string> + </property> + <property name="maximum"> + <number>20</number> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QRadioButton" name="radio_all"> + <property name="text"> + <string>Entire Session</string> + </property> + </widget> + </item> + <item row="3" column="0"> + <widget class="QRadioButton" name="radio_window"> + <property name="text"> + <string>Single Window</string> + </property> + </widget> + </item> + <item row="2" column="0"> + <widget class="QRadioButton" name="radio_monitor"> + <property name="text"> + <string>Single Screen</string> + </property> + </widget> + </item> + <item row="2" column="1"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QSpinBox" name="spin_monitor"> + <property name="prefix"> + <string notr="true"># </string> + </property> + <property name="minimum"> + <number>1</number> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + </layout> + </widget> + </item> + </layout> + </widget> + <widget class="QStatusBar" name="statusbar"/> + <widget class="QToolBar" name="toolBar"> + <property name="contextMenuPolicy"> + <enum>Qt::CustomContextMenu</enum> + </property> + <property name="windowTitle"> + <string>toolBar</string> + </property> + <property name="movable"> + <bool>false</bool> + </property> + <property name="iconSize"> + <size> + <width>24</width> + <height>24</height> + </size> + </property> + <property name="toolButtonStyle"> + <enum>Qt::ToolButtonTextUnderIcon</enum> + </property> + <property name="floatable"> + <bool>false</bool> + </property> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + <addaction name="actionNew"/> + <addaction name="actionSave"/> + <addaction name="actionquicksave"/> + <addaction name="actionEdit"/> + <addaction name="actionQuit"/> + </widget> + <action name="actionSave"> + <property name="text"> + <string>Save</string> + </property> + <property name="toolTip"> + <string>Save Screenshot</string> + </property> + <property name="statusTip"> + <string>Save Screenshot</string> + </property> + <property name="shortcut"> + <string>Ctrl+S</string> + </property> + </action> + <action name="actionquicksave"> + <property name="text"> + <string>Quick Save</string> + </property> + <property name="toolTip"> + <string>Quick Save Screenshot</string> + </property> + <property name="statusTip"> + <string>Quick Save Screenshot</string> + </property> + <property name="shortcut"> + <string>Ctrl+Shift+S</string> + </property> + </action> + <action name="actionEdit"> + <property name="text"> + <string>Edit</string> + </property> + <property name="toolTip"> + <string>Edit Screenshot</string> + </property> + <property name="statusTip"> + <string>Edit Screenshot</string> + </property> + <property name="shortcut"> + <string>Ctrl+E</string> + </property> + </action> + <action name="actionQuit"> + <property name="text"> + <string>Quit</string> + </property> + <property name="statusTip"> + <string>Quit</string> + </property> + <property name="shortcut"> + <string>Ctrl+Q</string> + </property> + </action> + <action name="actionNew"> + <property name="text"> + <string>Snap</string> + </property> + <property name="statusTip"> + <string>Take new Screenshot</string> + </property> +</action> + </widget> + <resources/> + <connections/> +</ui> |