diff options
author | Karel Kočí <cynerd@email.cz> | 2017-11-19 21:16:46 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-11-19 21:16:46 +0100 |
commit | 2c6562fa78e884d66b8c2a306f020101e8803f2e (patch) | |
tree | 7e9a940cb73fcdf3424ff5443163ba51da0ef82c /qtmips_gui/MainWindow.ui | |
parent | 04ea2670be26291a17808bd704ce3549795953a0 (diff) | |
download | qtmips-2c6562fa78e884d66b8c2a306f020101e8803f2e.tar.gz qtmips-2c6562fa78e884d66b8c2a306f020101e8803f2e.tar.bz2 qtmips-2c6562fa78e884d66b8c2a306f020101e8803f2e.zip |
Just something I had stagged
Diffstat (limited to 'qtmips_gui/MainWindow.ui')
-rw-r--r-- | qtmips_gui/MainWindow.ui | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/qtmips_gui/MainWindow.ui b/qtmips_gui/MainWindow.ui new file mode 100644 index 0000000..0f69613 --- /dev/null +++ b/qtmips_gui/MainWindow.ui @@ -0,0 +1,191 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>MainWindow</class> + <widget class="QMainWindow" name="MainWindow"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>300</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>400</width> + <height>20</height> + </rect> + </property> + <widget class="QMenu" name="menuFile"> + <property name="title"> + <string>File</string> + </property> + <addaction name="actionLoad_binary"/> + <addaction name="separator"/> + <addaction name="actionExit"/> + </widget> + <widget class="QMenu" name="menuWindows"> + <property name="title"> + <string>Windows</string> + </property> + <addaction name="actionMemory"/> + <addaction name="actionProgram_memory"/> + <addaction name="actionCache"/> + <addaction name="actionCache_statistics"/> + <addaction name="actionRegisters"/> + </widget> + <widget class="QMenu" name="menuMachine"> + <property name="title"> + <string>Machine</string> + </property> + <widget class="QMenu" name="menuSimulation_speed"> + <property name="title"> + <string>Simulation speed</string> + </property> + <addaction name="action1_ips"/> + <addaction name="action2_ips"/> + <addaction name="action5_ips"/> + <addaction name="action10_ips"/> + <addaction name="actionOther_ips"/> + <addaction name="separator"/> + <addaction name="actionUnlimited"/> + </widget> + <addaction name="actionRun"/> + <addaction name="actionPause"/> + <addaction name="actionStep"/> + <addaction name="menuSimulation_speed"/> + <addaction name="separator"/> + <addaction name="actionRestart"/> + </widget> + <addaction name="menuFile"/> + <addaction name="menuMachine"/> + <addaction name="menuWindows"/> + </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="allowedAreas"> + <set>Qt::TopToolBarArea</set> + </property> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + </widget> + <action name="actionLoad_binary"> + <property name="text"> + <string>Load binary...</string> + </property> + </action> + <action name="actionExit"> + <property name="text"> + <string>Exit</string> + </property> + </action> + <action name="actionRestart"> + <property name="text"> + <string>Restart</string> + </property> + </action> + <action name="actionRun"> + <property name="text"> + <string>Run</string> + </property> + </action> + <action name="actionStep"> + <property name="text"> + <string>Step</string> + </property> + </action> + <action name="actionPause"> + <property name="text"> + <string>Pause</string> + </property> + </action> + <action name="action1_ips"> + <property name="text"> + <string>1 instruction per second</string> + </property> + </action> + <action name="action2_ips"> + <property name="text"> + <string>2 instructions per second</string> + </property> + </action> + <action name="action5_ips"> + <property name="text"> + <string>5 instructions per second</string> + </property> + </action> + <action name="action10_ips"> + <property name="text"> + <string>10 instructions per second</string> + </property> + </action> + <action name="actionUnlimited"> + <property name="text"> + <string>Unlimited</string> + </property> + </action> + <action name="actionOther_ips"> + <property name="checkable"> + <bool>false</bool> + </property> + <property name="text"> + <string>Custom...</string> + </property> + </action> + <action name="actionMachine_control"> + <property name="text"> + <string>Machine control</string> + </property> + </action> + <action name="actionMemory"> + <property name="text"> + <string>Data Memory</string> + </property> + </action> + <action name="actionProgram_memory"> + <property name="text"> + <string>Program memory</string> + </property> + </action> + <action name="actionCache"> + <property name="text"> + <string>Cache content</string> + </property> + </action> + <action name="actionCache_statistics"> + <property name="text"> + <string>Cache statistics</string> + </property> + </action> + <action name="actionRegisters"> + <property name="text"> + <string>Registers</string> + </property> + </action> + <action name="actionAssembler"> + <property name="text"> + <string>Assembler</string> + </property> + </action> + </widget> + <layoutdefault spacing="6" margin="11"/> + <resources/> + <connections/> +</ui> |