diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-01-07 15:04:11 +0100 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-01-07 15:04:54 +0100 |
commit | 01d4c5a3d369f0648950fb2dd0022cfeec628cb3 (patch) | |
tree | 414481efe64c30c4d7d796b55fb9adc7c8ca39ff /src/plugins/debugger/cdb/cdboptionspage.h | |
parent | 20aeec7305fba9770ec6a3094da1994bf32542f1 (diff) | |
download | qt-creator-01d4c5a3d369f0648950fb2dd0022cfeec628cb3.tar.gz |
Debugger: R.I.P. old CDB engine.
Diffstat (limited to 'src/plugins/debugger/cdb/cdboptionspage.h')
-rw-r--r-- | src/plugins/debugger/cdb/cdboptionspage.h | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/src/plugins/debugger/cdb/cdboptionspage.h b/src/plugins/debugger/cdb/cdboptionspage.h deleted file mode 100644 index 027254cf4e..0000000000 --- a/src/plugins/debugger/cdb/cdboptionspage.h +++ /dev/null @@ -1,110 +0,0 @@ -/************************************************************************** -** -** This file is part of Qt Creator -** -** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). -** -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** No Commercial Usage -** -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** 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. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -**************************************************************************/ - -#ifndef CDBSETTINGSPAGE_H -#define CDBSETTINGSPAGE_H - -#include "cdboptions.h" - -#include <coreplugin/dialogs/ioptionspage.h> -#include "ui_cdboptionspagewidget.h" - -#include <QtGui/QWidget> -#include <QtCore/QPointer> -#include <QtCore/QSharedPointer> - -namespace Debugger { -namespace Internal { - -class CdbOptionsPageWidget : public QWidget -{ - Q_OBJECT -public: - explicit CdbOptionsPageWidget(QWidget *parent); - - void setOptions(CdbOptions &o); - CdbOptions options() const; - - void setFailureMessage(const QString &); - - QString searchKeywords() const; - -private slots: - void autoDetect(); - void downLoadLinkActivated(const QString &); - -private: - Ui::CdbOptionsPageWidget m_ui; -}; - -class CdbOptionsPage : public Core::IOptionsPage -{ - Q_DISABLE_COPY(CdbOptionsPage) - Q_OBJECT -public: - explicit CdbOptionsPage(); - virtual ~CdbOptionsPage(); - - // IOptionsPage - virtual QString id() const { return settingsId(); } - virtual QString displayName() const; - virtual QString category() const; - virtual QString displayCategory() const; - QIcon categoryIcon() const; - - virtual QWidget *createPage(QWidget *parent); - virtual void apply(); - virtual void finish(); - virtual bool matches(const QString &) const; - - static QString settingsId(); - - // Load failure messages can be displayed here - void setFailureMessage(const QString &msg) { m_failureMessage = msg; } - QSharedPointer<CdbOptions> options() const { return m_options; } - -signals: - void debuggerPathsChanged(); - void optionsChanged(); - -private: - const QSharedPointer<CdbOptions> m_options; - QPointer<CdbOptionsPageWidget> m_widget; - QString m_failureMessage; - QString m_searchKeywords; -}; - -} // namespace Internal -} // namespace Debugger - -#endif // CDBSETTINGSPAGE_H |