src: Yearly copyright bump
[quassel.git] / src / qtui / settingspages / keysequencewidget.h
index a0a3685..2f031d2 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2015 by the Quassel Project                        *
+ *   Copyright (C) 2005-2019 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This class has been inspired by KDE's KKeySequenceWidget and uses     *
@@ -44,12 +44,12 @@ class KeySequenceWidget : public QWidget
 {
     Q_OBJECT
 public:
-    KeySequenceWidget(QWidget *parent = 0);
+    KeySequenceWidget(QWidget* parent = nullptr);
 
-    void setModel(ShortcutsModel *model);
+    void setModel(ShortcutsModelmodel);
 
 public slots:
-    void setKeySequence(const QKeySequence &seq);
+    void setKeySequence(const QKeySequenceseq);
 
 signals:
     /**
@@ -58,7 +58,7 @@ signals:
      * \param conflicting The index of an action that needs to have its shortcut removed. The user has already been
      *                    asked to agree (if he declines, this signal won't be emitted at all).
      */
-    void keySequenceChanged(const QKeySequence &seq, const QModelIndex &conflicting = QModelIndex());
+    void keySequenceChanged(const QKeySequence& seq, const QModelIndex& conflicting = QModelIndex());
 
     void clicked();
 
@@ -74,37 +74,35 @@ private:
 
     bool isOkWhenModifierless(int keyQt) const;
     bool isShiftAsModifierAllowed(int keyQt) const;
-    bool isKeySequenceAvailable(const QKeySequence &seq);
+    bool isKeySequenceAvailable(const QKeySequenceseq);
 
-    ShortcutsModel *_shortcutsModel;
-    bool _isRecording;
+    ShortcutsModel* _shortcutsModel{nullptr};
+    bool _isRecording{false};
     QKeySequence _keySequence, _oldKeySequence;
-    uint _modifierKeys;
+    uint _modifierKeys{0};
     QModelIndex _conflictingIndex;
 
-    KeySequenceButton *_keyButton;
-    QToolButton *_clearButton;
+    KeySequenceButton_keyButton;
+    QToolButton_clearButton;
 
     friend class KeySequenceButton;
 };
 
-
 /*****************************************************************************/
 
 class KeySequenceButton : public QPushButton
 {
     Q_OBJECT
 public:
-    explicit KeySequenceButton(KeySequenceWidget *d, QWidget *parent = 0);
+    explicit KeySequenceButton(KeySequenceWidget* d, QWidget* parent = nullptr);
 
 protected:
-    virtual bool event(QEvent *event);
-    virtual void keyPressEvent(QKeyEvent *event);
-    virtual void keyReleaseEvent(QKeyEvent *event);
+    bool event(QEvent* event) override;
+    void keyPressEvent(QKeyEvent* event) override;
+    void keyReleaseEvent(QKeyEvent* event) override;
 
 private:
-    KeySequenceWidget *d;
+    KeySequenceWidgetd;
 };
 
-
-#endif // KEYSEQUENCEWIDGET_H
+#endif  // KEYSEQUENCEWIDGET_H