<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>SaoriWindow</class> <widget class="QMainWindow" name="SaoriWindow"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>1000</width> <height>700</height> </rect> </property> <property name="windowTitle"> <string>Saori</string> </property> <property name="windowIcon"> <iconset resource="saori.qrc"> <normaloff>:/icons/saori.svg</normaloff>:/icons/saori.svg</iconset> </property> <property name="documentMode"> <bool>false</bool> </property> <property name="dockOptions"> <set>QMainWindow::AllowTabbedDocks|QMainWindow::AnimatedDocks</set> </property> <widget class="QWidget" name="centralWidget"> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QMdiArea" name="mdiArea"> <property name="viewMode"> <enum>QMdiArea::SubWindowView</enum> </property> <property name="documentMode"> <bool>false</bool> </property> <property name="tabsClosable"> <bool>true</bool> </property> <property name="tabShape"> <enum>QTabWidget::Rounded</enum> </property> <property name="tabPosition"> <enum>QTabWidget::North</enum> </property> </widget> </item> </layout> </widget> <widget class="QMenuBar" name="menuBar"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>1000</width> <height>22</height> </rect> </property> <property name="nativeMenuBar"> <bool>true</bool> </property> <widget class="QMenu" name="menu_File"> <property name="title"> <string>&File</string> </property> <addaction name="action_Quit"/> </widget> <widget class="QMenu" name="menu_View"> <property name="title"> <string>&View</string> </property> <addaction name="actionShow_Hide_Timeline_List"/> <addaction name="actionTabbedView_mode"/> <addaction name="actionTiled"/> </widget> <widget class="QMenu" name="menu_Edit"> <property name="title"> <string>&Edit</string> </property> <addaction name="actionConfigure"/> </widget> <widget class="QMenu" name="menu_Help"> <property name="title"> <string>&Help</string> </property> </widget> <addaction name="menu_File"/> <addaction name="menu_Edit"/> <addaction name="menu_View"/> <addaction name="menu_Help"/> </widget> <widget class="QToolBar" name="mainToolBar"> <attribute name="toolBarArea"> <enum>TopToolBarArea</enum> </attribute> <attribute name="toolBarBreak"> <bool>false</bool> </attribute> </widget> <widget class="QStatusBar" name="statusBar"/> <widget class="QDockWidget" name="dockWidget"> <property name="enabled"> <bool>true</bool> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="features"> <set>QDockWidget::NoDockWidgetFeatures</set> </property> <property name="allowedAreas"> <set>Qt::LeftDockWidgetArea</set> </property> <property name="windowTitle"> <string>Timeline &list</string> </property> <attribute name="dockWidgetArea"> <number>1</number> </attribute> <widget class="QWidget" name="dockWidgetContents"> <property name="acceptDrops"> <bool>false</bool> </property> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0" colspan="2"> <widget class="QTreeWidget" name="timelineTree"> <property name="contextMenuPolicy"> <enum>Qt::DefaultContextMenu</enum> </property> <column> <property name="text"> <string>List</string> </property> </column> <item> <property name="text"> <string>Account</string> </property> </item> <item> <property name="text"> <string>Instance</string> </property> </item> </widget> </item> </layout> </widget> </widget> <action name="action_Quit"> <property name="text"> <string>&Quit</string> </property> </action> <action name="actionShow_Hide_Timeline_List"> <property name="checkable"> <bool>true</bool> </property> <property name="checked"> <bool>true</bool> </property> <property name="text"> <string>Show/Hide Timeline &List</string> </property> </action> <action name="actionOpen_Timeline"> <property name="text"> <string>&Open Timeline</string> </property> </action> <action name="actionAdd_Account"> <property name="text"> <string>&Add Account</string> </property> </action> <action name="actionRemove_Account"> <property name="text"> <string>&Remove Account</string> </property> </action> <action name="actionTabbedView_mode"> <property name="checkable"> <bool>true</bool> </property> <property name="text"> <string>&TabbedView mode</string> </property> </action> <action name="actionTiled"> <property name="text"> <string>T&iled</string> </property> </action> <action name="actionConfigure"> <property name="text"> <string>&Configure</string> </property> </action> </widget> <layoutdefault spacing="6" margin="11"/> <resources> <include location="saori.qrc"/> </resources> <connections> <connection> <sender>actionShow_Hide_Timeline_List</sender> <signal>triggered(bool)</signal> <receiver>dockWidget</receiver> <slot>setVisible(bool)</slot> <hints> <hint type="sourcelabel"> <x>-1</x> <y>-1</y> </hint> <hint type="destinationlabel"> <x>136</x> <y>338</y> </hint> </hints> </connection> <connection> <sender>actionTiled</sender> <signal>triggered()</signal> <receiver>mdiArea</receiver> <slot>tileSubWindows()</slot> <hints> <hint type="sourcelabel"> <x>-1</x> <y>-1</y> </hint> <hint type="destinationlabel"> <x>521</x> <y>322</y> </hint> </hints> </connection> </connections> </ui>