X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fmultilineedit.h;h=04afed31e1f1ba4475f017a4039857b8051605ec;hp=999487a4e67933a89994e7e670e51969892d0acc;hb=647215f1dd8ea6fdb6e4fb747c5dc3e19c4ec3fc;hpb=27921f7bb1ae86aabc13a5a279624a2d61cc3f2a diff --git a/src/uisupport/multilineedit.h b/src/uisupport/multilineedit.h index 999487a4..04afed31 100644 --- a/src/uisupport/multilineedit.h +++ b/src/uisupport/multilineedit.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2010 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -53,12 +53,12 @@ public: void setCustomFont(const QFont &); // should be used instead setFont(), so we can set our size correctly // Compatibility methods with the rest of the classes which still expect this to be a QLineEdit - inline QString text() { return toPlainText(); } - inline QString html() { return toHtml(); } - inline int cursorPosition() { return textCursor().position(); } + inline QString text() const { return toPlainText(); } + inline QString html() const { return toHtml(); } + inline int cursorPosition() const { return textCursor().position(); } inline void insert(const QString &newText) { insertPlainText(newText); } inline void backspace() { keyPressEvent(new QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier)); } - inline bool hasSelectedText() { return textCursor().hasSelection(); } + inline bool hasSelectedText() const { return textCursor().hasSelection(); } inline bool isSingleLine() const { return _singleLine; } inline bool pasteProtectionEnabled() const { return _pasteProtectionEnabled; } @@ -70,6 +70,10 @@ public: inline QString rgbColorFromMirc(QString mircColor) const { return _mircColorMap[mircColor]; } inline QMap mircColorMap() const { return _mircColorMap; } + inline QStringList history() const { return _history; } + inline QHash tempHistory() const { return _tempHistory; } + inline qint32 idx() const { return _idx; } + public slots: void setMode(Mode mode); void setMinHeight(int numLines); @@ -81,6 +85,10 @@ public slots: // Note: Enabling wrap will make isSingleLine() not work correctly, so only use this if minHeight() > 1! void setWordWrapEnabled(bool enable = true); + inline void setHistory(QStringList history) { _history = history; } + inline void setTempHistory(QHash tempHistory) { _tempHistory = tempHistory; } + inline void setIdx(qint32 idx) { _idx = idx; } + signals: void textEntered(const QString &text); void noTextEntered(); @@ -99,13 +107,14 @@ private slots: void historyMoveForward(); void historyMoveBack(); - QString convertHtmlToMircCodes(const QString &text); + QString convertRichtextToMircCodes(); QString convertMircCodesToHtml(const QString &text); + bool mircCodesChanged(QTextCursor &cursor, QTextCursor &peekcursor); private: - QStringList history; - QHash tempHistory; - qint32 idx; + QStringList _history; + QHash _tempHistory; + qint32 _idx; Mode _mode; bool _singleLine; int _minHeight;