summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/cdb/cdboptionspage.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-04-17 09:03:32 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-04-17 09:03:32 +0200
commit7d41e04884e11ec7a1e4e1d84d5967a725aefa21 (patch)
tree6bfbe1c5b194200c4c61802791b606dc867a66e4 /src/plugins/debugger/cdb/cdboptionspage.h
parentbc89f5dc4f90968fe6d26e05ed8dbb2b4038ec67 (diff)
downloadqt-creator-7d41e04884e11ec7a1e4e1d84d5967a725aefa21.tar.gz
Split apart debugger options pages, allow specifying a path to CDB.
Modify engine creation funcs to populate a list of option pages to be able to handle engine enabling independently of the actual engine creation.
Diffstat (limited to 'src/plugins/debugger/cdb/cdboptionspage.h')
-rw-r--r--src/plugins/debugger/cdb/cdboptionspage.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/plugins/debugger/cdb/cdboptionspage.h b/src/plugins/debugger/cdb/cdboptionspage.h
new file mode 100644
index 0000000000..ed92ced6c2
--- /dev/null
+++ b/src/plugins/debugger/cdb/cdboptionspage.h
@@ -0,0 +1,95 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Qt Software Information (qt-info@nokia.com)
+**
+** Commercial Usage
+**
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Nokia.
+**
+** GNU Lesser General Public License Usage
+**
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at qt-sales@nokia.com.
+**
+**************************************************************************/
+
+#ifndef CDBSETTINGSPAGE_H
+#define CDBSETTINGSPAGE_H
+
+#include <coreplugin/dialogs/ioptionspage.h>
+#include "ui_cdboptionspagewidget.h"
+
+#include <QtGui/QWidget>
+#include <QtCore/QPointer>
+#include <QtCore/QSharedPointer>
+
+namespace Debugger {
+namespace Internal {
+
+struct CdbOptions;
+
+class CdbOptionsPageWidget : public QWidget
+{
+ Q_OBJECT
+public:
+ explicit CdbOptionsPageWidget(QWidget *parent);
+
+ void setOptions(CdbOptions &o);
+ CdbOptions options() const;
+
+ void setFailureMessage(const QString &);
+
+private slots:
+ void autoDetect();
+
+private:
+ Ui::CdbOptionsPageWidget m_ui;
+};
+
+class CdbOptionsPage : public Core::IOptionsPage
+{
+ Q_DISABLE_COPY(CdbOptionsPage)
+ Q_OBJECT
+public:
+ explicit CdbOptionsPage(const QSharedPointer<CdbOptions> &options);
+ virtual ~CdbOptionsPage();
+
+ // IOptionsPage
+ virtual QString id() const { return settingsId(); }
+ virtual QString trName() const;
+ virtual QString category() const;
+ virtual QString trCategory() const;
+
+ virtual QWidget *createPage(QWidget *parent);
+ virtual void apply();
+ virtual void finish();
+
+ static QString settingsId();
+
+ // Load failure messages can be displayed here
+ void setFailureMessage(const QString &msg) { m_failureMessage = msg; }
+
+private:
+ const QSharedPointer<CdbOptions> m_options;
+ QPointer<CdbOptionsPageWidget> m_widget;
+ QString m_failureMessage;
+};
+
+} // namespace Internal
+} // namespace Debugger
+
+#endif // CDBSETTINGSPAGE_H