diff options
| author | 2014-04-08 19:25:03 -0400 | |
|---|---|---|
| committer | 2014-04-08 19:25:03 -0400 | |
| commit | 63e46abdb8764bc97e91bae862c8d461e61b1965 (patch) | |
| tree | e73f4aa25d7b4015a265e7bbfb6004dab7561027 /src/citra_qt/ui_callstack.h | |
| parent | fixed some license headers that I missed (diff) | |
| download | yuzu-63e46abdb8764bc97e91bae862c8d461e61b1965.tar.gz yuzu-63e46abdb8764bc97e91bae862c8d461e61b1965.tar.xz yuzu-63e46abdb8764bc97e91bae862c8d461e61b1965.zip | |
got rid of 'src' folders in each sub-project
Diffstat (limited to 'src/citra_qt/ui_callstack.h')
| -rw-r--r-- | src/citra_qt/ui_callstack.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/citra_qt/ui_callstack.h b/src/citra_qt/ui_callstack.h new file mode 100644 index 000000000..75d10253c --- /dev/null +++ b/src/citra_qt/ui_callstack.h | |||
| @@ -0,0 +1,68 @@ | |||
| 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 | ||