OSDN Git Service

b1ad73a97d4195ea332ee27a680a8171beed0a70
[qt-creator-jp/qt-creator-jp.git] / src / plugins / debugger / shared / cdbsymbolpathlisteditor.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef SYMBOLPATHLISTEDITOR_H
35 #define SYMBOLPATHLISTEDITOR_H
36
37 #include <utils/pathlisteditor.h>
38
39 #include <QtGui/QDialog>
40
41 namespace Utils {
42     class PathChooser;
43 }
44
45 QT_BEGIN_NAMESPACE
46 class QDialogButtonBox;
47 QT_END_NAMESPACE
48
49 namespace Debugger {
50 namespace Internal {
51
52 // Internal helper dialog prompting for a cache directory
53 // using a PathChooser.
54 // Note that QFileDialog does not offer a way of suggesting
55 // a non-existent folder, which is in turn automatically
56 // created. This is done here (suggest $TEMP\symbolcache
57 // regardless of its existence).
58
59 class CacheDirectoryDialog    : public QDialog {
60     Q_OBJECT
61 public:
62    explicit CacheDirectoryDialog(QWidget *parent = 0);
63
64    void setPath(const QString &p);
65    QString path() const;
66
67    virtual void accept();
68
69 private:
70    Utils::PathChooser *m_chooser;
71    QDialogButtonBox *m_buttonBox;
72 };
73
74 class CdbSymbolPathListEditor : public Utils::PathListEditor
75 {
76     Q_OBJECT
77 public:
78     explicit CdbSymbolPathListEditor(QWidget *parent = 0);
79
80     static QString promptCacheDirectory(QWidget *parent);
81
82     // Pre- and Postfix used to build a symbol server path specification
83     static const char *symbolServerPrefixC;
84     static const char *symbolServerPostfixC;
85
86     // Format a symbol server specification with a local cache directory
87     static QString symbolServerPath(const QString &cacheDir);
88     // Check for a symbol server path and extract local cache directory
89     static bool isSymbolServerPath(const QString &path, QString *cacheDir = 0);
90     // Check for symbol server in list of paths.
91     static int indexOfSymbolServerPath(const QStringList &paths, QString *cacheDir = 0);
92
93     // Nag user to add a symbol server to the path list on debugger startup.
94     static bool promptToAddSymbolServer(const QString &settingsGroup, QStringList *symbolPaths);
95
96 private slots:
97     void addSymbolServer();
98 };
99
100 } // namespace Internal
101 } // namespace Debugger
102
103 #endif // SYMBOLPATHLISTEDITOR_H