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

238 lines
7.8 KiB
C
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** 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.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
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 "marginsettings.h"
2009-12-08 17:43:01 +01:00
#include "fontsettings.h"
#include "refactoroverlay.h"
2009-12-08 17:43:01 +01:00
#include <coreplugin/id.h>
#include <utils/changeset.h>
2008-12-02 12:01:29 +01:00
#include <QBasicTimer>
#include <QSharedPointer>
#include <QPointer>
#include <QScopedPointer>
#include <QTextBlock>
#include <QTimer>
2008-12-02 12:01:29 +01:00
namespace TextEditor {
class BaseTextDocument;
class CodeAssistant;
2008-12-02 12:01:29 +01:00
namespace Internal {
class TextEditorOverlay;
class ClipboardAssistProvider;
2008-12-02 12:01:29 +01:00
class TEXTEDITOR_EXPORT BaseTextBlockSelection
{
public:
bool isValid() const{ return !firstBlock.isNull() && !lastBlock.isNull(); }
void clear() { firstBlock = lastBlock = QTextCursor(); }
QTextCursor firstBlock; // defines the first block
QTextCursor lastBlock; // defines the last block
int firstVisualColumn; // defines the first visual column of the selection
int lastVisualColumn; // defines the last visual column of the selection
enum Anchor {TopLeft = 0, TopRight, BottomLeft, BottomRight} anchor;
BaseTextBlockSelection():firstVisualColumn(0), lastVisualColumn(0), anchor(BottomRight){}
void moveAnchor(int blockNumber, int visualColumn);
inline int anchorColumnNumber() const { return (anchor % 2) ? lastVisualColumn : firstVisualColumn; }
inline int anchorBlockNumber() const {
return (anchor <= TopRight ? firstBlock.blockNumber() : lastBlock.blockNumber()); }
QTextCursor selection(const TabSettings &ts) const;
void fromSelection(const TabSettings &ts, const QTextCursor &selection);
};
2008-12-02 12:01:29 +01:00
//================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); }
};
class BaseTextEditorWidgetPrivate
2008-12-02 12:01:29 +01:00
{
BaseTextEditorWidgetPrivate(const BaseTextEditorWidgetPrivate &);
BaseTextEditorWidgetPrivate &operator=(const BaseTextEditorWidgetPrivate &);
2008-12-02 12:01:29 +01:00
public:
BaseTextEditorWidgetPrivate();
~BaseTextEditorWidgetPrivate();
2008-12-02 12:01:29 +01:00
void setupDocumentSignals();
2008-12-02 12:01:29 +01:00
void updateLineSelectionColor();
void print(QPrinter *printer);
QTextBlock m_firstVisible;
int m_lastScrollPos;
int m_lineNumber;
BaseTextEditorWidget *q;
2008-12-02 12:01:29 +01:00
bool m_contentsChanged;
bool m_lastCursorChangeWasInteresting;
2008-12-02 12:01:29 +01:00
QList<QTextEdit::ExtraSelection> m_syntaxHighlighterSelections;
QTextEdit::ExtraSelection m_lineSelection;
QSharedPointer<BaseTextDocument> m_document;
2008-12-02 12:01:29 +01:00
QByteArray m_tempState;
QByteArray m_tempNavigationState;
2008-12-02 12:01:29 +01:00
bool m_parenthesesMatchingEnabled;
QTimer *m_updateTimer;
// parentheses matcher
bool m_formatRange;
QTextCharFormat m_matchFormat;
QTextCharFormat m_mismatchFormat;
QTimer m_parenthesesMatchingTimer;
2008-12-02 12:01:29 +01:00
// end parentheses matcher
QWidget *m_extraArea;
Core::Id m_tabSettingsId;
ICodeStylePreferences *m_codeStylePreferences;
2008-12-02 12:01:29 +01:00
DisplaySettings m_displaySettings;
MarginSettings m_marginSettings;
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;
bool 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;
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;
uint autoParenthesisOverwriteBackup : 1;
uint surroundWithEnabledOverwriteBackup : 1;
uint m_maybeFakeTooltipEvent : 1;
2008-12-02 12:01:29 +01:00
int m_visibleWrapColumn;
QTextCharFormat m_linkFormat;
BaseTextEditorWidget::Link m_currentLink;
bool m_linkPressed;
2008-12-02 12:01:29 +01:00
QTextCharFormat m_ifdefedOutFormat;
QRegExp m_searchExpr;
Core::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
BaseTextEditor *m_editor;
2008-12-02 12:01:29 +01:00
QList<QTextEdit::ExtraSelection> m_extraSelections[BaseTextEditorWidget::NExtraSelectionKinds];
2008-12-02 12:01:29 +01:00
// block selection mode
bool m_inBlockSelectionMode;
void clearBlockSelection();
QString copyBlockSelection();
void removeBlockSelection(const QString &text = QString());
bool m_moveLineUndoHack;
QTextCursor m_findScopeStart;
QTextCursor m_findScopeEnd;
int m_findScopeVerticalBlockSelectionFirstColumn;
int m_findScopeVerticalBlockSelectionLastColumn;
QTextCursor m_selectBlockAnchor;
2008-12-02 12:01:29 +01:00
Internal::BaseTextBlockSelection m_blockSelection;
void moveCursorVisible(bool ensureVisible = true);
int visualIndent(const QTextBlock &block) const;
BaseTextEditorPrivateHighlightBlocks m_highlightBlocksInfo;
QTimer m_highlightBlocksTimer;
QScopedPointer<CodeAssistant> m_codeAssistant;
bool m_assistRelevantContentAdded;
2010-07-19 14:06:00 +02:00
QPointer<BaseTextEditorAnimator> m_animator;
int m_cursorBlockNumber;
QPoint m_markDragStart;
bool m_markDragging;
QScopedPointer<AutoCompleter> m_autoCompleter;
QScopedPointer<Internal::ClipboardAssistProvider> m_clipboardAssistProvider;
2008-12-02 12:01:29 +01:00
};
} // namespace Internal
} // namespace TextEditor
#endif // BASETEXTEDITOR_P_H