modernize: Reformat ALL the source... again!
[quassel.git] / src / uisupport / multilineedit.h
index bd06172..e5688b1 100644 (file)
 
 #include "uisupport-export.h"
 
-#include <QKeyEvent>
 #include <QHash>
+#include <QKeyEvent>
 
 #if defined HAVE_KF5
-#  include <KTextWidgets/KTextEdit>
-#  define MultiLineEditParent KTextEdit
+#    include <KTextWidgets/KTextEdit>
+#    define MultiLineEditParent KTextEdit
 #else
-#  include <QTextEdit>
-#  define MultiLineEditParent QTextEdit
+#    include <QTextEdit>
+#    define MultiLineEditParent QTextEdit
 #endif
 
 #if defined HAVE_SONNET && !defined HAVE_KDE
-#  include <QContextMenuEvent>
-#  include <Sonnet/Highlighter>
-#  include <Sonnet/SpellCheckDecorator>
+#    include <QContextMenuEvent>
+
+#    include <Sonnet/Highlighter>
+#    include <Sonnet/SpellCheckDecorator>
 #endif
 
 class UISUPPORT_EXPORT MultiLineEdit : public MultiLineEditParent
@@ -44,20 +45,21 @@ class UISUPPORT_EXPORT MultiLineEdit : public MultiLineEditParent
     Q_OBJECT
 
 public:
-    enum Mode {
+    enum Mode
+    {
         SingleLine,
         MultiLine
     };
 
-    MultiLineEdit(QWidget *parent = nullptr);
+    MultiLineEdit(QWidgetparent = nullptr);
 
-    void setCustomFont(const QFont &); // should be used instead setFont(), so we can set our size correctly
+    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() 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 insert(const QStringnewText) { insertPlainText(newText); }
     inline void backspace() { keyPressEvent(new QKeyEvent(QEvent::KeyPress, Qt::Key_Backspace, Qt::NoModifier)); }
     inline bool hasSelectedText() const { return textCursor().hasSelection(); }
 
@@ -69,7 +71,7 @@ public:
 
     inline QString mircColorFromRGB(QString rgbColor) const { return _mircColorMap.key(rgbColor); }
     inline QString rgbColorFromMirc(QString mircColor) const { return _mircColorMap[mircColor]; }
-    inline QMap<QString, QString>  mircColorMap() const { return _mircColorMap; }
+    inline QMap<QString, QString> mircColorMap() const { return _mircColorMap; }
 
     inline QStringList history() const { return _history; }
     inline QHash<int, QString> tempHistory() const { return _tempHistory; }
@@ -84,7 +86,7 @@ public slots:
     void setMaxHeight(int numLines);
     void setEmacsMode(bool enable = true);
     void setScrollBarsEnabled(bool enable = true);
-    void setPasteProtectionEnabled(bool enable = true, QWidget *msgBoxParent = nullptr);
+    void setPasteProtectionEnabled(bool enable = true, QWidgetmsgBoxParent = nullptr);
     void setLineWrapEnabled(bool enable = false);
 
     inline void setHistory(QStringList history) { _history = history; }
@@ -92,16 +94,16 @@ public slots:
     inline void setIdx(qint32 idx) { _idx = idx; }
 
 signals:
-    void textEntered(const QString &text);
+    void textEntered(const QStringtext);
     void noTextEntered();
 
 protected:
-    bool event(QEvent *e) override;
-    void keyPressEvent(QKeyEvent *event) override;
-    void resizeEvent(QResizeEvent *event) override;
+    bool event(QEvente) override;
+    void keyPressEvent(QKeyEventevent) override;
+    void resizeEvent(QResizeEventevent) override;
 
 #if defined HAVE_SONNET && !defined HAVE_KDE
-    void contextMenuEvent(QContextMenuEvent *event) override;
+    void contextMenuEvent(QContextMenuEventevent) override;
 #endif
 
 private slots:
@@ -110,13 +112,13 @@ private slots:
     void on_textChanged();
     void on_documentHeightChanged(qreal height);
 
-    bool addToHistory(const QString &text, bool temporary = false);
+    bool addToHistory(const QStringtext, bool temporary = false);
     void historyMoveForward();
     void historyMoveBack();
 
     QString convertRichtextToMircCodes();
-    QString convertMircCodesToHtml(const QString &text);
-    bool mircCodesChanged(QTextCursor &cursor, QTextCursor &peekcursor);
+    QString convertMircCodesToHtml(const QStringtext);
+    bool mircCodesChanged(QTextCursor& cursor, QTextCursor& peekcursor);
 
 private:
     void reset();
@@ -144,12 +146,12 @@ private:
 
 #if defined HAVE_SONNET && !defined HAVE_KDE
     // This member function is provided by KTextEdit
-    Sonnet::Highlighter *highlighter() const;
+    Sonnet::Highlighterhighlighter() const;
 
 private slots:
     void setSpellCheckEnabled(bool enabled);
 
 private:
-    Sonnet::SpellCheckDecorator *_spellCheckDecorator{nullptr};
+    Sonnet::SpellCheckDecorator_spellCheckDecorator{nullptr};
 #endif
 };