OSDN Git Service

b1c9f693b78e9dd2db76fd1709bc9fe8404b6326
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / profileeditor.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 PROFILEEDITOR_H
35 #define PROFILEEDITOR_H
36
37 #include <texteditor/basetextdocument.h>
38 #include <texteditor/basetexteditor.h>
39 #include <utils/uncommentselection.h>
40
41 namespace TextEditor {
42 class FontSettings;
43 class TextEditorActionHandler;
44 }
45
46 namespace Qt4ProjectManager {
47
48 class Qt4Manager;
49 class Qt4Project;
50
51 namespace Internal {
52
53 class ProFileEditorFactory;
54 class ProFileHighlighter;
55
56 class ProFileEditorWidget;
57
58 class ProFileEditor : public TextEditor::BaseTextEditor
59 {
60     Q_OBJECT
61
62 public:
63     ProFileEditor(ProFileEditorWidget *);
64     Core::Context context() const;
65
66     bool duplicateSupported() const { return true; }
67     Core::IEditor *duplicate(QWidget *parent);
68     QString id() const;
69     bool isTemporary() const { return false; }
70 private:
71     const Core::Context m_context;
72 };
73
74 class ProFileEditorWidget : public TextEditor::BaseTextEditorWidget
75 {
76     Q_OBJECT
77
78 public:
79     ProFileEditorWidget(QWidget *parent, ProFileEditorFactory *factory,
80                   TextEditor::TextEditorActionHandler *ah);
81     ~ProFileEditorWidget();
82
83     bool save(const QString &fileName = QString());
84
85
86     ProFileEditorFactory *factory() { return m_factory; }
87     TextEditor::TextEditorActionHandler *actionHandler() const { return m_ah; }
88
89     void unCommentSelection();
90 protected:
91     virtual Link findLinkAt(const QTextCursor &, bool resolveTarget = true);
92     TextEditor::BaseTextEditor *createEditor();
93     void contextMenuEvent(QContextMenuEvent *);
94
95 public slots:
96     virtual void setFontSettings(const TextEditor::FontSettings &);
97     void addLibrary();
98     void jumpToFile();
99
100 private:
101     ProFileEditorFactory *m_factory;
102     TextEditor::TextEditorActionHandler *m_ah;
103     Utils::CommentDefinition m_commentDefinition;
104 };
105
106 class ProFileDocument : public TextEditor::BaseTextDocument
107 {
108     Q_OBJECT
109
110 public:
111     ProFileDocument();
112     QString defaultPath() const;
113     QString suggestedFileName() const;
114 };
115
116 } // namespace Internal
117 } // namespace Qt4ProjectManager
118
119 #endif // PROFILEEDITOR_H