]> git.sesse.net Git - kdenlive/blobdiff - src/unicodedialog.h
const'ref.
[kdenlive] / src / unicodedialog.h
index 009d2349436573d395964c934a08efc21ce64066..b34f3c01a9240c5656df70e58ee66763809345a5 100644 (file)
@@ -24,10 +24,17 @@ public:
     ~UnicodeDialog();
 
     /** \brief Returns infos about a unicode number. Extendable/improvable ;) */
-    QString unicodeInfo(QString unicode_number);
+    QString unicodeInfo(const QString &unicode);
 
     void showLastUnicode();
 
+protected:
+    virtual void wheelEvent(QWheelEvent * event);
+
+public slots:
+    /** \brief Override QDialog::exec() to assure the focus being on the unicode input field */
+    int exec();
+
 private:
     Ui::UnicodeDialog_UI m_view;
 
@@ -37,30 +44,35 @@ private:
     InputMethod inputMethod;
 
     /** \brief Validates text and removes all invalid characters (non-hex e.g.) */
-    QString validateText(QString text);
+    QString validateText(const QString &text);
     /** \brief Removes all leading zeros */
     QString trimmedUnicodeNumber(QString text);
     /** \brief Checks whether the given string is a control character */
-    bool controlCharacter(QString text);
+    bool controlCharacter(const QString& text);
     /** \brief Checks whether the given uint is a control character */
     bool controlCharacter(uint value);
 
     /** \brief Returns the next available unicode. */
-    QString nextUnicode(QString text, Direction direction);
+    QString nextUnicode(const QString &text, Direction direction);
 
     /** \brief Paints previous and next characters around current char */
     void updateOverviewChars(uint unicode);
     void clearOverviewChars();
 
-    int lastCursorPos;
-    QString lastUnicodeNumber;
+    int m_lastCursorPos;
+    QString m_lastUnicodeNumber;
+
+    /** \brief Reads the last used unicode number from the config file. */
+    void readChoices();
+    /** \brief Writes the last used unicode number into the config file. */
+    void writeChoices();
 
 signals:
     /** \brief Contains the selected unicode character; emitted when Enter is pressed. */
     void charSelected(const QString&);
 
 private slots:
-    void slotTextChanged(QString text);
+    void slotTextChanged(const QString &text);
     void slotReturnPressed();
     void slotNextUnicode();
     void slotPrevUnicode();