summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/ui_disassembler.h
diff options
context:
space:
mode:
authorMathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-19 00:30:53 +0200
committerMathieu Vaillancourt <vaillancourtm@gmail.com>2014-04-19 00:34:23 +0200
commite5f09b8be65c06927164428b5d400024e2388dbc (patch)
tree0f0fd4035bcc88c0de5a47a7d3c64b4f67453897 /src/citra_qt/ui_disassembler.h
parentMerge branch 'hle-interface' (diff)
downloadyuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.gz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.bz2
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.lz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.xz
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.tar.zst
yuzu-e5f09b8be65c06927164428b5d400024e2388dbc.zip
Diffstat (limited to 'src/citra_qt/ui_disassembler.h')
-rw-r--r--src/citra_qt/ui_disassembler.h120
1 files changed, 120 insertions, 0 deletions
diff --git a/src/citra_qt/ui_disassembler.h b/src/citra_qt/ui_disassembler.h
new file mode 100644
index 000000000..a0230fe9c
--- /dev/null
+++ b/src/citra_qt/ui_disassembler.h
@@ -0,0 +1,120 @@
+/********************************************************************************
+** Form generated from reading UI file 'disassembler.ui'
+**
+** Created by: Qt User Interface Compiler version 4.8.5
+**
+** WARNING! All changes made in this file will be lost when recompiling UI file!
+********************************************************************************/
+
+#ifndef UI_DISASSEMBLER_H
+#define UI_DISASSEMBLER_H
+
+#include <QtCore/QVariant>
+#include <QtGui/QAction>
+#include <QtGui/QApplication>
+#include <QtGui/QButtonGroup>
+#include <QtGui/QDockWidget>
+#include <QtGui/QHBoxLayout>
+#include <QtGui/QHeaderView>
+#include <QtGui/QPushButton>
+#include <QtGui/QTableView>
+#include <QtGui/QTreeView>
+#include <QtGui/QVBoxLayout>
+#include <QtGui/QWidget>
+
+QT_BEGIN_NAMESPACE
+
+class Ui_DockWidget
+{
+public:
+ QWidget *dockWidgetContents;
+ QVBoxLayout *verticalLayout;
+ QHBoxLayout *horizontalLayout;
+ QPushButton *button_step;
+ QPushButton *button_pause;
+ QPushButton *button_continue;
+ QPushButton *pushButton;
+ QPushButton *button_breakpoint;
+ QTreeView *treeView;
+ QTableView *tableView;
+
+ void setupUi(QDockWidget *DockWidget)
+ {
+ if (DockWidget->objectName().isEmpty())
+ DockWidget->setObjectName(QString::fromUtf8("DockWidget"));
+ DockWidget->resize(430, 401);
+ dockWidgetContents = new QWidget();
+ dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents"));
+ verticalLayout = new QVBoxLayout(dockWidgetContents);
+ verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
+ horizontalLayout = new QHBoxLayout();
+ horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
+ button_step = new QPushButton(dockWidgetContents);
+ button_step->setObjectName(QString::fromUtf8("button_step"));
+
+ horizontalLayout->addWidget(button_step);
+
+ button_pause = new QPushButton(dockWidgetContents);
+ button_pause->setObjectName(QString::fromUtf8("button_pause"));
+
+ horizontalLayout->addWidget(button_pause);
+
+ button_continue = new QPushButton(dockWidgetContents);
+ button_continue->setObjectName(QString::fromUtf8("button_continue"));
+
+ horizontalLayout->addWidget(button_continue);
+
+ pushButton = new QPushButton(dockWidgetContents);
+ pushButton->setObjectName(QString::fromUtf8("pushButton"));
+
+ horizontalLayout->addWidget(pushButton);
+
+ button_breakpoint = new QPushButton(dockWidgetContents);
+ button_breakpoint->setObjectName(QString::fromUtf8("button_breakpoint"));
+
+ horizontalLayout->addWidget(button_breakpoint);
+
+
+ verticalLayout->addLayout(horizontalLayout);
+
+ treeView = new QTreeView(dockWidgetContents);
+ treeView->setObjectName(QString::fromUtf8("treeView"));
+ treeView->setAlternatingRowColors(true);
+ treeView->setIndentation(20);
+ treeView->setRootIsDecorated(false);
+ treeView->header()->setVisible(false);
+
+ verticalLayout->addWidget(treeView);
+
+ tableView = new QTableView(dockWidgetContents);
+ tableView->setObjectName(QString::fromUtf8("tableView"));
+ tableView->setAlternatingRowColors(true);
+
+ verticalLayout->addWidget(tableView);
+
+ DockWidget->setWidget(dockWidgetContents);
+
+ retranslateUi(DockWidget);
+
+ QMetaObject::connectSlotsByName(DockWidget);
+ } // setupUi
+
+ void retranslateUi(QDockWidget *DockWidget)
+ {
+ DockWidget->setWindowTitle(QApplication::translate("DockWidget", "Disassembly", 0, QApplication::UnicodeUTF8));
+ button_step->setText(QApplication::translate("DockWidget", "Step", 0, QApplication::UnicodeUTF8));
+ button_pause->setText(QApplication::translate("DockWidget", "Pause", 0, QApplication::UnicodeUTF8));
+ button_continue->setText(QApplication::translate("DockWidget", "Continue", 0, QApplication::UnicodeUTF8));
+ pushButton->setText(QApplication::translate("DockWidget", "Step Into", 0, QApplication::UnicodeUTF8));
+ button_breakpoint->setText(QApplication::translate("DockWidget", "Set Breakpoint", 0, QApplication::UnicodeUTF8));
+ } // retranslateUi
+
+};
+
+namespace Ui {
+ class DockWidget: public Ui_DockWidget {};
+} // namespace Ui
+
+QT_END_NAMESPACE
+
+#endif // UI_DISASSEMBLER_H