OSDN Git Service

9b020a16473f7ca43a90f4012c6da93f726674e3
[qt-creator-jp/qt-creator-jp.git] / src / plugins / cpptools / cpptoolseditorsupport.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 CPPTOOLSEDITORSUPPORT_H
35 #define CPPTOOLSEDITORSUPPORT_H
36
37 #include <QtCore/QObject>
38 #include <QtCore/QPointer>
39 #include <QtCore/QFuture>
40 #include <QtCore/QSharedPointer>
41
42 #include <QtGui/QTextCursor>
43
44 #include <cplusplus/CppDocument.h>
45
46 QT_BEGIN_NAMESPACE
47 class QTimer;
48 QT_END_NAMESPACE
49
50 namespace CPlusPlus {
51     class AST;
52 }
53
54 namespace TextEditor {
55     class ITextEditor;
56     class ITextMark;
57 } // namespace TextEditor
58
59 namespace CppTools {
60 namespace Internal {
61
62 class CppModelManager;
63
64 class CppEditorSupport: public QObject
65 {
66     Q_OBJECT
67
68 public:
69     CppEditorSupport(CppModelManager *modelManager);
70     virtual ~CppEditorSupport();
71
72     TextEditor::ITextEditor *textEditor() const;
73     void setTextEditor(TextEditor::ITextEditor *textEditor);
74
75     int updateDocumentInterval() const;
76     void setUpdateDocumentInterval(int updateDocumentInterval);
77
78     QString contents();
79     unsigned editorRevision() const;
80
81 Q_SIGNALS:
82     void contentsChanged();
83
84 private Q_SLOTS:
85     void updateDocument();
86     void updateDocumentNow();
87
88 private:
89     enum { UPDATE_DOCUMENT_DEFAULT_INTERVAL = 150 };
90
91     CppModelManager *_modelManager;
92     QPointer<TextEditor::ITextEditor> _textEditor;
93     QTimer *_updateDocumentTimer;
94     int _updateDocumentInterval;
95     QFuture<void> _documentParser;
96     QString _cachedContents;
97     unsigned _revision;
98 };
99
100 } // namespace Internal
101 } // namespace CppTools
102
103 #endif // CPPTOOLSEDITORSUPPORT_H