2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02: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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02: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
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef BASETEXTEDITOR_H
|
|
|
|
|
#define BASETEXTEDITOR_H
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
#include "itexteditor.h"
|
2011-04-15 16:19:23 +02:00
|
|
|
#include "codeassist/assistenums.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-09-07 09:51:20 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2012-11-21 21:47:17 +02:00
|
|
|
#include <find/ifindsupport.h>
|
2010-09-07 09:51:20 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QPlainTextEdit>
|
2013-01-09 13:31:15 +08:00
|
|
|
#include <QSharedPointer>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QToolBar;
|
2009-10-01 16:38:08 +02:00
|
|
|
class QTimeLine;
|
2011-11-23 16:05:55 +01:00
|
|
|
class QPrinter;
|
2008-12-02 12:01:29 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2009-10-05 11:06:05 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
class LineColumnLabel;
|
2009-11-26 12:19:58 +01:00
|
|
|
class ChangeSet;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace TextEditor {
|
2010-08-13 12:53:36 +02:00
|
|
|
class TabSettings;
|
2010-11-01 16:29:45 +01:00
|
|
|
class RefactorOverlay;
|
|
|
|
|
struct RefactorMarker;
|
2011-04-15 16:19:23 +02:00
|
|
|
class IAssistMonitorInterface;
|
|
|
|
|
class IAssistInterface;
|
|
|
|
|
class IAssistProvider;
|
2011-08-16 10:45:23 +02:00
|
|
|
class ICodeStylePreferences;
|
2013-01-11 16:42:42 +01:00
|
|
|
typedef QList<RefactorMarker> RefactorMarkers;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
namespace Internal {
|
2012-02-16 13:50:02 +01:00
|
|
|
class BaseTextEditorWidgetPrivate;
|
2009-11-25 15:55:45 +01:00
|
|
|
class TextEditorOverlay;
|
2011-02-25 11:10:42 +01:00
|
|
|
typedef QString (QString::*TransformationMethod)() const;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ITextMarkable;
|
|
|
|
|
|
|
|
|
|
class BaseTextDocument;
|
2011-02-21 16:02:26 +01:00
|
|
|
class BaseTextEditor;
|
2008-12-02 12:01:29 +01:00
|
|
|
class FontSettings;
|
2010-08-13 12:53:36 +02:00
|
|
|
class BehaviorSettings;
|
|
|
|
|
class CompletionSettings;
|
|
|
|
|
class DisplaySettings;
|
2011-08-16 10:45:23 +02:00
|
|
|
class TypingSettings;
|
2010-08-13 12:53:36 +02:00
|
|
|
class StorageSettings;
|
2010-11-05 14:27:16 +01:00
|
|
|
class Indenter;
|
2010-11-08 16:11:26 +01:00
|
|
|
class AutoCompleter;
|
2011-02-01 14:13:54 +01:00
|
|
|
class ExtraEncodingSettings;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-04-28 18:34:58 +02:00
|
|
|
class TEXTEDITOR_EXPORT BaseTextEditorAnimator : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
BaseTextEditorAnimator(QObject *parent);
|
|
|
|
|
|
2009-09-23 12:50:02 +02:00
|
|
|
inline void setPosition(int position) { m_position = position; }
|
|
|
|
|
inline int position() const { return m_position; }
|
2009-04-28 18:34:58 +02:00
|
|
|
|
|
|
|
|
void setData(QFont f, QPalette pal, const QString &text);
|
|
|
|
|
|
|
|
|
|
void draw(QPainter *p, const QPointF &pos);
|
|
|
|
|
QRectF rect() const;
|
|
|
|
|
|
2009-09-23 12:50:02 +02:00
|
|
|
inline qreal value() const { return m_value; }
|
|
|
|
|
inline QPointF lastDrawPos() const { return m_lastDrawPos; }
|
2009-04-28 18:34:58 +02:00
|
|
|
|
|
|
|
|
void finish();
|
|
|
|
|
|
2009-04-28 19:02:58 +02:00
|
|
|
bool isRunning() const;
|
|
|
|
|
|
2009-04-28 18:34:58 +02:00
|
|
|
signals:
|
2009-09-23 12:50:02 +02:00
|
|
|
void updateRequest(int position, QPointF lastPos, QRectF rect);
|
2009-04-28 18:34:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void step(qreal v);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QTimeLine *m_timeline;
|
|
|
|
|
qreal m_value;
|
|
|
|
|
int m_position;
|
2009-09-23 12:50:02 +02:00
|
|
|
QPointF m_lastDrawPos;
|
2009-04-28 18:34:58 +02:00
|
|
|
QFont m_font;
|
|
|
|
|
QPalette m_palette;
|
|
|
|
|
QString m_text;
|
|
|
|
|
QSizeF m_size;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
class TEXTEDITOR_EXPORT BaseTextEditorWidget : public QPlainTextEdit
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2010-08-05 15:01:20 +02:00
|
|
|
Q_PROPERTY(int verticalBlockSelectionFirstColumn READ verticalBlockSelectionFirstColumn)
|
|
|
|
|
Q_PROPERTY(int verticalBlockSelectionLastColumn READ verticalBlockSelectionLastColumn)
|
2008-12-02 12:01:29 +01:00
|
|
|
public:
|
2011-02-21 16:02:26 +01:00
|
|
|
BaseTextEditorWidget(QWidget *parent);
|
|
|
|
|
~BaseTextEditorWidget();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-08-09 11:08:01 +02:00
|
|
|
static Core::IEditor *openEditorAt(const QString &fileName, int line, int column = 0,
|
2011-11-10 11:36:51 +01:00
|
|
|
const Core::Id &editorId = Core::Id(),
|
2010-09-07 09:51:20 +02:00
|
|
|
Core::EditorManager::OpenEditorFlags flags = Core::EditorManager::IgnoreNavigationHistory,
|
2010-03-10 12:48:53 +01:00
|
|
|
bool *newEditor = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-11-26 12:19:58 +01:00
|
|
|
const Utils::ChangeSet &changeSet() const;
|
|
|
|
|
void setChangeSet(const Utils::ChangeSet &changeSet);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
// EditorInterface
|
2012-02-14 16:43:51 +01:00
|
|
|
Core::IDocument *editorDocument() const;
|
2008-12-02 12:01:29 +01:00
|
|
|
bool createNew(const QString &contents);
|
2011-05-10 20:43:03 +02:00
|
|
|
virtual bool open(QString *errorString, const QString &fileName, const QString &realFileName);
|
2008-12-02 12:01:29 +01:00
|
|
|
QByteArray saveState() const;
|
|
|
|
|
bool restoreState(const QByteArray &state);
|
|
|
|
|
QString displayName() const;
|
|
|
|
|
|
|
|
|
|
// ITextEditor
|
|
|
|
|
|
2009-03-19 15:01:12 +01:00
|
|
|
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;
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
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;
|
2010-06-18 12:30:29 +02:00
|
|
|
virtual void setMimeType(const QString &mt);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-07-24 23:30:32 +04:00
|
|
|
void appendMenuActionsFromContext(QMenu *menu, const Core::Id menuContextId);
|
2009-11-02 14:02:18 +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;
|
|
|
|
|
|
2013-02-05 14:14:33 +01:00
|
|
|
void setAlwaysOpenLinksInNextSplit(bool b);
|
|
|
|
|
bool alwaysOpenLinksInNextSplit() const;
|
2012-11-01 03:43:28 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void setMarksVisible(bool b);
|
|
|
|
|
bool marksVisible() const;
|
|
|
|
|
|
|
|
|
|
void setRequestMarkEnabled(bool b);
|
|
|
|
|
bool requestMarkEnabled() const;
|
|
|
|
|
|
|
|
|
|
void setLineSeparatorsAllowed(bool b);
|
|
|
|
|
bool lineSeparatorsAllowed() const;
|
|
|
|
|
|
2010-11-10 15:09:18 +01:00
|
|
|
void updateCodeFoldingVisible();
|
2008-12-02 12:01:29 +01:00
|
|
|
bool codeFoldingVisible() const;
|
|
|
|
|
|
2009-03-16 17:23:50 +01:00
|
|
|
void setCodeFoldingSupported(bool b);
|
|
|
|
|
bool codeFoldingSupported() const;
|
|
|
|
|
|
2009-09-08 13:03:24 +02:00
|
|
|
void setMouseNavigationEnabled(bool b);
|
|
|
|
|
bool mouseNavigationEnabled() const;
|
|
|
|
|
|
2009-12-09 16:27:34 +01:00
|
|
|
void setScrollWheelZoomingEnabled(bool b);
|
|
|
|
|
bool scrollWheelZoomingEnabled() const;
|
|
|
|
|
|
2011-07-20 13:40:24 +02:00
|
|
|
void setConstrainTooltips(bool b);
|
|
|
|
|
bool constrainTooltips() const;
|
|
|
|
|
|
2011-09-19 19:00:53 +02:00
|
|
|
void setCamelCaseNavigationEnabled(bool b);
|
|
|
|
|
bool camelCaseNavigationEnabled() const;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void setRevisionsVisible(bool b);
|
|
|
|
|
bool revisionsVisible() const;
|
|
|
|
|
|
|
|
|
|
void setVisibleWrapColumn(int column);
|
|
|
|
|
int visibleWrapColumn() const;
|
|
|
|
|
|
2010-12-13 15:17:33 +01:00
|
|
|
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);
|
|
|
|
|
|
2008-12-04 18:37:02 +01:00
|
|
|
void setTextCursor(const QTextCursor &cursor);
|
|
|
|
|
|
2010-03-29 16:44:27 +02:00
|
|
|
void insertCodeSnippet(const QTextCursor &cursor, const QString &snippet);
|
2010-01-19 16:36:48 +01:00
|
|
|
|
2010-09-13 13:52:50 +02:00
|
|
|
void setBlockSelection(bool on);
|
|
|
|
|
bool hasBlockSelection() const;
|
2010-04-12 20:49:40 +02:00
|
|
|
|
2010-08-05 15:01:20 +02:00
|
|
|
int verticalBlockSelectionFirstColumn() const;
|
|
|
|
|
int verticalBlockSelectionLastColumn() const;
|
2010-04-12 20:49:40 +02:00
|
|
|
|
2010-07-09 16:09:08 +02:00
|
|
|
QRegion translatedLineRegion(int lineStart, int lineEnd) const;
|
|
|
|
|
|
2010-11-05 14:27:16 +01:00
|
|
|
void setIndenter(Indenter *indenter);
|
2010-11-09 10:36:02 +01:00
|
|
|
Indenter *indenter() const;
|
2010-11-05 14:27:16 +01:00
|
|
|
|
2010-11-08 16:11:26 +01:00
|
|
|
void setAutoCompleter(AutoCompleter *autoCompleter);
|
|
|
|
|
AutoCompleter *autoCompleter() const;
|
|
|
|
|
|
2011-02-21 16:45:07 +01:00
|
|
|
QPoint toolTipPosition(const QTextCursor &c) const;
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
void invokeAssist(AssistKind assistKind, IAssistProvider *provider = 0);
|
|
|
|
|
|
|
|
|
|
virtual IAssistInterface *createAssistInterface(AssistKind assistKind,
|
|
|
|
|
AssistReason assistReason) const;
|
2012-03-12 17:38:54 +01:00
|
|
|
QMimeData *duplicateMimeData(const QMimeData *source) const;
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
public slots:
|
|
|
|
|
void setDisplayName(const QString &title);
|
|
|
|
|
|
2011-12-13 12:15:30 +01:00
|
|
|
virtual void copy();
|
2009-12-03 18:35:36 +01:00
|
|
|
virtual void paste();
|
|
|
|
|
virtual void cut();
|
2012-01-18 12:09:41 +01:00
|
|
|
virtual void selectAll();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-12-13 12:15:30 +01:00
|
|
|
void circularPaste();
|
2012-03-02 08:16:23 +08:00
|
|
|
void switchUtf8bom();
|
2011-12-13 12:15:30 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void zoomIn(int range = 1);
|
|
|
|
|
void zoomOut(int range = 1);
|
2009-11-30 19:00:36 +01:00
|
|
|
void zoomReset();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-14 17:24:35 +02:00
|
|
|
void cutLine();
|
2010-11-27 14:02:20 +09:00
|
|
|
void copyLine();
|
2008-12-02 12:01:29 +01:00
|
|
|
void deleteLine();
|
2011-09-26 14:21:19 +02:00
|
|
|
void deleteEndOfWord();
|
|
|
|
|
void deleteEndOfWordCamelCase();
|
|
|
|
|
void deleteStartOfWord();
|
|
|
|
|
void deleteStartOfWordCamelCase();
|
2010-05-20 15:10:26 +02:00
|
|
|
void unfoldAll();
|
|
|
|
|
void fold();
|
|
|
|
|
void unfold();
|
2008-12-02 12:01:29 +01:00
|
|
|
void selectEncoding();
|
2013-04-18 10:06:13 +02:00
|
|
|
void updateTextCodecLabel();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-04 18:37:02 +01:00
|
|
|
void gotoBlockStart();
|
|
|
|
|
void gotoBlockEnd();
|
|
|
|
|
void gotoBlockStartWithSelection();
|
|
|
|
|
void gotoBlockEndWithSelection();
|
|
|
|
|
|
2010-05-07 15:24:30 +02:00
|
|
|
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();
|
2010-11-10 12:53:45 +01:00
|
|
|
void gotoPreviousWordCamelCase();
|
|
|
|
|
void gotoPreviousWordCamelCaseWithSelection();
|
|
|
|
|
void gotoNextWordCamelCase();
|
|
|
|
|
void gotoNextWordCamelCaseWithSelection();
|
2008-12-04 18:37:02 +01:00
|
|
|
|
2011-10-29 13:09:33 +08:00
|
|
|
bool selectBlockUp();
|
|
|
|
|
bool selectBlockDown();
|
2008-12-04 19:25:20 +01:00
|
|
|
|
2008-12-10 18:01:33 +01:00
|
|
|
void moveLineUp();
|
|
|
|
|
void moveLineDown();
|
|
|
|
|
|
2009-05-15 23:17:11 +02:00
|
|
|
void copyLineUp();
|
|
|
|
|
void copyLineDown();
|
|
|
|
|
|
2010-01-20 17:51:05 +01:00
|
|
|
void joinLines();
|
2010-01-20 16:54:06 +01:00
|
|
|
|
2010-05-03 17:03:11 +02:00
|
|
|
void insertLineAbove();
|
|
|
|
|
void insertLineBelow();
|
|
|
|
|
|
2011-02-25 11:10:42 +01:00
|
|
|
void uppercaseSelection();
|
|
|
|
|
void lowercaseSelection();
|
|
|
|
|
|
2008-12-09 17:43:31 +01:00
|
|
|
void cleanWhitespace();
|
|
|
|
|
|
2012-01-22 17:05:02 -05:00
|
|
|
void indent();
|
|
|
|
|
void unindent();
|
|
|
|
|
|
2012-03-27 23:18:46 +04:00
|
|
|
void openLinkUnderCursor();
|
2013-02-05 14:14:33 +01:00
|
|
|
void openLinkUnderCursorInNextSplit();
|
2012-03-27 23:18:46 +04:00
|
|
|
|
2013-03-19 11:41:40 +01:00
|
|
|
/// Abort code assistant if it is running.
|
|
|
|
|
void abortAssist();
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
signals:
|
|
|
|
|
void changed();
|
2013-03-19 11:41:40 +01:00
|
|
|
void assistFinished();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// ITextEditor
|
|
|
|
|
void contentsChanged();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
bool event(QEvent *e);
|
|
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
|
void wheelEvent(QWheelEvent *e);
|
|
|
|
|
void changeEvent(QEvent *e);
|
2009-12-01 19:44:31 +01:00
|
|
|
void focusInEvent(QFocusEvent *e);
|
2009-11-30 19:13:20 +01:00
|
|
|
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
|
|
|
QMimeData *createMimeDataFromSelection() const;
|
|
|
|
|
bool canInsertFromMimeData(const QMimeData *source) const;
|
|
|
|
|
void insertFromMimeData(const QMimeData *source);
|
|
|
|
|
|
2013-01-20 23:09:09 +01:00
|
|
|
virtual QString plainTextFromSelection() const;
|
|
|
|
|
static QString convertToPlainText(const QString &txt);
|
|
|
|
|
|
|
|
|
|
virtual QString lineNumber(int blockNumber) const;
|
|
|
|
|
virtual int lineNumberTopPositionOffset(int blockNumber) const;
|
|
|
|
|
virtual int lineNumberDigits() const;
|
2013-04-09 10:26:31 +02:00
|
|
|
virtual bool selectionVisible(int blockNumber) const;
|
2013-04-10 13:51:04 +02:00
|
|
|
virtual bool replacementVisible(int blockNumber) const;
|
2010-07-12 14:15:38 +02:00
|
|
|
static QString msgTextTooLarge(quint64 size);
|
|
|
|
|
|
2009-05-14 17:24:35 +02:00
|
|
|
private:
|
|
|
|
|
void maybeSelectLine();
|
2011-05-06 12:48:44 +02:00
|
|
|
void updateCannotDecodeInfo();
|
2009-05-14 17:24:35 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
public:
|
2011-02-21 16:02:26 +01:00
|
|
|
void duplicateFrom(BaseTextEditorWidget *editor);
|
2009-03-17 16:16:36 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
protected:
|
2013-01-09 13:31:15 +08:00
|
|
|
QSharedPointer<BaseTextDocument> baseTextDocument() const;
|
|
|
|
|
void setBaseTextDocument(const QSharedPointer<BaseTextDocument> &doc);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
void setDefaultPath(const QString &defaultPath);
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
virtual BaseTextEditor *createEditor() = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void editorContentsChange(int position, int charsRemoved, int charsAdded);
|
2010-06-24 20:13:13 +02:00
|
|
|
void documentAboutToBeReloaded();
|
|
|
|
|
void documentReloaded();
|
2010-07-15 13:30:04 +02:00
|
|
|
void highlightSearchResults(const QString &txt, Find::FindFlags findFlags);
|
2010-08-05 15:01:20 +02:00
|
|
|
void setFindScope(const QTextCursor &start, const QTextCursor &end, int, int);
|
|
|
|
|
bool inFindScope(const QTextCursor &cursor);
|
|
|
|
|
bool inFindScope(int selectionStart, int selectionEnd);
|
2011-04-06 14:55:26 +02:00
|
|
|
void inSnippetMode(bool *active);
|
2011-07-12 08:52:32 +02:00
|
|
|
void onCodeStylePreferencesDestroyed();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private:
|
2012-02-16 13:50:02 +01:00
|
|
|
Internal::BaseTextEditorWidgetPrivate *d;
|
|
|
|
|
friend class Internal::BaseTextEditorWidgetPrivate;
|
2009-11-25 15:55:45 +01:00
|
|
|
friend class Internal::TextEditorOverlay;
|
2010-11-01 16:29:45 +01:00
|
|
|
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 *);
|
2011-08-01 12:20:08 +02:00
|
|
|
virtual void extraAreaContextMenuEvent(QContextMenuEvent *);
|
2009-03-17 16:16:36 +01:00
|
|
|
virtual void extraAreaMouseEvent(QMouseEvent *);
|
2013-04-10 13:51:04 +02:00
|
|
|
void updateFoldingHighlight(const QPoint &pos);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
const TabSettings &tabSettings() const;
|
2012-11-21 21:47:17 +02:00
|
|
|
void setLanguageSettingsId(Core::Id settingsId);
|
|
|
|
|
Core::Id languageSettingsId() const;
|
2011-02-03 15:48:14 +01:00
|
|
|
|
2011-08-16 10:45:23 +02:00
|
|
|
void setCodeStyle(ICodeStylePreferences *settings);
|
2011-02-03 15:48:14 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
const DisplaySettings &displaySettings() const;
|
|
|
|
|
|
|
|
|
|
void markBlocksAsChanged(QList<int> blockNumbers);
|
|
|
|
|
|
|
|
|
|
void ensureCursorVisible();
|
|
|
|
|
|
2008-12-05 13:19:57 +01:00
|
|
|
enum ExtraSelectionKind {
|
|
|
|
|
CurrentLineSelection,
|
|
|
|
|
ParenthesesMatchingSelection,
|
|
|
|
|
CodeWarningsSelection,
|
|
|
|
|
CodeSemanticsSelection,
|
2010-05-21 15:42:05 +02:00
|
|
|
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,
|
2010-01-19 12:28:50 +01:00
|
|
|
SnippetPlaceholderSelection,
|
2010-06-18 12:30:29 +02:00
|
|
|
ObjCSelection,
|
2011-09-06 17:03:16 +02:00
|
|
|
DebuggerExceptionSelection,
|
2008-12-05 13:19:57 +01:00
|
|
|
NExtraSelectionKinds
|
|
|
|
|
};
|
|
|
|
|
void setExtraSelections(ExtraSelectionKind kind, const QList<QTextEdit::ExtraSelection> &selections);
|
|
|
|
|
QList<QTextEdit::ExtraSelection> extraSelections(ExtraSelectionKind kind) const;
|
2009-11-30 17:23:31 +01:00
|
|
|
QString extraSelectionTooltip(int pos) const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-01-11 16:42:42 +01:00
|
|
|
RefactorMarkers refactorMarkers() const;
|
|
|
|
|
void setRefactorMarkers(const RefactorMarkers &markers);
|
2010-07-02 13:47:14 +02:00
|
|
|
signals:
|
2010-11-01 16:29:45 +01:00
|
|
|
void refactorMarkerClicked(const TextEditor::RefactorMarker &marker);
|
2010-07-02 13:47:14 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
2009-01-23 18:21:36 +01:00
|
|
|
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
|
2009-01-23 19:13:00 +01:00
|
|
|
void setIfdefedOutBlocks(const QList<BlockRange> &blocks);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
public slots:
|
2009-03-17 16:16:36 +01:00
|
|
|
virtual void format();
|
2009-07-21 10:37:00 +02:00
|
|
|
virtual void rewrapParagraph();
|
2009-03-17 16:16:36 +01:00
|
|
|
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 &);
|
2009-12-08 17:37:40 +01:00
|
|
|
virtual void setBehaviorSettings(const TextEditor::BehaviorSettings &);
|
2011-08-16 10:45:23 +02:00
|
|
|
virtual void setTypingSettings(const TextEditor::TypingSettings &);
|
2009-03-17 16:16:36 +01:00
|
|
|
virtual void setStorageSettings(const TextEditor::StorageSettings &);
|
2010-05-11 11:33:31 +02:00
|
|
|
virtual void setCompletionSettings(const TextEditor::CompletionSettings &);
|
2011-02-01 14:13:54 +01:00
|
|
|
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 *);
|
2009-09-08 13:03:24 +02:00
|
|
|
void mouseReleaseEvent(QMouseEvent *);
|
2011-10-29 13:09:33 +08:00
|
|
|
void mouseDoubleClickEvent(QMouseEvent *);
|
2009-09-08 13:03:24 +02:00
|
|
|
void leaveEvent(QEvent *);
|
|
|
|
|
void keyReleaseEvent(QKeyEvent *);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-02-19 11:25:30 +01:00
|
|
|
void dragEnterEvent(QDragEnterEvent *e);
|
|
|
|
|
|
2012-07-24 23:30:32 +04:00
|
|
|
void showDefaultContextMenu(QContextMenuEvent *e, const Core::Id menuContextId);
|
|
|
|
|
|
2010-01-06 14:57:45 +01:00
|
|
|
public:
|
2010-11-05 14:27:16 +01:00
|
|
|
void indentInsertedText(const QTextCursor &tc);
|
2010-11-09 10:36:02 +01:00
|
|
|
void indent(QTextDocument *doc, const QTextCursor &cursor, QChar typedChar);
|
|
|
|
|
void reindent(QTextDocument *doc, const QTextCursor &cursor);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-09-08 13:03:24 +02:00
|
|
|
struct Link
|
|
|
|
|
{
|
2013-02-06 14:23:18 +01:00
|
|
|
Link(const QString &fileName = QString(), int line = 0, int column = 0)
|
|
|
|
|
: linkTextStart(-1)
|
|
|
|
|
, linkTextEnd(-1)
|
|
|
|
|
, targetFileName(fileName)
|
|
|
|
|
, targetLine(line)
|
|
|
|
|
, targetColumn(column)
|
2009-09-08 13:03:24 +02:00
|
|
|
{}
|
|
|
|
|
|
2013-02-06 14:23:18 +01:00
|
|
|
bool hasValidTarget() const
|
|
|
|
|
{ return !targetFileName.isEmpty(); }
|
|
|
|
|
|
|
|
|
|
bool hasValidLinkText() const
|
|
|
|
|
{ return linkTextStart != linkTextEnd; }
|
2009-09-08 13:03:24 +02:00
|
|
|
|
2009-11-03 14:29:49 +01:00
|
|
|
bool operator==(const Link &other) const
|
2013-02-06 14:23:18 +01:00
|
|
|
{ return linkTextStart == other.linkTextStart && linkTextEnd == other.linkTextEnd; }
|
2009-11-03 14:29:49 +01:00
|
|
|
|
2013-02-06 14:23:18 +01:00
|
|
|
int linkTextStart;
|
|
|
|
|
int linkTextEnd;
|
2009-09-08 13:03:24 +02:00
|
|
|
|
2013-02-06 14:23:18 +01:00
|
|
|
QString targetFileName;
|
|
|
|
|
int targetLine;
|
|
|
|
|
int targetColumn;
|
2009-09-08 13:03:24 +02:00
|
|
|
};
|
|
|
|
|
|
2010-08-13 16:38:45 +02:00
|
|
|
protected:
|
2009-09-08 13:03:24 +02:00
|
|
|
/*!
|
|
|
|
|
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.
|
2009-09-08 13:03:24 +02:00
|
|
|
*/
|
2013-02-05 14:14:33 +01:00
|
|
|
virtual bool openLink(const Link &link, bool inNextSplit = false);
|
2009-09-08 13:03:24 +02:00
|
|
|
|
2010-07-06 14:52:38 +02:00
|
|
|
void maybeClearSomeExtraSelections(const QTextCursor &cursor);
|
|
|
|
|
|
2011-09-14 22:16:28 +02:00
|
|
|
/*!
|
|
|
|
|
Reimplement this function to change the default replacement text.
|
|
|
|
|
*/
|
|
|
|
|
virtual QString foldReplacementText(const QTextBlock &block) const;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
protected slots:
|
2012-02-17 14:59:14 +01:00
|
|
|
virtual void slotUpdateExtraArea();
|
2008-12-02 12:01:29 +01:00
|
|
|
virtual void slotUpdateExtraAreaWidth();
|
|
|
|
|
virtual void slotModificationChanged(bool);
|
|
|
|
|
virtual void slotUpdateRequest(const QRect &r, int dy);
|
|
|
|
|
virtual void slotCursorPositionChanged();
|
|
|
|
|
virtual void slotUpdateBlockNotify(const QTextBlock &);
|
2011-02-03 15:48:14 +01:00
|
|
|
virtual void slotCodeStyleSettingsChanged(const QVariant &);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
signals:
|
2009-11-30 19:00:36 +01:00
|
|
|
void requestFontZoom(int zoom);
|
|
|
|
|
void requestZoomReset();
|
2008-12-02 12:01:29 +01:00
|
|
|
void requestBlockUpdate(const QTextBlock &);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void indentOrUnindent(bool doIndent);
|
|
|
|
|
void handleHomeKey(bool anchor);
|
|
|
|
|
void handleBackspaceKey();
|
2008-12-10 18:01:33 +01:00
|
|
|
void moveLineUpDown(bool up);
|
2009-05-15 23:17:11 +02:00
|
|
|
void copyLineUpDown(bool up);
|
2009-03-19 14:18:26 +01:00
|
|
|
void saveCurrentCursorPositionForNavigation();
|
2010-02-08 16:54:14 +01:00
|
|
|
void updateHighlights();
|
2009-07-15 16:10:15 +02:00
|
|
|
void updateCurrentLineHighlight();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-05-05 10:20:43 +02:00
|
|
|
void drawFoldingMarker(QPainter *painter, const QPalette &pal,
|
|
|
|
|
const QRect &rect,
|
|
|
|
|
bool expanded,
|
|
|
|
|
bool active,
|
|
|
|
|
bool hovered) const;
|
2009-05-04 11:10:22 +02:00
|
|
|
|
2010-05-31 13:48:40 +02:00
|
|
|
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);
|
2010-05-20 15:10:26 +02:00
|
|
|
QRect foldBox();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-05-20 15:10:26 +02:00
|
|
|
QTextBlock foldedBlockAt(const QPoint &pos, QRect *box = 0) const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-11-03 14:29:49 +01:00
|
|
|
void updateLink(QMouseEvent *e);
|
2009-09-08 13:03:24 +02:00
|
|
|
void showLink(const Link &);
|
|
|
|
|
void clearLink();
|
2009-06-17 19:12:19 +02:00
|
|
|
|
2010-01-19 12:28:50 +01:00
|
|
|
void universalHelper(); // test function for development
|
|
|
|
|
|
2010-11-09 15:19:14 +01:00
|
|
|
bool cursorMoveKeyEvent(QKeyEvent *e);
|
|
|
|
|
bool camelCaseRight(QTextCursor &cursor, QTextCursor::MoveMode mode);
|
|
|
|
|
bool camelCaseLeft(QTextCursor &cursor, QTextCursor::MoveMode mode);
|
2011-12-08 13:23:41 +01:00
|
|
|
|
|
|
|
|
void processTooltipRequest(const QTextCursor &c);
|
2010-11-09 15:19:14 +01:00
|
|
|
|
2011-02-25 11:10:42 +01:00
|
|
|
void transformSelection(Internal::TransformationMethod method);
|
2012-08-17 16:35:48 +02:00
|
|
|
void transformBlockSelection(Internal::TransformationMethod method);
|
2010-11-09 15:19:14 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private slots:
|
2010-08-05 15:01:20 +02:00
|
|
|
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();
|
2009-04-23 17:28:53 +02:00
|
|
|
void _q_highlightBlocks();
|
2008-12-02 12:01:29 +01:00
|
|
|
void slotSelectionChanged();
|
2009-09-23 12:50:02 +02:00
|
|
|
void _q_animateUpdate(int position, QPointF lastPos, QRectF rect);
|
2010-07-02 13:47:14 +02:00
|
|
|
void doFoo();
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
class TEXTEDITOR_EXPORT BaseTextEditor : public ITextEditor
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2011-02-21 19:30:43 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
public:
|
2011-02-21 16:02:26 +01:00
|
|
|
BaseTextEditor(BaseTextEditorWidget *editorWidget);
|
|
|
|
|
~BaseTextEditor();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-02-21 19:30:43 +01:00
|
|
|
friend class BaseTextEditorWidget;
|
|
|
|
|
BaseTextEditorWidget *editorWidget() const { return e; }
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// EditorInterface
|
2011-04-13 13:00:30 +02:00
|
|
|
//QWidget *widget() { return e; }
|
2012-02-14 16:43:51 +01:00
|
|
|
Core::IDocument * document() { return e->editorDocument(); }
|
2011-02-21 19:30:43 +01:00
|
|
|
bool createNew(const QString &contents) { return e->createNew(contents); }
|
2011-05-10 20:43:03 +02:00
|
|
|
bool open(QString *errorString, const QString &fileName, const QString &realFileName) { return e->open(errorString, fileName, realFileName); }
|
2011-02-21 19:30:43 +01:00
|
|
|
QString displayName() const { return e->displayName(); }
|
|
|
|
|
void setDisplayName(const QString &title) { e->setDisplayName(title); emit changed(); }
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-02-21 19:30:43 +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
|
|
|
|
2011-02-25 15:58:02 +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;
|
2009-03-19 14:18:26 +01:00
|
|
|
void gotoLine(int line, int column = 0) { e->gotoLine(line, column); }
|
2010-12-13 15:17:33 +01:00
|
|
|
int columnCount() const;
|
|
|
|
|
int rowCount() const;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-02-21 19:30:43 +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(); }
|
|
|
|
|
|
|
|
|
|
QString contextHelpId() const; // from IContext
|
|
|
|
|
|
2010-12-20 18:10:50 +01:00
|
|
|
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(); }
|
|
|
|
|
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
// 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);
|
2011-02-21 16:02:26 +01:00
|
|
|
void setCursorPosition(int pos);
|
2008-12-02 12:01:29 +01:00
|
|
|
void select(int toPos);
|
2013-03-06 15:28:19 +01:00
|
|
|
const Utils::CommentDefinition* commentDefinition() const;
|
2013-04-15 18:19:34 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private slots:
|
|
|
|
|
void updateCursorPosition();
|
2013-04-15 18:19:34 +02:00
|
|
|
void openGotoLocator();
|
2013-04-18 10:06:13 +02:00
|
|
|
void setFileEncodingLabelVisible(bool visible);
|
|
|
|
|
void setFileEncodingLabelText(const QString &text);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private:
|
2011-02-21 16:02:26 +01:00
|
|
|
BaseTextEditorWidget *e;
|
2008-12-02 12:01:29 +01:00
|
|
|
QToolBar *m_toolBar;
|
2011-02-25 15:58:02 +01:00
|
|
|
QWidget *m_stretchWidget;
|
|
|
|
|
QAction *m_cursorPositionLabelAction;
|
2009-10-05 11:06:05 +02:00
|
|
|
Utils::LineColumnLabel *m_cursorPositionLabel;
|
2013-04-18 10:06:13 +02:00
|
|
|
QAction *m_fileEncodingLabelAction;
|
|
|
|
|
Utils::LineColumnLabel *m_fileEncodingLabel;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace TextEditor
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
Q_DECLARE_METATYPE(TextEditor::BaseTextEditorWidget::Link)
|
2010-10-06 15:23:05 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif // BASETEXTEDITOR_H
|