Files
qt-creator/src/plugins/texteditor/basetexteditor_p.h

276 lines
8.2 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2010-03-05 11:25:49 +01:00
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** 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
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#ifndef BASETEXTEDITOR_P_H
#define BASETEXTEDITOR_P_H
#include "basetexteditor.h"
#include "behaviorsettings.h"
2009-12-08 17:43:01 +01:00
#include "displaysettings.h"
#include "texteditoroverlay.h"
2009-12-08 17:43:01 +01:00
#include "fontsettings.h"
#include "refactoroverlay.h"
2009-12-08 17:43:01 +01:00
#include <utils/changeset.h>
2008-12-02 12:01:29 +01:00
#include <QtCore/QBasicTimer>
#include <QtCore/QSharedData>
#include <QtCore/QPointer>
2008-12-02 12:01:29 +01:00
#include <QtGui/QPixmap>
#include <QtGui/QTextEdit>
2008-12-02 12:01:29 +01:00
namespace TextEditor {
class BaseTextDocument;
class TextEditorActionHandler;
2008-12-02 12:01:29 +01:00
namespace Internal {
//========== Pointers with reference count ==========
template <class T> class QRefCountData : public QSharedData
{
public:
QRefCountData(T *data) { m_data = data; }
~QRefCountData() { delete m_data; }
T *m_data;
};
/* MOSTLY COPIED FROM QSHAREDDATA(-POINTER) */
template <class T> class QRefCountPointer
{
public:
inline T &operator*() { return d ? *(d->m_data) : 0; }
inline const T &operator*() const { return d ? *(d->m_data) : 0; }
inline T *operator->() { return d ? d->m_data : 0; }
inline const T *operator->() const { return d ? d->m_data : 0; }
inline operator T *() { return d ? d->m_data : 0; }
inline operator const T *() const { return d ? d->m_data : 0; }
inline bool operator==(const QRefCountPointer<T> &other) const { return d == other.d; }
inline bool operator!=(const QRefCountPointer<T> &other) const { return d != other.d; }
inline QRefCountPointer() { d = 0; }
inline ~QRefCountPointer() { if (d && !d->ref.deref()) delete d; }
explicit QRefCountPointer(T *data) {
if (data) {
d = new QRefCountData<T>(data);
d->ref.ref();
}
else {
d = 0;
}
}
inline QRefCountPointer(const QRefCountPointer<T> &o) : d(o.d) { if (d) d->ref.ref(); }
inline QRefCountPointer<T> & operator=(const QRefCountPointer<T> &o) {
if (o.d != d) {
if (d && !d->ref.deref())
delete d;
//todo: atomic assign of pointers
d = o.d;
if (d)
d->ref.ref();
}
return *this;
}
inline QRefCountPointer &operator=(T *o) {
if (d == 0 || d->m_data != o) {
if (d && !d->ref.deref())
delete d;
d = new QRefCountData<T>(o);
if (d)
d->ref.ref();
}
return *this;
}
inline bool operator!() const { return !d; }
private:
QRefCountData<T> *d;
};
//================BaseTextEditorPrivate==============
struct BaseTextEditorPrivateHighlightBlocks
{
QList<int> open;
QList<int> close;
QList<int> visualIndent;
inline int count() const { return visualIndent.size(); }
inline bool isEmpty() const { return open.isEmpty() || close.isEmpty() || visualIndent.isEmpty(); }
inline bool operator==(const BaseTextEditorPrivateHighlightBlocks &o) const {
return (open == o.open && close == o.close && visualIndent == o.visualIndent);
}
inline bool operator!=(const BaseTextEditorPrivateHighlightBlocks &o) const { return !(*this == o); }
};
2008-12-02 12:01:29 +01:00
class BaseTextEditorPrivate
{
BaseTextEditorPrivate(const BaseTextEditorPrivate &);
BaseTextEditorPrivate &operator=(const BaseTextEditorPrivate &);
public:
BaseTextEditorPrivate();
~BaseTextEditorPrivate();
void setupBasicEditActions(TextEditorActionHandler *actionHandler);
void setupDocumentSignals(BaseTextDocument *document);
void updateLineSelectionColor();
void print(QPrinter *printer);
QTextBlock m_firstVisible;
int m_lastScrollPos;
int m_lineNumber;
BaseTextEditor *q;
bool m_contentsChanged;
bool m_lastCursorChangeWasInteresting;
bool m_allowSkippingOfBlockEnd;
2008-12-02 12:01:29 +01:00
QList<QTextEdit::ExtraSelection> m_syntaxHighlighterSelections;
QTextEdit::ExtraSelection m_lineSelection;
QRefCountPointer<BaseTextDocument> m_document;
QByteArray m_tempState;
QByteArray m_tempNavigationState;
2008-12-02 12:01:29 +01:00
QString m_displayName;
bool m_parenthesesMatchingEnabled;
bool m_autoParenthesesEnabled;
2008-12-02 12:01:29 +01:00
QTimer *m_updateTimer;
Utils::ChangeSet m_changeSet;
2008-12-02 12:01:29 +01:00
// parentheses matcher
bool m_formatRange;
QTextCharFormat m_matchFormat;
QTextCharFormat m_mismatchFormat;
QTextCharFormat m_rangeFormat;
QTimer *m_parenthesesMatchingTimer;
// end parentheses matcher
QWidget *m_extraArea;
2008-12-02 12:01:29 +01:00
DisplaySettings m_displaySettings;
FontSettings m_fontSettings;
BehaviorSettings m_behaviorSettings;
2008-12-02 12:01:29 +01:00
int extraAreaSelectionAnchorBlockNumber;
int extraAreaToggleMarkBlockNumber;
int extraAreaHighlightFoldedBlockNumber;
2008-12-02 12:01:29 +01:00
TextEditorOverlay *m_overlay;
TextEditorOverlay *m_snippetOverlay;
TextEditorOverlay *m_searchResultOverlay;
void snippetCheckCursor(const QTextCursor &cursor);
void snippetTabOrBacktab(bool forward);
QTextCharFormat m_occurrencesFormat;
QTextCharFormat m_occurrenceRenameFormat;
RefactorOverlay *m_refactorOverlay;
QBasicTimer foldedBlockTimer;
int visibleFoldedBlockNumber;
int suggestedVisibleFoldedBlockNumber;
void clearVisibleFoldedBlock();
bool m_mouseOnFoldedMarker;
void foldLicenseHeader();
2008-12-02 12:01:29 +01:00
QBasicTimer autoScrollTimer;
void updateMarksLineNumber();
void updateMarksBlock(const QTextBlock &block);
uint m_marksVisible : 1;
uint m_codeFoldingVisible : 1;
uint m_codeFoldingSupported : 1;
2008-12-02 12:01:29 +01:00
uint m_revisionsVisible : 1;
uint m_lineNumbersVisible : 1;
uint m_highlightCurrentLine : 1;
uint m_requestMarkEnabled : 1;
uint m_lineSeparatorsAllowed : 1;
int m_visibleWrapColumn;
QTextCharFormat m_linkFormat;
BaseTextEditor::Link m_currentLink;
bool m_linkPressed;
2008-12-02 12:01:29 +01:00
QTextCharFormat m_ifdefedOutFormat;
QRegExp m_searchExpr;
Find::FindFlags m_findFlags;
2008-12-02 12:01:29 +01:00
QTextCharFormat m_searchResultFormat;
QTextCharFormat m_searchScopeFormat;
QTextCharFormat m_currentLineFormat;
QTextCharFormat m_currentLineNumberFormat;
void highlightSearchResults(const QTextBlock &block, TextEditorOverlay *overlay);
QTimer *m_delayedUpdateTimer;
2008-12-02 12:01:29 +01:00
BaseTextEditorEditable *m_editable;
QObject *m_actionHack;
QList<QTextEdit::ExtraSelection> m_extraSelections[BaseTextEditor::NExtraSelectionKinds];
2008-12-02 12:01:29 +01:00
// block selection mode
bool m_inBlockSelectionMode;
bool m_lastEventWasBlockSelectionEvent;
int m_blockSelectionExtraX;
void clearBlockSelection();
QString copyBlockSelection();
void removeBlockSelection(const QString &text = QString());
bool m_moveLineUndoHack;
QTextCursor m_findScopeStart;
QTextCursor m_findScopeEnd;
int m_findScopeVerticalBlockSelection;
QTextCursor m_selectBlockAnchor;
2008-12-02 12:01:29 +01:00
void moveCursorVisible(bool ensureVisible = true);
int visualIndent(const QTextBlock &block) const;
BaseTextEditorPrivateHighlightBlocks m_highlightBlocksInfo;
QTimer *m_highlightBlocksTimer;
QPointer<BaseTextEditorAnimator> m_animator;
int m_cursorBlockNumber;
bool m_inKeyPressEvent;
2008-12-02 12:01:29 +01:00
};
} // namespace Internal
} // namespace TextEditor
#endif // BASETEXTEDITOR_P_H