2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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
|
|
|
**
|
2009-02-25 09:15:00 +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"
|
2009-11-25 15:55:45 +01:00
|
|
|
#include "texteditoroverlay.h"
|
2009-06-17 19:12:19 +02:00
|
|
|
#include <texteditor/fontsettings.h>
|
2009-11-26 12:19:58 +01:00
|
|
|
#include <utils/changeset.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include <QtCore/QBasicTimer>
|
|
|
|
|
#include <QtCore/QSharedData>
|
2009-04-28 18:34:58 +02:00
|
|
|
#include <QtCore/QPointer>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include <QtGui/QTextEdit>
|
|
|
|
|
#include <QtGui/QPixmap>
|
|
|
|
|
|
|
|
|
|
namespace TextEditor {
|
|
|
|
|
|
|
|
|
|
class BaseTextDocument;
|
|
|
|
|
|
|
|
|
|
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==============
|
|
|
|
|
|
2009-04-23 17:28:53 +02:00
|
|
|
struct BaseTextEditorPrivateHighlightBlocks
|
|
|
|
|
{
|
|
|
|
|
QList<int> open;
|
|
|
|
|
QList<int> close;
|
|
|
|
|
QList<int> visualIndent;
|
2009-04-28 11:43:13 +02:00
|
|
|
inline int count() const { return visualIndent.size(); }
|
2009-04-24 16:44:48 +02:00
|
|
|
inline bool isEmpty() const { return open.isEmpty() || close.isEmpty() || visualIndent.isEmpty(); }
|
2009-04-23 17:28:53 +02:00
|
|
|
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); }
|
|
|
|
|
};
|
|
|
|
|
|
2009-04-28 18:34:58 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
class BaseTextEditorPrivate
|
|
|
|
|
{
|
|
|
|
|
BaseTextEditorPrivate(const BaseTextEditorPrivate &);
|
|
|
|
|
BaseTextEditorPrivate &operator=(const BaseTextEditorPrivate &);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
BaseTextEditorPrivate();
|
|
|
|
|
~BaseTextEditorPrivate();
|
|
|
|
|
|
|
|
|
|
#ifndef TEXTEDITOR_STANDALONE
|
|
|
|
|
void setupBasicEditActions(TextEditorActionHandler *actionHandler);
|
|
|
|
|
#endif
|
|
|
|
|
void setupDocumentSignals(BaseTextDocument *document);
|
|
|
|
|
void updateLineSelectionColor();
|
|
|
|
|
|
|
|
|
|
void print(QPrinter *printer);
|
|
|
|
|
|
|
|
|
|
QTextBlock m_firstVisible;
|
|
|
|
|
int m_lastScrollPos;
|
|
|
|
|
int m_lineNumber;
|
|
|
|
|
|
|
|
|
|
BaseTextEditor *q;
|
|
|
|
|
bool m_contentsChanged;
|
2009-03-19 14:18:26 +01:00
|
|
|
bool m_lastCursorChangeWasInteresting;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QList<QTextEdit::ExtraSelection> m_syntaxHighlighterSelections;
|
|
|
|
|
QTextEdit::ExtraSelection m_lineSelection;
|
|
|
|
|
|
|
|
|
|
QRefCountPointer<BaseTextDocument> m_document;
|
|
|
|
|
QByteArray m_tempState;
|
2009-04-02 17:56:20 +02:00
|
|
|
QByteArray m_tempNavigationState;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QString m_displayName;
|
|
|
|
|
bool m_parenthesesMatchingEnabled;
|
2009-09-15 17:15:11 +02:00
|
|
|
bool m_autoParenthesesEnabled;
|
2008-12-02 12:01:29 +01:00
|
|
|
QTimer *m_updateTimer;
|
|
|
|
|
|
2009-11-26 12:19:58 +01:00
|
|
|
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;
|
|
|
|
|
DisplaySettings m_displaySettings;
|
2009-06-17 19:12:19 +02:00
|
|
|
TextEditor::FontSettings m_fontSettings;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
int extraAreaSelectionAnchorBlockNumber;
|
|
|
|
|
int extraAreaToggleMarkBlockNumber;
|
|
|
|
|
int extraAreaHighlightCollapseBlockNumber;
|
2009-04-24 16:44:48 +02:00
|
|
|
int extraAreaHighlightCollapseColumn;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-11-25 15:55:45 +01:00
|
|
|
TextEditorOverlay *m_overlay;
|
|
|
|
|
TextEditorOverlay *m_searchResultOverlay;
|
2009-12-01 14:47:10 +01:00
|
|
|
TextEditorOverlay *m_searchResultUnderlay;
|
2009-11-25 15:55:45 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QBasicTimer collapsedBlockTimer;
|
|
|
|
|
int visibleCollapsedBlockNumber;
|
|
|
|
|
int suggestedVisibleCollapsedBlockNumber;
|
|
|
|
|
void clearVisibleCollapsedBlock();
|
2009-03-25 11:38:54 +01:00
|
|
|
bool m_mouseOnCollapsedMarker;
|
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;
|
2009-03-16 17:23:50 +01:00
|
|
|
uint m_codeFoldingSupported : 1;
|
2009-09-08 13:03:24 +02:00
|
|
|
uint m_mouseNavigationEnabled : 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;
|
|
|
|
|
|
2009-09-08 13:03:24 +02:00
|
|
|
QTextCharFormat m_linkFormat;
|
2009-11-03 14:29:49 +01:00
|
|
|
BaseTextEditor::Link m_currentLink;
|
|
|
|
|
bool m_linkPressed;
|
2009-09-08 13:03:24 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QTextCharFormat m_ifdefedOutFormat;
|
|
|
|
|
|
|
|
|
|
QRegExp m_searchExpr;
|
2009-05-29 16:12:19 +02:00
|
|
|
Find::IFindSupport::FindFlags m_findFlags;
|
2008-12-02 12:01:29 +01:00
|
|
|
QTextCharFormat m_searchResultFormat;
|
|
|
|
|
QTextCharFormat m_searchScopeFormat;
|
|
|
|
|
QTextCharFormat m_currentLineFormat;
|
2009-04-27 14:10:54 +02:00
|
|
|
QTextCharFormat m_currentLineNumberFormat;
|
2009-12-01 14:47:10 +01:00
|
|
|
void highlightSearchResults(const QTextBlock &block,
|
|
|
|
|
TextEditorOverlay *overlay,
|
|
|
|
|
QVector<QTextLayout::FormatRange> *selections = 0);
|
|
|
|
|
QTimer *m_delayedUpdateTimer;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
BaseTextEditorEditable *m_editable;
|
|
|
|
|
|
|
|
|
|
QObject *m_actionHack;
|
|
|
|
|
|
2008-12-05 13:19:57 +01:00
|
|
|
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());
|
2009-04-23 19:24:57 +02:00
|
|
|
bool m_moveLineUndoHack;
|
2009-09-08 13:03:24 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QTextCursor m_findScope;
|
2008-12-04 19:25:20 +01:00
|
|
|
QTextCursor m_selectBlockAnchor;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-02-13 16:29:30 +01:00
|
|
|
void moveCursorVisible(bool ensureVisible = true);
|
2009-04-23 17:28:53 +02:00
|
|
|
|
|
|
|
|
int visualIndent(const QTextBlock &block) const;
|
|
|
|
|
BaseTextEditorPrivateHighlightBlocks m_highlightBlocksInfo;
|
|
|
|
|
QTimer *m_highlightBlocksTimer;
|
|
|
|
|
|
2009-04-28 18:34:58 +02:00
|
|
|
QPointer<BaseTextEditorAnimator> m_animator;
|
2009-12-01 15:55:55 +01:00
|
|
|
int m_cursorBlockNumber;
|
2009-04-28 18:34:58 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace TextEditor
|
|
|
|
|
|
|
|
|
|
#endif // BASETEXTEDITOR_P_H
|