diff options
| author | 2014-06-22 16:37:07 -0400 | |
|---|---|---|
| committer | 2014-06-22 16:37:07 -0400 | |
| commit | 4e4a028ecdd465d81344144343ca6574eb8b7dbf (patch) | |
| tree | 8fda03023d158080fe25e348aa87f4d3dedf447c | |
| parent | Merge branch 'threading' of https://github.com/bunnei/citra (diff) | |
| download | yuzu-4e4a028ecdd465d81344144343ca6574eb8b7dbf.tar.gz yuzu-4e4a028ecdd465d81344144343ca6574eb8b7dbf.tar.xz yuzu-4e4a028ecdd465d81344144343ca6574eb8b7dbf.zip | |
citra_qt: Removed autogenerated files from repo and fixed build issues.
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | src/citra_qt/citra_qt.vcxproj | 3 | ||||
| -rw-r--r-- | src/citra_qt/citra_qt.vcxproj.filters | 5 | ||||
| -rw-r--r-- | src/citra_qt/debugger/callstack.hxx | 2 | ||||
| -rw-r--r-- | src/citra_qt/debugger/disassembler.hxx | 2 | ||||
| -rw-r--r-- | src/citra_qt/debugger/registers.hxx | 2 | ||||
| -rw-r--r-- | src/citra_qt/ui_callstack.h | 68 | ||||
| -rw-r--r-- | src/citra_qt/ui_controller_config.h | 222 | ||||
| -rw-r--r-- | src/citra_qt/ui_disassembler.h | 112 | ||||
| -rw-r--r-- | src/citra_qt/ui_hotkeys.h | 77 | ||||
| -rw-r--r-- | src/citra_qt/ui_main.h | 153 | ||||
| -rw-r--r-- | src/citra_qt/ui_registers.h | 69 | ||||
| -rw-r--r-- | vsprops/qt.props | 2 |
13 files changed, 9 insertions, 711 deletions
diff --git a/.gitignore b/.gitignore index 10ad35373..001894c3c 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -25,3 +25,6 @@ bin/ | |||
| 25 | 25 | ||
| 26 | # Generated source files | 26 | # Generated source files |
| 27 | src/common/scm_rev.cpp | 27 | src/common/scm_rev.cpp |
| 28 | |||
| 29 | # Generated header files | ||
| 30 | src/citra_qt/ui_*.h | ||
diff --git a/src/citra_qt/citra_qt.vcxproj b/src/citra_qt/citra_qt.vcxproj index c99c8eeee..746c12a5b 100644 --- a/src/citra_qt/citra_qt.vcxproj +++ b/src/citra_qt/citra_qt.vcxproj | |||
| @@ -168,7 +168,6 @@ | |||
| 168 | <ItemGroup> | 168 | <ItemGroup> |
| 169 | <ClInclude Include="config\controller_config.hxx" /> | 169 | <ClInclude Include="config\controller_config.hxx" /> |
| 170 | <ClInclude Include="config\controller_config_util.hxx" /> | 170 | <ClInclude Include="config\controller_config_util.hxx" /> |
| 171 | <ClInclude Include="ui_controller_config.h" /> | ||
| 172 | <ClInclude Include="version.h" /> | 171 | <ClInclude Include="version.h" /> |
| 173 | </ItemGroup> | 172 | </ItemGroup> |
| 174 | <ItemGroup> | 173 | <ItemGroup> |
| @@ -186,4 +185,4 @@ | |||
| 186 | <ImportGroup Label="ExtensionTargets"> | 185 | <ImportGroup Label="ExtensionTargets"> |
| 187 | <Import Project="qt-build.targets" /> | 186 | <Import Project="qt-build.targets" /> |
| 188 | </ImportGroup> | 187 | </ImportGroup> |
| 189 | </Project> | 188 | </Project> \ No newline at end of file |
diff --git a/src/citra_qt/citra_qt.vcxproj.filters b/src/citra_qt/citra_qt.vcxproj.filters index 903082c3c..8f699e50e 100644 --- a/src/citra_qt/citra_qt.vcxproj.filters +++ b/src/citra_qt/citra_qt.vcxproj.filters | |||
| @@ -95,9 +95,6 @@ | |||
| 95 | <ClInclude Include="config\controller_config_util.hxx"> | 95 | <ClInclude Include="config\controller_config_util.hxx"> |
| 96 | <Filter>config</Filter> | 96 | <Filter>config</Filter> |
| 97 | </ClInclude> | 97 | </ClInclude> |
| 98 | <ClInclude Include="ui_controller_config.h"> | ||
| 99 | <Filter>config</Filter> | ||
| 100 | </ClInclude> | ||
| 101 | </ItemGroup> | 98 | </ItemGroup> |
| 102 | <ItemGroup> | 99 | <ItemGroup> |
| 103 | <UIC Include="hotkeys.ui" /> | 100 | <UIC Include="hotkeys.ui" /> |
| @@ -118,4 +115,4 @@ | |||
| 118 | <ItemGroup> | 115 | <ItemGroup> |
| 119 | <Text Include="CMakeLists.txt" /> | 116 | <Text Include="CMakeLists.txt" /> |
| 120 | </ItemGroup> | 117 | </ItemGroup> |
| 121 | </Project> | 118 | </Project> \ No newline at end of file |
diff --git a/src/citra_qt/debugger/callstack.hxx b/src/citra_qt/debugger/callstack.hxx index 3ad2af28b..680a73b6d 100644 --- a/src/citra_qt/debugger/callstack.hxx +++ b/src/citra_qt/debugger/callstack.hxx | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #include <QDockWidget> | 1 | #include <QDockWidget> |
| 2 | #include "../ui_callstack.h" | 2 | #include "ui_callstack.h" |
| 3 | 3 | ||
| 4 | class QStandardItemModel; | 4 | class QStandardItemModel; |
| 5 | 5 | ||
diff --git a/src/citra_qt/debugger/disassembler.hxx b/src/citra_qt/debugger/disassembler.hxx index e5b152d20..e668bbbeb 100644 --- a/src/citra_qt/debugger/disassembler.hxx +++ b/src/citra_qt/debugger/disassembler.hxx | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #include <QDockWidget> | 1 | #include <QDockWidget> |
| 2 | #include "../ui_disassembler.h" | 2 | #include "ui_disassembler.h" |
| 3 | 3 | ||
| 4 | #include "common/common.h" | 4 | #include "common/common.h" |
| 5 | #include "common/break_points.h" | 5 | #include "common/break_points.h" |
diff --git a/src/citra_qt/debugger/registers.hxx b/src/citra_qt/debugger/registers.hxx index 318d95820..9645feb2a 100644 --- a/src/citra_qt/debugger/registers.hxx +++ b/src/citra_qt/debugger/registers.hxx | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | #include "../ui_registers.h" | 1 | #include "ui_registers.h" |
| 2 | 2 | ||
| 3 | #include <QDockWidget> | 3 | #include <QDockWidget> |
| 4 | #include <QTreeWidgetItem> | 4 | #include <QTreeWidgetItem> |
diff --git a/src/citra_qt/ui_callstack.h b/src/citra_qt/ui_callstack.h deleted file mode 100644 index 75d10253c..000000000 --- a/src/citra_qt/ui_callstack.h +++ /dev/null | |||
| @@ -1,68 +0,0 @@ | |||
| 1 | /******************************************************************************** | ||
| 2 | ** Form generated from reading UI file 'callstack.ui' | ||
| 3 | ** | ||
| 4 | ** Created by: Qt User Interface Compiler version 4.8.5 | ||
| 5 | ** | ||
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | ||
| 7 | ********************************************************************************/ | ||
| 8 | |||
| 9 | #ifndef UI_CALLSTACK_H | ||
| 10 | #define UI_CALLSTACK_H | ||
| 11 | |||
| 12 | #include <QtCore/QVariant> | ||
| 13 | #include <QtGui/QAction> | ||
| 14 | #include <QtGui/QApplication> | ||
| 15 | #include <QtGui/QButtonGroup> | ||
| 16 | #include <QtGui/QDockWidget> | ||
| 17 | #include <QtGui/QHeaderView> | ||
| 18 | #include <QtGui/QTreeView> | ||
| 19 | #include <QtGui/QVBoxLayout> | ||
| 20 | #include <QtGui/QWidget> | ||
| 21 | |||
| 22 | QT_BEGIN_NAMESPACE | ||
| 23 | |||
| 24 | class Ui_CallStack | ||
| 25 | { | ||
| 26 | public: | ||
| 27 | QWidget *dockWidgetContents; | ||
| 28 | QVBoxLayout *verticalLayout; | ||
| 29 | QTreeView *treeView; | ||
| 30 | |||
| 31 | void setupUi(QDockWidget *CallStack) | ||
| 32 | { | ||
| 33 | if (CallStack->objectName().isEmpty()) | ||
| 34 | CallStack->setObjectName(QString::fromUtf8("CallStack")); | ||
| 35 | CallStack->resize(400, 300); | ||
| 36 | dockWidgetContents = new QWidget(); | ||
| 37 | dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents")); | ||
| 38 | verticalLayout = new QVBoxLayout(dockWidgetContents); | ||
| 39 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); | ||
| 40 | treeView = new QTreeView(dockWidgetContents); | ||
| 41 | treeView->setObjectName(QString::fromUtf8("treeView")); | ||
| 42 | treeView->setAlternatingRowColors(true); | ||
| 43 | treeView->setRootIsDecorated(false); | ||
| 44 | treeView->setItemsExpandable(false); | ||
| 45 | |||
| 46 | verticalLayout->addWidget(treeView); | ||
| 47 | |||
| 48 | CallStack->setWidget(dockWidgetContents); | ||
| 49 | |||
| 50 | retranslateUi(CallStack); | ||
| 51 | |||
| 52 | QMetaObject::connectSlotsByName(CallStack); | ||
| 53 | } // setupUi | ||
| 54 | |||
| 55 | void retranslateUi(QDockWidget *CallStack) | ||
| 56 | { | ||
| 57 | CallStack->setWindowTitle(QApplication::translate("CallStack", "Call stack", 0, QApplication::UnicodeUTF8)); | ||
| 58 | } // retranslateUi | ||
| 59 | |||
| 60 | }; | ||
| 61 | |||
| 62 | namespace Ui { | ||
| 63 | class CallStack: public Ui_CallStack {}; | ||
| 64 | } // namespace Ui | ||
| 65 | |||
| 66 | QT_END_NAMESPACE | ||
| 67 | |||
| 68 | #endif // UI_CALLSTACK_H | ||
diff --git a/src/citra_qt/ui_controller_config.h b/src/citra_qt/ui_controller_config.h deleted file mode 100644 index f84364a77..000000000 --- a/src/citra_qt/ui_controller_config.h +++ /dev/null | |||
| @@ -1,222 +0,0 @@ | |||
| 1 | /******************************************************************************** | ||
| 2 | ** Form generated from reading UI file 'controller_config.ui' | ||
| 3 | ** | ||
| 4 | ** Created by: Qt User Interface Compiler version 4.8.5 | ||
| 5 | ** | ||
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | ||
| 7 | ********************************************************************************/ | ||
| 8 | |||
| 9 | #ifndef UI_CONTROLLER_CONFIG_H | ||
| 10 | #define UI_CONTROLLER_CONFIG_H | ||
| 11 | |||
| 12 | #include <QtCore/QVariant> | ||
| 13 | #include <QtGui/QAction> | ||
| 14 | #include <QtGui/QApplication> | ||
| 15 | #include <QtGui/QButtonGroup> | ||
| 16 | #include <QtGui/QCheckBox> | ||
| 17 | #include <QtGui/QComboBox> | ||
| 18 | #include <QtGui/QGridLayout> | ||
| 19 | #include <QtGui/QHeaderView> | ||
| 20 | #include <QtGui/QLabel> | ||
| 21 | #include <QtGui/QSpacerItem> | ||
| 22 | #include <QtGui/QTabWidget> | ||
| 23 | #include <QtGui/QVBoxLayout> | ||
| 24 | #include <QtGui/QWidget> | ||
| 25 | |||
| 26 | QT_BEGIN_NAMESPACE | ||
| 27 | |||
| 28 | class Ui_ControllerConfig | ||
| 29 | { | ||
| 30 | public: | ||
| 31 | QVBoxLayout *verticalLayout; | ||
| 32 | QGridLayout *gridLayout; | ||
| 33 | QComboBox *activeControllerCB; | ||
| 34 | QSpacerItem *horizontalSpacer; | ||
| 35 | QCheckBox *checkBox; | ||
| 36 | QComboBox *inputSourceCB; | ||
| 37 | QLabel *label_2; | ||
| 38 | QLabel *label; | ||
| 39 | QTabWidget *tabWidget; | ||
| 40 | QWidget *mainStickTab; | ||
| 41 | QGridLayout *gridLayout_3; | ||
| 42 | QSpacerItem *verticalSpacer_2; | ||
| 43 | QSpacerItem *verticalSpacer_3; | ||
| 44 | QSpacerItem *horizontalSpacer_4; | ||
| 45 | QSpacerItem *horizontalSpacer_3; | ||
| 46 | QWidget *cStickTab; | ||
| 47 | QGridLayout *gridLayout_4; | ||
| 48 | QSpacerItem *horizontalSpacer_6; | ||
| 49 | QSpacerItem *verticalSpacer_5; | ||
| 50 | QSpacerItem *verticalSpacer_4; | ||
| 51 | QSpacerItem *horizontalSpacer_5; | ||
| 52 | QWidget *dPadTab; | ||
| 53 | QGridLayout *gridLayout_5; | ||
| 54 | QSpacerItem *horizontalSpacer_7; | ||
| 55 | QSpacerItem *verticalSpacer_7; | ||
| 56 | QSpacerItem *verticalSpacer_6; | ||
| 57 | QSpacerItem *horizontalSpacer_8; | ||
| 58 | QWidget *buttonsTab; | ||
| 59 | QVBoxLayout *verticalLayout_2; | ||
| 60 | |||
| 61 | void setupUi(QWidget *ControllerConfig) | ||
| 62 | { | ||
| 63 | if (ControllerConfig->objectName().isEmpty()) | ||
| 64 | ControllerConfig->setObjectName(QString::fromUtf8("ControllerConfig")); | ||
| 65 | ControllerConfig->resize(503, 293); | ||
| 66 | QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); | ||
| 67 | sizePolicy.setHorizontalStretch(0); | ||
| 68 | sizePolicy.setVerticalStretch(0); | ||
| 69 | sizePolicy.setHeightForWidth(ControllerConfig->sizePolicy().hasHeightForWidth()); | ||
| 70 | ControllerConfig->setSizePolicy(sizePolicy); | ||
| 71 | verticalLayout = new QVBoxLayout(ControllerConfig); | ||
| 72 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); | ||
| 73 | verticalLayout->setSizeConstraint(QLayout::SetFixedSize); | ||
| 74 | gridLayout = new QGridLayout(); | ||
| 75 | gridLayout->setObjectName(QString::fromUtf8("gridLayout")); | ||
| 76 | activeControllerCB = new QComboBox(ControllerConfig); | ||
| 77 | activeControllerCB->setObjectName(QString::fromUtf8("activeControllerCB")); | ||
| 78 | |||
| 79 | gridLayout->addWidget(activeControllerCB, 1, 1, 1, 1); | ||
| 80 | |||
| 81 | horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 82 | |||
| 83 | gridLayout->addItem(horizontalSpacer, 0, 2, 1, 1); | ||
| 84 | |||
| 85 | checkBox = new QCheckBox(ControllerConfig); | ||
| 86 | checkBox->setObjectName(QString::fromUtf8("checkBox")); | ||
| 87 | |||
| 88 | gridLayout->addWidget(checkBox, 1, 2, 1, 1); | ||
| 89 | |||
| 90 | inputSourceCB = new QComboBox(ControllerConfig); | ||
| 91 | inputSourceCB->setObjectName(QString::fromUtf8("inputSourceCB")); | ||
| 92 | |||
| 93 | gridLayout->addWidget(inputSourceCB, 0, 1, 1, 1); | ||
| 94 | |||
| 95 | label_2 = new QLabel(ControllerConfig); | ||
| 96 | label_2->setObjectName(QString::fromUtf8("label_2")); | ||
| 97 | |||
| 98 | gridLayout->addWidget(label_2, 1, 0, 1, 1); | ||
| 99 | |||
| 100 | label = new QLabel(ControllerConfig); | ||
| 101 | label->setObjectName(QString::fromUtf8("label")); | ||
| 102 | |||
| 103 | gridLayout->addWidget(label, 0, 0, 1, 1); | ||
| 104 | |||
| 105 | |||
| 106 | verticalLayout->addLayout(gridLayout); | ||
| 107 | |||
| 108 | tabWidget = new QTabWidget(ControllerConfig); | ||
| 109 | tabWidget->setObjectName(QString::fromUtf8("tabWidget")); | ||
| 110 | mainStickTab = new QWidget(); | ||
| 111 | mainStickTab->setObjectName(QString::fromUtf8("mainStickTab")); | ||
| 112 | gridLayout_3 = new QGridLayout(mainStickTab); | ||
| 113 | gridLayout_3->setObjectName(QString::fromUtf8("gridLayout_3")); | ||
| 114 | verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | ||
| 115 | |||
| 116 | gridLayout_3->addItem(verticalSpacer_2, 2, 2, 1, 1); | ||
| 117 | |||
| 118 | verticalSpacer_3 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | ||
| 119 | |||
| 120 | gridLayout_3->addItem(verticalSpacer_3, 0, 2, 1, 1); | ||
| 121 | |||
| 122 | horizontalSpacer_4 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 123 | |||
| 124 | gridLayout_3->addItem(horizontalSpacer_4, 1, 0, 1, 1); | ||
| 125 | |||
| 126 | horizontalSpacer_3 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 127 | |||
| 128 | gridLayout_3->addItem(horizontalSpacer_3, 1, 4, 1, 1); | ||
| 129 | |||
| 130 | tabWidget->addTab(mainStickTab, QString()); | ||
| 131 | cStickTab = new QWidget(); | ||
| 132 | cStickTab->setObjectName(QString::fromUtf8("cStickTab")); | ||
| 133 | gridLayout_4 = new QGridLayout(cStickTab); | ||
| 134 | gridLayout_4->setObjectName(QString::fromUtf8("gridLayout_4")); | ||
| 135 | horizontalSpacer_6 = new QSpacerItem(40, 0, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 136 | |||
| 137 | gridLayout_4->addItem(horizontalSpacer_6, 1, 0, 1, 1); | ||
| 138 | |||
| 139 | verticalSpacer_5 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | ||
| 140 | |||
| 141 | gridLayout_4->addItem(verticalSpacer_5, 0, 1, 1, 1); | ||
| 142 | |||
| 143 | verticalSpacer_4 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | ||
| 144 | |||
| 145 | gridLayout_4->addItem(verticalSpacer_4, 2, 1, 1, 1); | ||
| 146 | |||
| 147 | horizontalSpacer_5 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 148 | |||
| 149 | gridLayout_4->addItem(horizontalSpacer_5, 1, 2, 1, 1); | ||
| 150 | |||
| 151 | tabWidget->addTab(cStickTab, QString()); | ||
| 152 | dPadTab = new QWidget(); | ||
| 153 | dPadTab->setObjectName(QString::fromUtf8("dPadTab")); | ||
| 154 | gridLayout_5 = new QGridLayout(dPadTab); | ||
| 155 | gridLayout_5->setObjectName(QString::fromUtf8("gridLayout_5")); | ||
| 156 | horizontalSpacer_7 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 157 | |||
| 158 | gridLayout_5->addItem(horizontalSpacer_7, 1, 2, 1, 1); | ||
| 159 | |||
| 160 | verticalSpacer_7 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | ||
| 161 | |||
| 162 | gridLayout_5->addItem(verticalSpacer_7, 0, 1, 1, 1); | ||
| 163 | |||
| 164 | verticalSpacer_6 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); | ||
| 165 | |||
| 166 | gridLayout_5->addItem(verticalSpacer_6, 2, 1, 1, 1); | ||
| 167 | |||
| 168 | horizontalSpacer_8 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); | ||
| 169 | |||
| 170 | gridLayout_5->addItem(horizontalSpacer_8, 1, 0, 1, 1); | ||
| 171 | |||
| 172 | tabWidget->addTab(dPadTab, QString()); | ||
| 173 | buttonsTab = new QWidget(); | ||
| 174 | buttonsTab->setObjectName(QString::fromUtf8("buttonsTab")); | ||
| 175 | verticalLayout_2 = new QVBoxLayout(buttonsTab); | ||
| 176 | verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2")); | ||
| 177 | tabWidget->addTab(buttonsTab, QString()); | ||
| 178 | |||
| 179 | verticalLayout->addWidget(tabWidget); | ||
| 180 | |||
| 181 | |||
| 182 | retranslateUi(ControllerConfig); | ||
| 183 | |||
| 184 | tabWidget->setCurrentIndex(0); | ||
| 185 | |||
| 186 | |||
| 187 | QMetaObject::connectSlotsByName(ControllerConfig); | ||
| 188 | } // setupUi | ||
| 189 | |||
| 190 | void retranslateUi(QWidget *ControllerConfig) | ||
| 191 | { | ||
| 192 | ControllerConfig->setWindowTitle(QApplication::translate("ControllerConfig", "Controller Configuration", 0, QApplication::UnicodeUTF8)); | ||
| 193 | activeControllerCB->clear(); | ||
| 194 | activeControllerCB->insertItems(0, QStringList() | ||
| 195 | << QApplication::translate("ControllerConfig", "Controller 1", 0, QApplication::UnicodeUTF8) | ||
| 196 | << QApplication::translate("ControllerConfig", "Controller 2", 0, QApplication::UnicodeUTF8) | ||
| 197 | << QApplication::translate("ControllerConfig", "Controller 3", 0, QApplication::UnicodeUTF8) | ||
| 198 | << QApplication::translate("ControllerConfig", "Controller 4", 0, QApplication::UnicodeUTF8) | ||
| 199 | ); | ||
| 200 | checkBox->setText(QApplication::translate("ControllerConfig", "Enabled", 0, QApplication::UnicodeUTF8)); | ||
| 201 | inputSourceCB->clear(); | ||
| 202 | inputSourceCB->insertItems(0, QStringList() | ||
| 203 | << QApplication::translate("ControllerConfig", "Keyboard", 0, QApplication::UnicodeUTF8) | ||
| 204 | << QApplication::translate("ControllerConfig", "Joypad", 0, QApplication::UnicodeUTF8) | ||
| 205 | ); | ||
| 206 | label_2->setText(QApplication::translate("ControllerConfig", "Active Controller:", 0, QApplication::UnicodeUTF8)); | ||
| 207 | label->setText(QApplication::translate("ControllerConfig", "Input Source:", 0, QApplication::UnicodeUTF8)); | ||
| 208 | tabWidget->setTabText(tabWidget->indexOf(mainStickTab), QApplication::translate("ControllerConfig", "Main Stick", 0, QApplication::UnicodeUTF8)); | ||
| 209 | tabWidget->setTabText(tabWidget->indexOf(cStickTab), QApplication::translate("ControllerConfig", "C-Stick", 0, QApplication::UnicodeUTF8)); | ||
| 210 | tabWidget->setTabText(tabWidget->indexOf(dPadTab), QApplication::translate("ControllerConfig", "D-Pad", 0, QApplication::UnicodeUTF8)); | ||
| 211 | tabWidget->setTabText(tabWidget->indexOf(buttonsTab), QApplication::translate("ControllerConfig", "Buttons", 0, QApplication::UnicodeUTF8)); | ||
| 212 | } // retranslateUi | ||
| 213 | |||
| 214 | }; | ||
| 215 | |||
| 216 | namespace Ui { | ||
| 217 | class ControllerConfig: public Ui_ControllerConfig {}; | ||
| 218 | } // namespace Ui | ||
| 219 | |||
| 220 | QT_END_NAMESPACE | ||
| 221 | |||
| 222 | #endif // UI_CONTROLLER_CONFIG_H | ||
diff --git a/src/citra_qt/ui_disassembler.h b/src/citra_qt/ui_disassembler.h deleted file mode 100644 index cc9f6b540..000000000 --- a/src/citra_qt/ui_disassembler.h +++ /dev/null | |||
| @@ -1,112 +0,0 @@ | |||
| 1 | /******************************************************************************** | ||
| 2 | ** Form generated from reading UI file 'disassembler.ui' | ||
| 3 | ** | ||
| 4 | ** Created by: Qt User Interface Compiler version 4.8.5 | ||
| 5 | ** | ||
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | ||
| 7 | ********************************************************************************/ | ||
| 8 | |||
| 9 | #ifndef UI_DISASSEMBLER_H | ||
| 10 | #define UI_DISASSEMBLER_H | ||
| 11 | |||
| 12 | #include <QtCore/QVariant> | ||
| 13 | #include <QtGui/QAction> | ||
| 14 | #include <QtGui/QApplication> | ||
| 15 | #include <QtGui/QButtonGroup> | ||
| 16 | #include <QtGui/QDockWidget> | ||
| 17 | #include <QtGui/QHBoxLayout> | ||
| 18 | #include <QtGui/QHeaderView> | ||
| 19 | #include <QtGui/QPushButton> | ||
| 20 | #include <QtGui/QTreeView> | ||
| 21 | #include <QtGui/QVBoxLayout> | ||
| 22 | #include <QtGui/QWidget> | ||
| 23 | |||
| 24 | QT_BEGIN_NAMESPACE | ||
| 25 | |||
| 26 | class Ui_DockWidget | ||
| 27 | { | ||
| 28 | public: | ||
| 29 | QWidget *dockWidgetContents; | ||
| 30 | QVBoxLayout *verticalLayout; | ||
| 31 | QHBoxLayout *horizontalLayout; | ||
| 32 | QPushButton *button_step; | ||
| 33 | QPushButton *button_pause; | ||
| 34 | QPushButton *button_continue; | ||
| 35 | QPushButton *pushButton; | ||
| 36 | QPushButton *button_breakpoint; | ||
| 37 | QTreeView *treeView; | ||
| 38 | |||
| 39 | void setupUi(QDockWidget *DockWidget) | ||
| 40 | { | ||
| 41 | if (DockWidget->objectName().isEmpty()) | ||
| 42 | DockWidget->setObjectName(QString::fromUtf8("DockWidget")); | ||
| 43 | DockWidget->resize(430, 401); | ||
| 44 | dockWidgetContents = new QWidget(); | ||
| 45 | dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents")); | ||
| 46 | verticalLayout = new QVBoxLayout(dockWidgetContents); | ||
| 47 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); | ||
| 48 | horizontalLayout = new QHBoxLayout(); | ||
| 49 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); | ||
| 50 | button_step = new QPushButton(dockWidgetContents); | ||
| 51 | button_step->setObjectName(QString::fromUtf8("button_step")); | ||
| 52 | |||
| 53 | horizontalLayout->addWidget(button_step); | ||
| 54 | |||
| 55 | button_pause = new QPushButton(dockWidgetContents); | ||
| 56 | button_pause->setObjectName(QString::fromUtf8("button_pause")); | ||
| 57 | |||
| 58 | horizontalLayout->addWidget(button_pause); | ||
| 59 | |||
| 60 | button_continue = new QPushButton(dockWidgetContents); | ||
| 61 | button_continue->setObjectName(QString::fromUtf8("button_continue")); | ||
| 62 | |||
| 63 | horizontalLayout->addWidget(button_continue); | ||
| 64 | |||
| 65 | pushButton = new QPushButton(dockWidgetContents); | ||
| 66 | pushButton->setObjectName(QString::fromUtf8("pushButton")); | ||
| 67 | |||
| 68 | horizontalLayout->addWidget(pushButton); | ||
| 69 | |||
| 70 | button_breakpoint = new QPushButton(dockWidgetContents); | ||
| 71 | button_breakpoint->setObjectName(QString::fromUtf8("button_breakpoint")); | ||
| 72 | |||
| 73 | horizontalLayout->addWidget(button_breakpoint); | ||
| 74 | |||
| 75 | |||
| 76 | verticalLayout->addLayout(horizontalLayout); | ||
| 77 | |||
| 78 | treeView = new QTreeView(dockWidgetContents); | ||
| 79 | treeView->setObjectName(QString::fromUtf8("treeView")); | ||
| 80 | treeView->setAlternatingRowColors(true); | ||
| 81 | treeView->setIndentation(20); | ||
| 82 | treeView->setRootIsDecorated(false); | ||
| 83 | treeView->header()->setVisible(false); | ||
| 84 | |||
| 85 | verticalLayout->addWidget(treeView); | ||
| 86 | |||
| 87 | DockWidget->setWidget(dockWidgetContents); | ||
| 88 | |||
| 89 | retranslateUi(DockWidget); | ||
| 90 | |||
| 91 | QMetaObject::connectSlotsByName(DockWidget); | ||
| 92 | } // setupUi | ||
| 93 | |||
| 94 | void retranslateUi(QDockWidget *DockWidget) | ||
| 95 | { | ||
| 96 | DockWidget->setWindowTitle(QApplication::translate("DockWidget", "Disassembly", 0, QApplication::UnicodeUTF8)); | ||
| 97 | button_step->setText(QApplication::translate("DockWidget", "Step", 0, QApplication::UnicodeUTF8)); | ||
| 98 | button_pause->setText(QApplication::translate("DockWidget", "Pause", 0, QApplication::UnicodeUTF8)); | ||
| 99 | button_continue->setText(QApplication::translate("DockWidget", "Continue", 0, QApplication::UnicodeUTF8)); | ||
| 100 | pushButton->setText(QApplication::translate("DockWidget", "Step Into", 0, QApplication::UnicodeUTF8)); | ||
| 101 | button_breakpoint->setText(QApplication::translate("DockWidget", "Set Breakpoint", 0, QApplication::UnicodeUTF8)); | ||
| 102 | } // retranslateUi | ||
| 103 | |||
| 104 | }; | ||
| 105 | |||
| 106 | namespace Ui { | ||
| 107 | class DockWidget: public Ui_DockWidget {}; | ||
| 108 | } // namespace Ui | ||
| 109 | |||
| 110 | QT_END_NAMESPACE | ||
| 111 | |||
| 112 | #endif // UI_DISASSEMBLER_H | ||
diff --git a/src/citra_qt/ui_hotkeys.h b/src/citra_qt/ui_hotkeys.h deleted file mode 100644 index 5b2cee6f4..000000000 --- a/src/citra_qt/ui_hotkeys.h +++ /dev/null | |||
| @@ -1,77 +0,0 @@ | |||
| 1 | /******************************************************************************** | ||
| 2 | ** Form generated from reading UI file 'hotkeys.ui' | ||
| 3 | ** | ||
| 4 | ** Created by: Qt User Interface Compiler version 4.8.5 | ||
| 5 | ** | ||
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | ||
| 7 | ********************************************************************************/ | ||
| 8 | |||
| 9 | #ifndef UI_HOTKEYS_H | ||
| 10 | #define UI_HOTKEYS_H | ||
| 11 | |||
| 12 | #include <QtCore/QVariant> | ||
| 13 | #include <QtGui/QAction> | ||
| 14 | #include <QtGui/QApplication> | ||
| 15 | #include <QtGui/QButtonGroup> | ||
| 16 | #include <QtGui/QDialog> | ||
| 17 | #include <QtGui/QDialogButtonBox> | ||
| 18 | #include <QtGui/QHeaderView> | ||
| 19 | #include <QtGui/QTreeWidget> | ||
| 20 | #include <QtGui/QVBoxLayout> | ||
| 21 | |||
| 22 | QT_BEGIN_NAMESPACE | ||
| 23 | |||
| 24 | class Ui_hotkeys | ||
| 25 | { | ||
| 26 | public: | ||
| 27 | QVBoxLayout *verticalLayout; | ||
| 28 | QTreeWidget *treeWidget; | ||
| 29 | QDialogButtonBox *buttonBox; | ||
| 30 | |||
| 31 | void setupUi(QDialog *hotkeys) | ||
| 32 | { | ||
| 33 | if (hotkeys->objectName().isEmpty()) | ||
| 34 | hotkeys->setObjectName(QString::fromUtf8("hotkeys")); | ||
| 35 | hotkeys->resize(363, 388); | ||
| 36 | verticalLayout = new QVBoxLayout(hotkeys); | ||
| 37 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); | ||
| 38 | treeWidget = new QTreeWidget(hotkeys); | ||
| 39 | treeWidget->setObjectName(QString::fromUtf8("treeWidget")); | ||
| 40 | treeWidget->setSelectionBehavior(QAbstractItemView::SelectItems); | ||
| 41 | treeWidget->setHeaderHidden(false); | ||
| 42 | |||
| 43 | verticalLayout->addWidget(treeWidget); | ||
| 44 | |||
| 45 | buttonBox = new QDialogButtonBox(hotkeys); | ||
| 46 | buttonBox->setObjectName(QString::fromUtf8("buttonBox")); | ||
| 47 | buttonBox->setOrientation(Qt::Horizontal); | ||
| 48 | buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok|QDialogButtonBox::Reset); | ||
| 49 | |||
| 50 | verticalLayout->addWidget(buttonBox); | ||
| 51 | |||
| 52 | |||
| 53 | retranslateUi(hotkeys); | ||
| 54 | QObject::connect(buttonBox, SIGNAL(accepted()), hotkeys, SLOT(accept())); | ||
| 55 | QObject::connect(buttonBox, SIGNAL(rejected()), hotkeys, SLOT(reject())); | ||
| 56 | |||
| 57 | QMetaObject::connectSlotsByName(hotkeys); | ||
| 58 | } // setupUi | ||
| 59 | |||
| 60 | void retranslateUi(QDialog *hotkeys) | ||
| 61 | { | ||
| 62 | hotkeys->setWindowTitle(QApplication::translate("hotkeys", "Hotkey Settings", 0, QApplication::UnicodeUTF8)); | ||
| 63 | QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem(); | ||
| 64 | ___qtreewidgetitem->setText(2, QApplication::translate("hotkeys", "Context", 0, QApplication::UnicodeUTF8)); | ||
| 65 | ___qtreewidgetitem->setText(1, QApplication::translate("hotkeys", "Hotkey", 0, QApplication::UnicodeUTF8)); | ||
| 66 | ___qtreewidgetitem->setText(0, QApplication::translate("hotkeys", "Action", 0, QApplication::UnicodeUTF8)); | ||
| 67 | } // retranslateUi | ||
| 68 | |||
| 69 | }; | ||
| 70 | |||
| 71 | namespace Ui { | ||
| 72 | class hotkeys: public Ui_hotkeys {}; | ||
| 73 | } // namespace Ui | ||
| 74 | |||
| 75 | QT_END_NAMESPACE | ||
| 76 | |||
| 77 | #endif // UI_HOTKEYS_H | ||
diff --git a/src/citra_qt/ui_main.h b/src/citra_qt/ui_main.h deleted file mode 100644 index 04979e5ab..000000000 --- a/src/citra_qt/ui_main.h +++ /dev/null | |||
| @@ -1,153 +0,0 @@ | |||
| 1 | /******************************************************************************** | ||
| 2 | ** Form generated from reading UI file 'main.ui' | ||
| 3 | ** | ||
| 4 | ** Created by: Qt User Interface Compiler version 4.8.5 | ||
| 5 | ** | ||
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | ||
| 7 | ********************************************************************************/ | ||
| 8 | |||
| 9 | #ifndef UI_MAIN_H | ||
| 10 | #define UI_MAIN_H | ||
| 11 | |||
| 12 | #include <QtCore/QVariant> | ||
| 13 | #include <QtGui/QAction> | ||
| 14 | #include <QtGui/QApplication> | ||
| 15 | #include <QtGui/QButtonGroup> | ||
| 16 | #include <QtGui/QHBoxLayout> | ||
| 17 | #include <QtGui/QHeaderView> | ||
| 18 | #include <QtGui/QMainWindow> | ||
| 19 | #include <QtGui/QMenu> | ||
| 20 | #include <QtGui/QMenuBar> | ||
| 21 | #include <QtGui/QStatusBar> | ||
| 22 | #include <QtGui/QWidget> | ||
| 23 | |||
| 24 | QT_BEGIN_NAMESPACE | ||
| 25 | |||
| 26 | class Ui_MainWindow | ||
| 27 | { | ||
| 28 | public: | ||
| 29 | QAction *action_Load_File; | ||
| 30 | QAction *action_Load_Symbol_Map; | ||
| 31 | QAction *action_Exit; | ||
| 32 | QAction *action_Start; | ||
| 33 | QAction *action_Pause; | ||
| 34 | QAction *action_Stop; | ||
| 35 | QAction *action_About; | ||
| 36 | QAction *action_Popout_Window_Mode; | ||
| 37 | QAction *action_Hotkeys; | ||
| 38 | QAction *action_Configure; | ||
| 39 | QWidget *centralwidget; | ||
| 40 | QHBoxLayout *horizontalLayout; | ||
| 41 | QMenuBar *menubar; | ||
| 42 | QMenu *menu_File; | ||
| 43 | QMenu *menu_Emulation; | ||
| 44 | QMenu *menu_View; | ||
| 45 | QMenu *menu_Help; | ||
| 46 | QStatusBar *statusbar; | ||
| 47 | |||
| 48 | void setupUi(QMainWindow *MainWindow) | ||
| 49 | { | ||
| 50 | if (MainWindow->objectName().isEmpty()) | ||
| 51 | MainWindow->setObjectName(QString::fromUtf8("MainWindow")); | ||
| 52 | MainWindow->resize(1081, 730); | ||
| 53 | QIcon icon; | ||
| 54 | icon.addFile(QString::fromUtf8("src/pcafe/res/icon3_64x64.ico"), QSize(), QIcon::Normal, QIcon::Off); | ||
| 55 | MainWindow->setWindowIcon(icon); | ||
| 56 | MainWindow->setTabShape(QTabWidget::Rounded); | ||
| 57 | MainWindow->setDockNestingEnabled(true); | ||
| 58 | action_Load_File = new QAction(MainWindow); | ||
| 59 | action_Load_File->setObjectName(QString::fromUtf8("action_Load_File")); | ||
| 60 | action_Load_Symbol_Map = new QAction(MainWindow); | ||
| 61 | action_Load_Symbol_Map->setObjectName(QString::fromUtf8("action_Load_Symbol_Map")); | ||
| 62 | action_Exit = new QAction(MainWindow); | ||
| 63 | action_Exit->setObjectName(QString::fromUtf8("action_Exit")); | ||
| 64 | action_Start = new QAction(MainWindow); | ||
| 65 | action_Start->setObjectName(QString::fromUtf8("action_Start")); | ||
| 66 | action_Pause = new QAction(MainWindow); | ||
| 67 | action_Pause->setObjectName(QString::fromUtf8("action_Pause")); | ||
| 68 | action_Pause->setEnabled(false); | ||
| 69 | action_Stop = new QAction(MainWindow); | ||
| 70 | action_Stop->setObjectName(QString::fromUtf8("action_Stop")); | ||
| 71 | action_Stop->setEnabled(false); | ||
| 72 | action_About = new QAction(MainWindow); | ||
| 73 | action_About->setObjectName(QString::fromUtf8("action_About")); | ||
| 74 | action_Popout_Window_Mode = new QAction(MainWindow); | ||
| 75 | action_Popout_Window_Mode->setObjectName(QString::fromUtf8("action_Popout_Window_Mode")); | ||
| 76 | action_Popout_Window_Mode->setCheckable(true); | ||
| 77 | action_Hotkeys = new QAction(MainWindow); | ||
| 78 | action_Hotkeys->setObjectName(QString::fromUtf8("action_Hotkeys")); | ||
| 79 | action_Configure = new QAction(MainWindow); | ||
| 80 | action_Configure->setObjectName(QString::fromUtf8("action_Configure")); | ||
| 81 | centralwidget = new QWidget(MainWindow); | ||
| 82 | centralwidget->setObjectName(QString::fromUtf8("centralwidget")); | ||
| 83 | horizontalLayout = new QHBoxLayout(centralwidget); | ||
| 84 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout")); | ||
| 85 | MainWindow->setCentralWidget(centralwidget); | ||
| 86 | menubar = new QMenuBar(MainWindow); | ||
| 87 | menubar->setObjectName(QString::fromUtf8("menubar")); | ||
| 88 | menubar->setGeometry(QRect(0, 0, 1081, 20)); | ||
| 89 | menu_File = new QMenu(menubar); | ||
| 90 | menu_File->setObjectName(QString::fromUtf8("menu_File")); | ||
| 91 | menu_Emulation = new QMenu(menubar); | ||
| 92 | menu_Emulation->setObjectName(QString::fromUtf8("menu_Emulation")); | ||
| 93 | menu_View = new QMenu(menubar); | ||
| 94 | menu_View->setObjectName(QString::fromUtf8("menu_View")); | ||
| 95 | menu_Help = new QMenu(menubar); | ||
| 96 | menu_Help->setObjectName(QString::fromUtf8("menu_Help")); | ||
| 97 | MainWindow->setMenuBar(menubar); | ||
| 98 | statusbar = new QStatusBar(MainWindow); | ||
| 99 | statusbar->setObjectName(QString::fromUtf8("statusbar")); | ||
| 100 | MainWindow->setStatusBar(statusbar); | ||
| 101 | |||
| 102 | menubar->addAction(menu_File->menuAction()); | ||
| 103 | menubar->addAction(menu_Emulation->menuAction()); | ||
| 104 | menubar->addAction(menu_View->menuAction()); | ||
| 105 | menubar->addAction(menu_Help->menuAction()); | ||
| 106 | menu_File->addAction(action_Load_File); | ||
| 107 | menu_File->addAction(action_Load_Symbol_Map); | ||
| 108 | menu_File->addSeparator(); | ||
| 109 | menu_File->addAction(action_Exit); | ||
| 110 | menu_Emulation->addAction(action_Start); | ||
| 111 | menu_Emulation->addAction(action_Pause); | ||
| 112 | menu_Emulation->addAction(action_Stop); | ||
| 113 | menu_Emulation->addSeparator(); | ||
| 114 | menu_Emulation->addAction(action_Configure); | ||
| 115 | menu_View->addAction(action_Popout_Window_Mode); | ||
| 116 | menu_View->addAction(action_Hotkeys); | ||
| 117 | menu_Help->addAction(action_About); | ||
| 118 | |||
| 119 | retranslateUi(MainWindow); | ||
| 120 | QObject::connect(action_Exit, SIGNAL(triggered()), MainWindow, SLOT(close())); | ||
| 121 | QObject::connect(action_Configure, SIGNAL(triggered()), MainWindow, SLOT(OnConfigure())); | ||
| 122 | |||
| 123 | QMetaObject::connectSlotsByName(MainWindow); | ||
| 124 | } // setupUi | ||
| 125 | |||
| 126 | void retranslateUi(QMainWindow *MainWindow) | ||
| 127 | { | ||
| 128 | MainWindow->setWindowTitle(QApplication::translate("MainWindow", "Citra", 0, QApplication::UnicodeUTF8)); | ||
| 129 | action_Load_File->setText(QApplication::translate("MainWindow", "Load file...", 0, QApplication::UnicodeUTF8)); | ||
| 130 | action_Load_Symbol_Map->setText(QApplication::translate("MainWindow", "Load symbol map...", 0, QApplication::UnicodeUTF8)); | ||
| 131 | action_Exit->setText(QApplication::translate("MainWindow", "E&xit", 0, QApplication::UnicodeUTF8)); | ||
| 132 | action_Start->setText(QApplication::translate("MainWindow", "&Start", 0, QApplication::UnicodeUTF8)); | ||
| 133 | action_Pause->setText(QApplication::translate("MainWindow", "&Pause", 0, QApplication::UnicodeUTF8)); | ||
| 134 | action_Stop->setText(QApplication::translate("MainWindow", "&Stop", 0, QApplication::UnicodeUTF8)); | ||
| 135 | action_About->setText(QApplication::translate("MainWindow", "About Citra", 0, QApplication::UnicodeUTF8)); | ||
| 136 | action_Popout_Window_Mode->setText(QApplication::translate("MainWindow", "Popout window", 0, QApplication::UnicodeUTF8)); | ||
| 137 | action_Hotkeys->setText(QApplication::translate("MainWindow", "Configure &Hotkeys ...", 0, QApplication::UnicodeUTF8)); | ||
| 138 | action_Configure->setText(QApplication::translate("MainWindow", "Configure ...", 0, QApplication::UnicodeUTF8)); | ||
| 139 | menu_File->setTitle(QApplication::translate("MainWindow", "&File", 0, QApplication::UnicodeUTF8)); | ||
| 140 | menu_Emulation->setTitle(QApplication::translate("MainWindow", "&Emulation", 0, QApplication::UnicodeUTF8)); | ||
| 141 | menu_View->setTitle(QApplication::translate("MainWindow", "&View", 0, QApplication::UnicodeUTF8)); | ||
| 142 | menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", 0, QApplication::UnicodeUTF8)); | ||
| 143 | } // retranslateUi | ||
| 144 | |||
| 145 | }; | ||
| 146 | |||
| 147 | namespace Ui { | ||
| 148 | class MainWindow: public Ui_MainWindow {}; | ||
| 149 | } // namespace Ui | ||
| 150 | |||
| 151 | QT_END_NAMESPACE | ||
| 152 | |||
| 153 | #endif // UI_MAIN_H | ||
diff --git a/src/citra_qt/ui_registers.h b/src/citra_qt/ui_registers.h deleted file mode 100644 index 3111cd09e..000000000 --- a/src/citra_qt/ui_registers.h +++ /dev/null | |||
| @@ -1,69 +0,0 @@ | |||
| 1 | /******************************************************************************** | ||
| 2 | ** Form generated from reading UI file 'registers.ui' | ||
| 3 | ** | ||
| 4 | ** Created by: Qt User Interface Compiler version 4.8.5 | ||
| 5 | ** | ||
| 6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! | ||
| 7 | ********************************************************************************/ | ||
| 8 | |||
| 9 | #ifndef UI_REGISTERS_H | ||
| 10 | #define UI_REGISTERS_H | ||
| 11 | |||
| 12 | #include <QtCore/QVariant> | ||
| 13 | #include <QtGui/QAction> | ||
| 14 | #include <QtGui/QApplication> | ||
| 15 | #include <QtGui/QButtonGroup> | ||
| 16 | #include <QtGui/QDockWidget> | ||
| 17 | #include <QtGui/QHeaderView> | ||
| 18 | #include <QtGui/QTreeWidget> | ||
| 19 | #include <QtGui/QVBoxLayout> | ||
| 20 | #include <QtGui/QWidget> | ||
| 21 | |||
| 22 | QT_BEGIN_NAMESPACE | ||
| 23 | |||
| 24 | class Ui_ARMRegisters | ||
| 25 | { | ||
| 26 | public: | ||
| 27 | QWidget *dockWidgetContents; | ||
| 28 | QVBoxLayout *verticalLayout; | ||
| 29 | QTreeWidget *treeWidget; | ||
| 30 | |||
| 31 | void setupUi(QDockWidget *ARMRegisters) | ||
| 32 | { | ||
| 33 | if (ARMRegisters->objectName().isEmpty()) | ||
| 34 | ARMRegisters->setObjectName(QString::fromUtf8("ARMRegisters")); | ||
| 35 | ARMRegisters->resize(400, 300); | ||
| 36 | dockWidgetContents = new QWidget(); | ||
| 37 | dockWidgetContents->setObjectName(QString::fromUtf8("dockWidgetContents")); | ||
| 38 | verticalLayout = new QVBoxLayout(dockWidgetContents); | ||
| 39 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); | ||
| 40 | treeWidget = new QTreeWidget(dockWidgetContents); | ||
| 41 | treeWidget->setObjectName(QString::fromUtf8("treeWidget")); | ||
| 42 | treeWidget->setAlternatingRowColors(true); | ||
| 43 | |||
| 44 | verticalLayout->addWidget(treeWidget); | ||
| 45 | |||
| 46 | ARMRegisters->setWidget(dockWidgetContents); | ||
| 47 | |||
| 48 | retranslateUi(ARMRegisters); | ||
| 49 | |||
| 50 | QMetaObject::connectSlotsByName(ARMRegisters); | ||
| 51 | } // setupUi | ||
| 52 | |||
| 53 | void retranslateUi(QDockWidget *ARMRegisters) | ||
| 54 | { | ||
| 55 | ARMRegisters->setWindowTitle(QApplication::translate("ARMRegisters", "ARM registers", 0, QApplication::UnicodeUTF8)); | ||
| 56 | QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem(); | ||
| 57 | ___qtreewidgetitem->setText(1, QApplication::translate("ARMRegisters", "Value", 0, QApplication::UnicodeUTF8)); | ||
| 58 | ___qtreewidgetitem->setText(0, QApplication::translate("ARMRegisters", "Register", 0, QApplication::UnicodeUTF8)); | ||
| 59 | } // retranslateUi | ||
| 60 | |||
| 61 | }; | ||
| 62 | |||
| 63 | namespace Ui { | ||
| 64 | class ARMRegisters: public Ui_ARMRegisters {}; | ||
| 65 | } // namespace Ui | ||
| 66 | |||
| 67 | QT_END_NAMESPACE | ||
| 68 | |||
| 69 | #endif // UI_REGISTERS_H | ||
diff --git a/vsprops/qt.props b/vsprops/qt.props index f8bb44776..f74a7b5ea 100644 --- a/vsprops/qt.props +++ b/vsprops/qt.props | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | <QtBinaryDir>$(QTDIR)\bin\</QtBinaryDir> | 7 | <QtBinaryDir>$(QTDIR)\bin\</QtBinaryDir> |
| 8 | </PropertyGroup> | 8 | </PropertyGroup> |
| 9 | <PropertyGroup> | 9 | <PropertyGroup> |
| 10 | <IncludePath>$(QtIncludeDir);$(QtIncludeDir)QtGui;$(QtIncludeDir)QtCore;$(QtIncludeDir)Qt;$(QtIncludeDir)QtOpenGL;$(QtIncludeDir)QtANGLE;$(QtIncludeDir)QtWidgets;$(IncludePath)</IncludePath> | 10 | <IncludePath>$(QtIncludeDir);$(QtIncludeDir)QtGui;$(QtIncludeDir)QtCore;$(QtIncludeDir)Qt;$(QtIncludeDir)QtOpenGL;$(QtIncludeDir)QtANGLE;$(QtIncludeDir)QtWidgets;$(ProjectDir);$(IncludePath)</IncludePath> |
| 11 | <LibraryPath>$(QtLibraryDir);$(LibraryPath)</LibraryPath> | 11 | <LibraryPath>$(QtLibraryDir);$(LibraryPath)</LibraryPath> |
| 12 | </PropertyGroup> | 12 | </PropertyGroup> |
| 13 | <ItemDefinitionGroup> | 13 | <ItemDefinitionGroup> |