Files
ComSquare/ui/ramView.ui
T
2020-02-25 01:55:53 +01:00

85 lines
2.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>RamView</class>
<widget class="QMainWindow" name="RamView">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>Memory Viewer</string>
</property>
<property name="windowIcon">
<iconset resource="../resources/appResources.qrc">
<normaloff>:/resources/Logo.png</normaloff>:/resources/Logo.png</iconset>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
<widget class="QTableView" name="tableView"/>
</item>
<item row="0" column="0">
<widget class="QTabBar" name="tabs" native="true">
<property name="minimumSize">
<size>
<width>0</width>
<height>35</height>
</size>
</property>
</widget>
</item>
</layout>
</widget>
<widget class="QToolBar" name="toolBar">
<property name="windowTitle">
<string>toolBar</string>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionGoto"/>
<addaction name="actionGoto_Absolute"/>
</widget>
<action name="actionGoto">
<property name="text">
<string>Goto</string>
</property>
<property name="toolTip">
<string>Go to an address</string>
</property>
<property name="shortcut">
<string>Ctrl+G</string>
</property>
</action>
<action name="actionGoto_Absolute">
<property name="text">
<string>Goto Absolute</string>
</property>
<property name="toolTip">
<string>Go to an absolute address</string>
</property>
<property name="shortcut">
<string>Ctrl+Shift+G</string>
</property>
</action>
</widget>
<customwidgets>
<customwidget>
<class>QTabBar</class>
<extends>QWidget</extends>
<header>qtabbar.h</header>
</customwidget>
</customwidgets>
<resources>
<include location="../resources/appResources.qrc"/>
</resources>
<connections/>
</ui>