summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-05-08 16:56:48 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-05-08 16:56:48 +0200
commitaa8548d37e545cb24908f3b96828b8b3e4e4f9ca (patch)
tree5ceb9c9a6326f24d93b56d68708aa22f93def863 /src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h
parentd971065b36babe1ffc6f621c416891ac9f4c44d3 (diff)
downloadqt-creator-aa8548d37e545cb24908f3b96828b8b3e4e4f9ca.tar.gz
Added Cdb Debugger path options (including symbol server).
Made pathlisteditor use a toolbutton menu as it looks too much of a "button desert" otherwise.
Diffstat (limited to 'src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h')
-rw-r--r--src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h b/src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h
new file mode 100644
index 0000000000..73b45d7db6
--- /dev/null
+++ b/src/plugins/debugger/cdb/cdbsymbolpathlisteditor.h
@@ -0,0 +1,51 @@
+/**************************************************************************
+**
+** 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 SYMBOLPATHLISTEDITOR_H
+#define SYMBOLPATHLISTEDITOR_H
+
+#include <utils/pathlisteditor.h>
+
+namespace Debugger {
+namespace Internal {
+
+class CdbSymbolPathListEditor : public Core::Utils::PathListEditor
+{
+ Q_OBJECT
+public:
+ explicit CdbSymbolPathListEditor(QWidget *parent = 0);
+
+private slots:
+ void addSymbolServer();
+};
+
+} // namespace Internal
+} // namespace Debugger
+
+#endif // SYMBOLPATHLISTEDITOR_H