245 lines
6.8 KiB
XML
245 lines
6.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>SimulationWindow</class>
|
|
<widget class="QMainWindow" name="SimulationWindow">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>900</width>
|
|
<height>650</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Simulation</string>
|
|
</property>
|
|
<property name="windowIcon">
|
|
<iconset resource="../resources/resources.qrc">
|
|
<normaloff>:/icons/icons/office-chart-line.png</normaloff>:/icons/icons/office-chart-line.png</iconset>
|
|
</property>
|
|
<widget class="QWidget" name="centralWidget">
|
|
<layout class="QVBoxLayout" name="resultsLayout">
|
|
<item>
|
|
<widget class="QLabel" name="resultsPlaceholder">
|
|
<property name="text">
|
|
<string>Simulation graphs and result controls can be added here.</string>
|
|
</property>
|
|
<property name="alignment">
|
|
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<widget class="QMenuBar" name="menuBar">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>900</width>
|
|
<height>24</height>
|
|
</rect>
|
|
</property>
|
|
<widget class="QMenu" name="menuFile">
|
|
<property name="title">
|
|
<string>&File</string>
|
|
</property>
|
|
<addaction name="actionOpen"/>
|
|
<addaction name="actionSave"/>
|
|
<addaction name="actionSaveAs"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="actionClear"/>
|
|
<addaction name="separator"/>
|
|
<addaction name="actionExit"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuView">
|
|
<property name="title">
|
|
<string>&View</string>
|
|
</property>
|
|
<widget class="QMenu" name="menuPanels">
|
|
<property name="title">
|
|
<string>&Panels</string>
|
|
</property>
|
|
</widget>
|
|
<widget class="QMenu" name="menuToolbars">
|
|
<property name="title">
|
|
<string>&Toolbars</string>
|
|
</property>
|
|
</widget>
|
|
<addaction name="menuPanels"/>
|
|
<addaction name="menuToolbars"/>
|
|
</widget>
|
|
<widget class="QMenu" name="menuHelp">
|
|
<property name="title">
|
|
<string>&Help</string>
|
|
</property>
|
|
<addaction name="actionAbout"/>
|
|
<addaction name="actionAboutQt"/>
|
|
</widget>
|
|
<addaction name="menuFile"/>
|
|
<addaction name="menuView"/>
|
|
<addaction name="menuHelp"/>
|
|
</widget>
|
|
<widget class="QToolBar" name="fileToolbar">
|
|
<property name="windowTitle">
|
|
<string>File</string>
|
|
</property>
|
|
<property name="toolButtonStyle">
|
|
<enum>Qt::ToolButtonStyle::ToolButtonIconOnly</enum>
|
|
</property>
|
|
<attribute name="toolBarArea">
|
|
<enum>TopToolBarArea</enum>
|
|
</attribute>
|
|
<attribute name="toolBarBreak">
|
|
<bool>false</bool>
|
|
</attribute>
|
|
<addaction name="actionOpen"/>
|
|
<addaction name="actionSave"/>
|
|
<addaction name="actionSaveAs"/>
|
|
<addaction name="actionClear"/>
|
|
</widget>
|
|
<widget class="QDockWidget" name="statusDock">
|
|
<property name="windowTitle">
|
|
<string>Status</string>
|
|
</property>
|
|
<attribute name="dockWidgetArea">
|
|
<number>8</number>
|
|
</attribute>
|
|
<widget class="QWidget" name="statusDockContents">
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
<item>
|
|
<widget class="QLabel" name="timeLabel">
|
|
<property name="text">
|
|
<string>Time: 0 s</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QProgressBar" name="progressBar">
|
|
<property name="maximum">
|
|
<number>10000</number>
|
|
</property>
|
|
<property name="value">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="format">
|
|
<string>%p%</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item>
|
|
<widget class="QLabel" name="statusLabel">
|
|
<property name="text">
|
|
<string>No simulation has been run yet.</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<widget class="QDockWidget" name="logDock">
|
|
<property name="floating">
|
|
<bool>false</bool>
|
|
</property>
|
|
<property name="features">
|
|
<set>QDockWidget::DockWidgetFeature::DockWidgetFloatable|QDockWidget::DockWidgetFeature::DockWidgetMovable</set>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>Log</string>
|
|
</property>
|
|
<attribute name="dockWidgetArea">
|
|
<number>8</number>
|
|
</attribute>
|
|
<widget class="QWidget" name="logDockContents">
|
|
<layout class="QVBoxLayout" name="logLayout">
|
|
<item>
|
|
<widget class="QListWidget" name="messageList">
|
|
<property name="alternatingRowColors">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<action name="actionOpen">
|
|
<property name="icon">
|
|
<iconset resource="../resources/resources.qrc">
|
|
<normaloff>:/icons/icons/document-open.png</normaloff>:/icons/icons/document-open.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Open…</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+O</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSave">
|
|
<property name="icon">
|
|
<iconset resource="../resources/resources.qrc">
|
|
<normaloff>:/icons/icons/document-save.png</normaloff>:/icons/icons/document-save.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Save…</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+S</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionClear">
|
|
<property name="icon">
|
|
<iconset resource="../resources/resources.qrc">
|
|
<normaloff>:/icons/icons/document-new.png</normaloff>:/icons/icons/document-new.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>&Clear</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionSaveAs">
|
|
<property name="icon">
|
|
<iconset resource="../resources/resources.qrc">
|
|
<normaloff>:/icons/icons/document-save-as.png</normaloff>:/icons/icons/document-save-as.png</iconset>
|
|
</property>
|
|
<property name="text">
|
|
<string>Save &As…</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+Shift+S</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionExit">
|
|
<property name="text">
|
|
<string>E&xit</string>
|
|
</property>
|
|
<property name="shortcut">
|
|
<string>Ctrl+W</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionAbout">
|
|
<property name="text">
|
|
<string>&About Simulation Window</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionAboutQt">
|
|
<property name="text">
|
|
<string>About &Qt</string>
|
|
</property>
|
|
</action>
|
|
<action name="actionToggleResults">
|
|
<property name="checkable">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="checked">
|
|
<bool>true</bool>
|
|
</property>
|
|
<property name="text">
|
|
<string>Results</string>
|
|
</property>
|
|
</action>
|
|
</widget>
|
|
<resources>
|
|
<include location="../resources/resources.qrc"/>
|
|
</resources>
|
|
<connections/>
|
|
</ui>
|