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

626 lines
18 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2011-01-11 16:28:15 +01:00
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
2011-04-13 08:42:33 +02:00
** Contact: Nokia Corporation (info@qt.nokia.com)
2008-12-02 12:01:29 +01:00
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** 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.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2010-12-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at info@qt.nokia.com.
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_H
#define BASETEXTEDITOR_H
#include "itexteditor.h"
#include "icompletioncollector.h"
2008-12-02 12:01:29 +01:00
#include <find/ifindsupport.h>
#include <coreplugin/editormanager/editormanager.h>
2008-12-02 12:01:29 +01:00
#include <QtGui/QPlainTextEdit>
QT_BEGIN_NAMESPACE
class QToolBar;
class QTimeLine;
2008-12-02 12:01:29 +01:00
QT_END_NAMESPACE
namespace Utils {
class LineColumnLabel;
class ChangeSet;
2008-12-02 12:01:29 +01:00
}
namespace TextEditor {
class TabSettings;
class RefactorOverlay;
struct RefactorMarker;
2008-12-02 12:01:29 +01:00
namespace Internal {
class BaseTextEditorPrivate;
class TextEditorOverlay;
typedef QList<RefactorMarker> RefactorMarkers;
typedef QString (QString::*TransformationMethod)() const;
2008-12-02 12:01:29 +01:00
}
class ITextMarkable;
class BaseTextDocument;
class BaseTextEditor;
2008-12-02 12:01:29 +01:00
class FontSettings;
class BehaviorSettings;
class CompletionSettings;
class DisplaySettings;
class StorageSettings;
class Indenter;
class AutoCompleter;
class ExtraEncodingSettings;
2008-12-02 12:01:29 +01:00
class TEXTEDITOR_EXPORT BaseTextEditorAnimator : public QObject
{
Q_OBJECT
public:
BaseTextEditorAnimator(QObject *parent);
inline void setPosition(int position) { m_position = position; }
inline int position() const { return m_position; }
void setData(QFont f, QPalette pal, const QString &text);
void draw(QPainter *p, const QPointF &pos);
QRectF rect() const;
inline qreal value() const { return m_value; }
inline QPointF lastDrawPos() const { return m_lastDrawPos; }
void finish();
2009-04-28 19:02:58 +02:00
bool isRunning() const;
signals:
void updateRequest(int position, QPointF lastPos, QRectF rect);
private slots:
void step(qreal v);
private:
QTimeLine *m_timeline;
qreal m_value;
int m_position;
QPointF m_lastDrawPos;
QFont m_font;
QPalette m_palette;
QString m_text;
QSizeF m_size;
};
class TEXTEDITOR_EXPORT BaseTextEditorWidget : public QPlainTextEdit
2008-12-02 12:01:29 +01:00
{
Q_OBJECT
Q_PROPERTY(int verticalBlockSelectionFirstColumn READ verticalBlockSelectionFirstColumn)
Q_PROPERTY(int verticalBlockSelectionLastColumn READ verticalBlockSelectionLastColumn)
2008-12-02 12:01:29 +01:00
public:
BaseTextEditorWidget(QWidget *parent);
~BaseTextEditorWidget();
2008-12-02 12:01:29 +01:00
static ITextEditor *openEditorAt(const QString &fileName, int line, int column = 0,
const QString &editorId = QString(),
Core::EditorManager::OpenEditorFlags flags = Core::EditorManager::IgnoreNavigationHistory,
bool *newEditor = 0);
2008-12-02 12:01:29 +01:00
const Utils::ChangeSet &changeSet() const;
void setChangeSet(const Utils::ChangeSet &changeSet);
2008-12-02 12:01:29 +01:00
// EditorInterface
Core::IFile * file();
bool createNew(const QString &contents);
virtual bool open(QString *errorString, const QString &fileName = QString());
2008-12-02 12:01:29 +01:00
QByteArray saveState() const;
bool restoreState(const QByteArray &state);
QString displayName() const;
// ITextEditor
void gotoLine(int line, int column = 0);
2008-12-02 12:01:29 +01:00
int position(
ITextEditor::PositionOperation posOp = ITextEditor::Current
, int at = -1) const;
void convertPosition(int pos, int *line, int *column) const;
BaseTextEditor *editor() const;
2008-12-02 12:01:29 +01:00
ITextMarkable *markableInterface() const;
QChar characterAt(int pos) const;
void print(QPrinter *);
void setSuggestedFileName(const QString &suggestedFileName);
QString mimeType() const;
virtual void setMimeType(const QString &mt);
2008-12-02 12:01:29 +01:00
void appendStandardContextMenuActions(QMenu *menu);
2008-12-02 12:01:29 +01:00
// Works only in conjunction with a syntax highlighter that puts
// parentheses into text block user data
void setParenthesesMatchingEnabled(bool b);
bool isParenthesesMatchingEnabled() const;
void setHighlightCurrentLine(bool b);
bool highlightCurrentLine() const;
void setLineNumbersVisible(bool b);
bool lineNumbersVisible() const;
void setMarksVisible(bool b);
bool marksVisible() const;
void setRequestMarkEnabled(bool b);
bool requestMarkEnabled() const;
void setLineSeparatorsAllowed(bool b);
bool lineSeparatorsAllowed() const;
void updateCodeFoldingVisible();
2008-12-02 12:01:29 +01:00
bool codeFoldingVisible() const;
void setCodeFoldingSupported(bool b);
bool codeFoldingSupported() const;
void setMouseNavigationEnabled(bool b);
bool mouseNavigationEnabled() const;
void setScrollWheelZoomingEnabled(bool b);
bool scrollWheelZoomingEnabled() const;
2008-12-02 12:01:29 +01:00
void setRevisionsVisible(bool b);
bool revisionsVisible() const;
void setVisibleWrapColumn(int column);
int visibleWrapColumn() const;
int columnCount() const;
int rowCount() const;
2008-12-02 12:01:29 +01:00
void setActionHack(QObject *);
QObject *actionHack() const;
void setTextCodec(QTextCodec *codec);
QTextCodec *textCodec() const;
void setReadOnly(bool b);
void setTextCursor(const QTextCursor &cursor);
void insertCodeSnippet(const QTextCursor &cursor, const QString &snippet);
void setBlockSelection(bool on);
bool hasBlockSelection() const;
int verticalBlockSelectionFirstColumn() const;
int verticalBlockSelectionLastColumn() const;
QRegion translatedLineRegion(int lineStart, int lineEnd) const;
void setIndenter(Indenter *indenter);
Indenter *indenter() const;
void setAutoCompleter(AutoCompleter *autoCompleter);
AutoCompleter *autoCompleter() const;
QPoint toolTipPosition(const QTextCursor &c) const;
2008-12-02 12:01:29 +01:00
public slots:
void setDisplayName(const QString &title);
virtual void paste();
virtual void cut();
2008-12-02 12:01:29 +01:00
void zoomIn(int range = 1);
void zoomOut(int range = 1);
void zoomReset();
2008-12-02 12:01:29 +01:00
void cutLine();
void copyLine();
2008-12-02 12:01:29 +01:00
void deleteLine();
void unfoldAll();
void fold();
void unfold();
2008-12-02 12:01:29 +01:00
void selectEncoding();
void gotoBlockStart();
void gotoBlockEnd();
void gotoBlockStartWithSelection();
void gotoBlockEndWithSelection();
void gotoLineStart();
void gotoLineStartWithSelection();
void gotoLineEnd();
void gotoLineEndWithSelection();
void gotoNextLine();
void gotoNextLineWithSelection();
void gotoPreviousLine();
void gotoPreviousLineWithSelection();
void gotoPreviousCharacter();
void gotoPreviousCharacterWithSelection();
void gotoNextCharacter();
void gotoNextCharacterWithSelection();
void gotoPreviousWord();
void gotoPreviousWordWithSelection();
void gotoNextWord();
void gotoNextWordWithSelection();
void gotoPreviousWordCamelCase();
void gotoPreviousWordCamelCaseWithSelection();
void gotoNextWordCamelCase();
void gotoNextWordCamelCaseWithSelection();
void selectBlockUp();
void selectBlockDown();
void moveLineUp();
void moveLineDown();
void copyLineUp();
void copyLineDown();
void joinLines();
void insertLineAbove();
void insertLineBelow();
void uppercaseSelection();
void lowercaseSelection();
void cleanWhitespace();
2008-12-02 12:01:29 +01:00
signals:
void changed();
// ITextEditor
void contentsChanged();
protected:
bool event(QEvent *e);
void keyPressEvent(QKeyEvent *e);
void wheelEvent(QWheelEvent *e);
void changeEvent(QEvent *e);
void focusInEvent(QFocusEvent *e);
void focusOutEvent(QFocusEvent *e);
2008-12-02 12:01:29 +01:00
2009-06-17 19:12:19 +02:00
void showEvent(QShowEvent *);
2008-12-02 12:01:29 +01:00
// reimplemented to support block selection
QMimeData *createMimeDataFromSelection() const;
bool canInsertFromMimeData(const QMimeData *source) const;
void insertFromMimeData(const QMimeData *source);
static QString msgTextTooLarge(quint64 size);
private:
void maybeSelectLine();
2008-12-02 12:01:29 +01:00
public:
void duplicateFrom(BaseTextEditorWidget *editor);
2008-12-02 12:01:29 +01:00
protected:
BaseTextDocument *baseTextDocument() const;
void setBaseTextDocument(BaseTextDocument *doc);
void setDefaultPath(const QString &defaultPath);
virtual BaseTextEditor *createEditor() = 0;
2008-12-02 12:01:29 +01:00
private slots:
void editorContentsChange(int position, int charsRemoved, int charsAdded);
void documentAboutToBeReloaded();
void documentReloaded();
void highlightSearchResults(const QString &txt, Find::FindFlags findFlags);
void setFindScope(const QTextCursor &start, const QTextCursor &end, int, int);
bool inFindScope(const QTextCursor &cursor);
bool inFindScope(int selectionStart, int selectionEnd);
2008-12-02 12:01:29 +01:00
void currentEditorChanged(Core::IEditor *editor);
void inSnippetMode(bool *active);
2008-12-02 12:01:29 +01:00
private:
Internal::BaseTextEditorPrivate *d;
friend class Internal::BaseTextEditorPrivate;
friend class Internal::TextEditorOverlay;
friend class RefactorOverlay;
2008-12-02 12:01:29 +01:00
public:
QWidget *extraArea() const;
virtual int extraAreaWidth(int *markWidthPtr = 0) const;
virtual void extraAreaPaintEvent(QPaintEvent *);
virtual void extraAreaLeaveEvent(QEvent *);
virtual void extraAreaMouseEvent(QMouseEvent *);
2008-12-02 12:01:29 +01:00
const TabSettings &tabSettings() const;
const DisplaySettings &displaySettings() const;
void markBlocksAsChanged(QList<int> blockNumbers);
void ensureCursorVisible();
enum ExtraSelectionKind {
CurrentLineSelection,
ParenthesesMatchingSelection,
CodeWarningsSelection,
CodeSemanticsSelection,
UndefinedSymbolSelection,
2009-11-30 15:21:16 +01:00
UnusedSymbolSelection,
2009-01-13 13:08:21 +01:00
FakeVimSelection,
2009-11-30 15:21:16 +01:00
OtherSelection,
SnippetPlaceholderSelection,
ObjCSelection,
NExtraSelectionKinds
};
void setExtraSelections(ExtraSelectionKind kind, const QList<QTextEdit::ExtraSelection> &selections);
QList<QTextEdit::ExtraSelection> extraSelections(ExtraSelectionKind kind) const;
QString extraSelectionTooltip(int pos) const;
2008-12-02 12:01:29 +01:00
void setRefactorMarkers(const Internal::RefactorMarkers &markers);
signals:
void refactorMarkerClicked(const TextEditor::RefactorMarker &marker);
public:
struct BlockRange
{
BlockRange() : first(0), last(-1) {}
BlockRange(int first_position, int last_position)
: first(first_position), last(last_position)
{}
2008-12-02 12:01:29 +01:00
int first;
int last;
inline bool isNull() const { return last < first; }
};
// the blocks list must be sorted
void setIfdefedOutBlocks(const QList<BlockRange> &blocks);
2008-12-02 12:01:29 +01:00
public slots:
virtual void format();
virtual void rewrapParagraph();
virtual void unCommentSelection();
virtual void setFontSettings(const TextEditor::FontSettings &);
2009-06-17 19:12:19 +02:00
void setFontSettingsIfVisible(const TextEditor::FontSettings &);
2008-12-02 12:01:29 +01:00
virtual void setTabSettings(const TextEditor::TabSettings &);
virtual void setDisplaySettings(const TextEditor::DisplaySettings &);
virtual void setBehaviorSettings(const TextEditor::BehaviorSettings &);
virtual void setStorageSettings(const TextEditor::StorageSettings &);
virtual void setCompletionSettings(const TextEditor::CompletionSettings &);
virtual void setExtraEncodingSettings(const TextEditor::ExtraEncodingSettings &);
2008-12-02 12:01:29 +01:00
protected:
bool viewportEvent(QEvent *event);
void resizeEvent(QResizeEvent *);
void paintEvent(QPaintEvent *);
void timerEvent(QTimerEvent *);
void mouseMoveEvent(QMouseEvent *);
void mousePressEvent(QMouseEvent *);
void mouseReleaseEvent(QMouseEvent *);
void leaveEvent(QEvent *);
void keyReleaseEvent(QKeyEvent *);
2008-12-02 12:01:29 +01:00
void dragEnterEvent(QDragEnterEvent *e);
public:
void indentInsertedText(const QTextCursor &tc);
void indent(QTextDocument *doc, const QTextCursor &cursor, QChar typedChar);
void reindent(QTextDocument *doc, const QTextCursor &cursor);
2008-12-02 12:01:29 +01:00
struct Link
{
Link(const QString &fileName = QString(),
int line = 0,
int column = 0)
: begin(-1)
, end(-1)
, fileName(fileName)
, line(line)
, column(column)
{}
bool isValid() const
{ return begin != end; }
bool operator==(const Link &other) const
{ return begin == other.begin && end == other.end; }
int begin; // Link position
int end; // Link end position
QString fileName; // Target file
int line; // Target line
int column; // Target column
};
protected:
/*!
Reimplement this function to enable code navigation.
\a resolveTarget is set to true when the target of the link is relevant
(it isn't until the link is used).
*/
virtual Link findLinkAt(const QTextCursor &, bool resolveTarget = true);
/*!
Reimplement this function if you want to customize the way a link is
2010-01-11 10:22:55 +01:00
opened. Returns whether the link was opened successfully.
*/
virtual bool openLink(const Link &link);
void maybeClearSomeExtraSelections(const QTextCursor &cursor);
2008-12-02 12:01:29 +01:00
protected slots:
virtual void slotUpdateExtraAreaWidth();
virtual void slotModificationChanged(bool);
virtual void slotUpdateRequest(const QRect &r, int dy);
virtual void slotCursorPositionChanged();
virtual void slotUpdateBlockNotify(const QTextBlock &);
signals:
void requestFontZoom(int zoom);
void requestZoomReset();
2008-12-02 12:01:29 +01:00
void requestBlockUpdate(const QTextBlock &);
private:
2010-07-19 14:06:00 +02:00
void maybeRequestAutoCompletion(const QChar &ch);
2008-12-02 12:01:29 +01:00
void indentOrUnindent(bool doIndent);
void handleHomeKey(bool anchor);
void handleBackspaceKey();
void moveLineUpDown(bool up);
void copyLineUpDown(bool up);
void saveCurrentCursorPositionForNavigation();
void updateHighlights();
void updateCurrentLineHighlight();
2008-12-02 12:01:29 +01:00
void drawFoldingMarker(QPainter *painter, const QPalette &pal,
const QRect &rect,
bool expanded,
bool active,
bool hovered) const;
void drawCollapsedBlockPopup(QPainter &painter,
const QTextBlock &block,
QPointF offset,
const QRect &clip);
2008-12-02 12:01:29 +01:00
void toggleBlockVisible(const QTextBlock &block);
QRect foldBox();
2008-12-02 12:01:29 +01:00
QTextBlock foldedBlockAt(const QPoint &pos, QRect *box = 0) const;
2008-12-02 12:01:29 +01:00
void updateLink(QMouseEvent *e);
void showLink(const Link &);
void clearLink();
2009-06-17 19:12:19 +02:00
void universalHelper(); // test function for development
bool cursorMoveKeyEvent(QKeyEvent *e);
bool camelCaseRight(QTextCursor &cursor, QTextCursor::MoveMode mode);
bool camelCaseLeft(QTextCursor &cursor, QTextCursor::MoveMode mode);
void transformSelection(Internal::TransformationMethod method);
2008-12-02 12:01:29 +01:00
private slots:
2010-07-19 14:06:00 +02:00
// auto completion
void _q_requestAutoCompletion();
void handleBlockSelection(int diff_row, int diff_col);
2010-07-19 14:06:00 +02:00
// parentheses matcher
2008-12-02 12:01:29 +01:00
void _q_matchParentheses();
void _q_highlightBlocks();
2008-12-02 12:01:29 +01:00
void slotSelectionChanged();
void _q_animateUpdate(int position, QPointF lastPos, QRectF rect);
void doFoo();
2008-12-02 12:01:29 +01:00
};
class TEXTEDITOR_EXPORT BaseTextEditor : public ITextEditor
2008-12-02 12:01:29 +01:00
{
Q_OBJECT
2008-12-02 12:01:29 +01:00
public:
BaseTextEditor(BaseTextEditorWidget *editorWidget);
~BaseTextEditor();
2008-12-02 12:01:29 +01:00
friend class BaseTextEditorWidget;
BaseTextEditorWidget *editorWidget() const { return e; }
2008-12-02 12:01:29 +01:00
// EditorInterface
//QWidget *widget() { return e; }
Core::IFile * file() { return e->file(); }
bool createNew(const QString &contents) { return e->createNew(contents); }
bool open(QString *errorString, const QString &fileName = QString()) { return e->open(errorString, fileName); }
QString displayName() const { return e->displayName(); }
void setDisplayName(const QString &title) { e->setDisplayName(title); emit changed(); }
2008-12-02 12:01:29 +01:00
QByteArray saveState() const { return e->saveState(); }
bool restoreState(const QByteArray &state) { return e->restoreState(state); }
QWidget *toolBar();
2008-12-02 12:01:29 +01:00
enum Side { Left, Right };
void insertExtraToolBarWidget(Side side, QWidget *widget);
2008-12-02 12:01:29 +01:00
// ITextEditor
int find(const QString &string) const;
int currentLine() const;
int currentColumn() const;
void gotoLine(int line, int column = 0) { e->gotoLine(line, column); }
int columnCount() const;
int rowCount() const;
2008-12-02 12:01:29 +01:00
int position(PositionOperation posOp = Current, int at = -1) const
{ return e->position(posOp, at); }
void convertPosition(int pos, int *line, int *column) const
{ e->convertPosition(pos, line, column); }
2008-12-02 12:01:29 +01:00
QRect cursorRect(int pos = -1) const;
QString contents() const;
QString selectedText() const;
QString textAt(int pos, int length) const;
inline QChar characterAt(int pos) const { return e->characterAt(pos); }
inline ITextMarkable *markableInterface() { return e->markableInterface(); }
void setContextHelpId(const QString &id) { m_contextHelpId = id; }
QString contextHelpId() const; // from IContext
inline void setTextCodec(QTextCodec *codec, TextCodecReason = TextCodecOtherReason) { e->setTextCodec(codec); }
2008-12-02 12:01:29 +01:00
inline QTextCodec *textCodec() const { return e->textCodec(); }
// ITextEditor
2008-12-02 12:01:29 +01:00
void remove(int length);
void insert(const QString &string);
void replace(int length, const QString &string);
void setCursorPosition(int pos);
2008-12-02 12:01:29 +01:00
void select(int toPos);
private slots:
void updateCursorPosition();
private:
BaseTextEditorWidget *e;
2008-12-02 12:01:29 +01:00
mutable QString m_contextHelpId;
QToolBar *m_toolBar;
QWidget *m_stretchWidget;
QAction *m_cursorPositionLabelAction;
Utils::LineColumnLabel *m_cursorPositionLabel;
2008-12-02 12:01:29 +01:00
};
} // namespace TextEditor
Q_DECLARE_METATYPE(TextEditor::BaseTextEditorWidget::Link)
2008-12-02 12:01:29 +01:00
#endif // BASETEXTEDITOR_H