forked from qt-creator/qt-creator
Moved TextEditDocumentLayout and related classes to their own file
The Parentheses, TextBlockUserData and TextEditDocumentLayout classes and their member function implementations were spread around the BaseTextEditor class. Moving them to their own file to make the code a bit better organized. Reviewed-by: mae
This commit is contained in:
@@ -35,10 +35,8 @@
|
||||
#include <find/ifindsupport.h>
|
||||
|
||||
#include <QtGui/QPlainTextEdit>
|
||||
#include <QtGui/QTextBlockUserData>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QKeyEvent;
|
||||
class QToolBar;
|
||||
class QTimeLine;
|
||||
QT_END_NAMESPACE
|
||||
@@ -55,191 +53,16 @@ namespace Internal {
|
||||
class TextEditorOverlay;
|
||||
}
|
||||
|
||||
class ITextMark;
|
||||
class ITextMarkable;
|
||||
|
||||
class TextEditorActionHandler;
|
||||
class BaseTextDocument;
|
||||
class BaseTextEditorEditable;
|
||||
class FontSettings;
|
||||
struct BehaviorSettings;
|
||||
struct DisplaySettings;
|
||||
struct StorageSettings;
|
||||
struct TabSettings;
|
||||
|
||||
struct Parenthesis;
|
||||
typedef QVector<Parenthesis> Parentheses;
|
||||
|
||||
struct TEXTEDITOR_EXPORT Parenthesis
|
||||
{
|
||||
enum Type { Opened, Closed };
|
||||
|
||||
inline Parenthesis() : type(Opened), pos(-1) {}
|
||||
inline Parenthesis(Type t, QChar c, int position)
|
||||
: type(t), chr(c), pos(position) {}
|
||||
Type type;
|
||||
QChar chr;
|
||||
int pos;
|
||||
static int collapseAtPos(const Parentheses &parentheses, QChar *character = 0);
|
||||
static int closeCollapseAtPos(const Parentheses &parentheses);
|
||||
static bool hasClosingCollapse(const Parentheses &parentheses);
|
||||
};
|
||||
|
||||
|
||||
class TEXTEDITOR_EXPORT TextBlockUserData : public QTextBlockUserData
|
||||
{
|
||||
public:
|
||||
|
||||
enum CollapseMode { NoCollapse , CollapseThis, CollapseAfter };
|
||||
enum ClosingCollapseMode { NoClosingCollapse, ClosingCollapse, ClosingCollapseAtEnd };
|
||||
|
||||
inline TextBlockUserData()
|
||||
: m_collapseIncludesClosure(false),
|
||||
m_collapseMode(NoCollapse),
|
||||
m_closingCollapseMode(NoClosingCollapse),
|
||||
m_collapsed(false),
|
||||
m_ifdefedOut(false) {}
|
||||
~TextBlockUserData();
|
||||
|
||||
inline TextMarks marks() const { return m_marks; }
|
||||
inline void addMark(ITextMark *mark) { m_marks += mark; }
|
||||
inline bool removeMark(ITextMark *mark) { return m_marks.removeAll(mark); }
|
||||
inline bool hasMark(ITextMark *mark) const { return m_marks.contains(mark); }
|
||||
inline void clearMarks() { m_marks.clear(); }
|
||||
inline void documentClosing() { Q_FOREACH(ITextMark *tm, m_marks) { tm->documentClosing(); } m_marks.clear();}
|
||||
|
||||
inline CollapseMode collapseMode() const { return (CollapseMode)m_collapseMode; }
|
||||
inline void setCollapseMode(CollapseMode c) { m_collapseMode = c; }
|
||||
|
||||
inline void setClosingCollapseMode(ClosingCollapseMode c) { m_closingCollapseMode = c; }
|
||||
inline ClosingCollapseMode closingCollapseMode() const { return (ClosingCollapseMode) m_closingCollapseMode; }
|
||||
|
||||
inline bool hasClosingCollapse() const { return closingCollapseMode() != NoClosingCollapse; }
|
||||
inline bool hasClosingCollapseAtEnd() const { return closingCollapseMode() == ClosingCollapseAtEnd; }
|
||||
inline bool hasClosingCollapseInside() const { return closingCollapseMode() == ClosingCollapse; }
|
||||
|
||||
inline void setCollapsed(bool b) { m_collapsed = b; }
|
||||
inline bool collapsed() const { return m_collapsed; }
|
||||
|
||||
inline void setCollapseIncludesClosure(bool b) { m_collapseIncludesClosure = b; }
|
||||
inline bool collapseIncludesClosure() const { return m_collapseIncludesClosure; }
|
||||
|
||||
inline void setParentheses(const Parentheses &parentheses) { m_parentheses = parentheses; }
|
||||
inline void clearParentheses() { m_parentheses.clear(); }
|
||||
inline const Parentheses &parentheses() const { return m_parentheses; }
|
||||
inline bool hasParentheses() const { return !m_parentheses.isEmpty(); }
|
||||
int braceDepthDelta() const;
|
||||
|
||||
inline bool setIfdefedOut() { bool result = m_ifdefedOut; m_ifdefedOut = true; return !result; }
|
||||
inline bool clearIfdefedOut() { bool result = m_ifdefedOut; m_ifdefedOut = false; return result;}
|
||||
inline bool ifdefedOut() const { return m_ifdefedOut; }
|
||||
|
||||
inline static TextBlockUserData *canCollapse(const QTextBlock &block) {
|
||||
TextBlockUserData *data = static_cast<TextBlockUserData*>(block.userData());
|
||||
if (!data || data->collapseMode() != CollapseAfter) {
|
||||
data = static_cast<TextBlockUserData*>(block.next().userData());
|
||||
if (!data || data->collapseMode() != TextBlockUserData::CollapseThis)
|
||||
data = 0;
|
||||
}
|
||||
if (data && data->m_ifdefedOut)
|
||||
data = 0;
|
||||
return data;
|
||||
}
|
||||
|
||||
inline static bool hasCollapseAfter(const QTextBlock & block)
|
||||
{
|
||||
if (!block.isValid()) {
|
||||
return false;
|
||||
} else if (block.next().isValid()) {
|
||||
TextBlockUserData *data = static_cast<TextBlockUserData*>(block.next().userData());
|
||||
if (data && data->collapseMode() == TextBlockUserData::CollapseThis && !data->m_ifdefedOut)
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
inline static bool hasClosingCollapse(const QTextBlock &block) {
|
||||
TextBlockUserData *data = static_cast<TextBlockUserData*>(block.userData());
|
||||
return (data && data->hasClosingCollapse());
|
||||
}
|
||||
|
||||
inline static bool hasClosingCollapseAtEnd(const QTextBlock &block) {
|
||||
TextBlockUserData *data = static_cast<TextBlockUserData*>(block.userData());
|
||||
return (data && data->hasClosingCollapseAtEnd());
|
||||
}
|
||||
|
||||
inline static bool hasClosingCollapseInside(const QTextBlock &block) {
|
||||
TextBlockUserData *data = static_cast<TextBlockUserData*>(block.userData());
|
||||
return (data && data->hasClosingCollapseInside());
|
||||
}
|
||||
|
||||
static QTextBlock testCollapse(const QTextBlock& block);
|
||||
static void doCollapse(const QTextBlock& block, bool visible);
|
||||
|
||||
int collapseAtPos(QChar *character = 0) const;
|
||||
|
||||
enum MatchType { NoMatch, Match, Mismatch };
|
||||
static MatchType checkOpenParenthesis(QTextCursor *cursor, QChar c);
|
||||
static MatchType checkClosedParenthesis(QTextCursor *cursor, QChar c);
|
||||
static MatchType matchCursorBackward(QTextCursor *cursor);
|
||||
static MatchType matchCursorForward(QTextCursor *cursor);
|
||||
static bool findPreviousOpenParenthesis(QTextCursor *cursor, bool select = false);
|
||||
static bool findNextClosingParenthesis(QTextCursor *cursor, bool select = false);
|
||||
|
||||
static bool findPreviousBlockOpenParenthesis(QTextCursor *cursor, bool checkStartPosition = false);
|
||||
static bool findNextBlockClosingParenthesis(QTextCursor *cursor);
|
||||
|
||||
|
||||
private:
|
||||
TextMarks m_marks;
|
||||
uint m_collapseIncludesClosure : 1;
|
||||
uint m_collapseMode : 4;
|
||||
uint m_closingCollapseMode : 4;
|
||||
uint m_collapsed : 1;
|
||||
uint m_ifdefedOut : 1;
|
||||
Parentheses m_parentheses;
|
||||
};
|
||||
|
||||
|
||||
class TEXTEDITOR_EXPORT TextEditDocumentLayout : public QPlainTextDocumentLayout
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
TextEditDocumentLayout(QTextDocument *doc);
|
||||
~TextEditDocumentLayout();
|
||||
|
||||
QRectF blockBoundingRect(const QTextBlock &block) const;
|
||||
|
||||
static void setParentheses(const QTextBlock &block, const Parentheses &parentheses);
|
||||
static void clearParentheses(const QTextBlock &block) { setParentheses(block, Parentheses());}
|
||||
static Parentheses parentheses(const QTextBlock &block);
|
||||
static bool hasParentheses(const QTextBlock &block);
|
||||
static bool setIfdefedOut(const QTextBlock &block);
|
||||
static bool clearIfdefedOut(const QTextBlock &block);
|
||||
static bool ifdefedOut(const QTextBlock &block);
|
||||
static int braceDepthDelta(const QTextBlock &block);
|
||||
static int braceDepth(const QTextBlock &block);
|
||||
static void setBraceDepth(QTextBlock &block, int depth);
|
||||
static void changeBraceDepth(QTextBlock &block, int delta);
|
||||
|
||||
static TextBlockUserData *testUserData(const QTextBlock &block) {
|
||||
return static_cast<TextBlockUserData*>(block.userData());
|
||||
}
|
||||
static TextBlockUserData *userData(const QTextBlock &block) {
|
||||
TextBlockUserData *data = static_cast<TextBlockUserData*>(block.userData());
|
||||
if (!data && block.isValid())
|
||||
const_cast<QTextBlock &>(block).setUserData((data = new TextBlockUserData));
|
||||
return data;
|
||||
}
|
||||
|
||||
|
||||
void emitDocumentSizeChanged() { emit documentSizeChanged(documentSize()); }
|
||||
int lastSaveRevision;
|
||||
bool hasMarks;
|
||||
};
|
||||
|
||||
|
||||
class BaseTextEditorEditable;
|
||||
|
||||
class TEXTEDITOR_EXPORT BaseTextEditorAnimator : public QObject
|
||||
{
|
||||
@@ -663,8 +486,7 @@ private slots:
|
||||
};
|
||||
|
||||
|
||||
class TEXTEDITOR_EXPORT BaseTextEditorEditable
|
||||
: public ITextEditable
|
||||
class TEXTEDITOR_EXPORT BaseTextEditorEditable : public ITextEditable
|
||||
{
|
||||
Q_OBJECT
|
||||
friend class BaseTextEditor;
|
||||
|
||||
Reference in New Issue
Block a user