aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/commonoptionspage.h
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-11-10 23:29:43 +0100
committerhjk <qthjk@ovi.com>2012-11-16 13:59:36 +0100
commitcb7d4f8d1ccf5925243cad57807c6e1f4f8296ba (patch)
treeb6a36b785172d1cbcb67f4e3c6b36c7f6c4fbe67 /src/plugins/debugger/commonoptionspage.h
parente440ec8a62beb6bd8153b0b838473974c013829f (diff)
debugger: inline commonoptionspage.ui
Change-Id: I8ededc392485558ed4327cc2b76e73fba81bf562 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/debugger/commonoptionspage.h')
-rw-r--r--src/plugins/debugger/commonoptionspage.h24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/plugins/debugger/commonoptionspage.h b/src/plugins/debugger/commonoptionspage.h
index 6b0ebf67e4..474aab5514 100644
--- a/src/plugins/debugger/commonoptionspage.h
+++ b/src/plugins/debugger/commonoptionspage.h
@@ -30,18 +30,21 @@
#ifndef DEBUGGER_COMMONOPTIONSPAGE_H
#define DEBUGGER_COMMONOPTIONSPAGE_H
-#include "ui_commonoptionspage.h"
+#include "debuggersourcepathmappingwidget.h"
#include "ui_localsandexpressionsoptionspage.h"
#include <coreplugin/dialogs/ioptionspage.h>
#include <utils/savedaction.h>
-#include <QSharedPointer>
+#include <QCheckBox>
+#include <QLabel>
#include <QPointer>
-#include <QWidget>
+#include <QSharedPointer>
+#include <QSpinBox>
namespace Debugger {
namespace Internal {
+
class GlobalDebuggerOptions;
///////////////////////////////////////////////////////////////////////
@@ -60,7 +63,20 @@ public:
void setGlobalOptions(const GlobalDebuggerOptions &go);
private:
- Ui::CommonOptionsPage m_ui;
+ QCheckBox *checkBoxUseAlternatingRowColors;
+ QCheckBox *checkBoxFontSizeFollowsEditor;
+ QCheckBox *checkBoxUseToolTipsInMainEditor;
+ QCheckBox *checkBoxListSourceFiles;
+ QCheckBox *checkBoxCloseBuffersOnExit;
+ QCheckBox *checkBoxSwitchModeOnExit;
+ QCheckBox *checkBoxBringToForegroundOnInterrrupt;
+ QCheckBox *checkBoxShowQmlObjectTree;
+ QCheckBox *checkBoxBreakpointsFullPath;
+ QCheckBox *checkBoxRegisterForPostMortem;
+ QLabel *labelMaximalStackDepth;
+ QSpinBox *spinBoxMaximalStackDepth;
+
+ DebuggerSourcePathMappingWidget *sourcesMappingWidget;
const QSharedPointer<Utils::SavedActionSet> m_group;
};