X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fshortcutsmodel.h;h=1324ad16a303f402777fca96a25222f929af5d52;hp=12420bdcb0bd237a848b4b989762f4c03e67b890;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/qtui/settingspages/shortcutsmodel.h b/src/qtui/settingspages/shortcutsmodel.h index 12420bdc..1324ad16 100644 --- a/src/qtui/settingspages/shortcutsmodel.h +++ b/src/qtui/settingspages/shortcutsmodel.h @@ -36,23 +36,24 @@ class ShortcutsModel : public QAbstractItemModel { Q_OBJECT public: - enum Role { + enum Role + { ActionRole = Qt::UserRole, DefaultShortcutRole, ActiveShortcutRole, IsConfigurableRole }; - ShortcutsModel(const QHash &actionCollections, QObject *parent = nullptr); + ShortcutsModel(const QHash& actionCollections, QObject* parent = nullptr); ~ShortcutsModel() override; - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; - QModelIndex parent(const QModelIndex &child) const override; - int columnCount(const QModelIndex &parent = QModelIndex()) const override; - int rowCount(const QModelIndex &parent = QModelIndex()) const override; + QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& child) const override; + int columnCount(const QModelIndex& parent = QModelIndex()) const override; + int rowCount(const QModelIndex& parent = QModelIndex()) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; - bool setData(const QModelIndex &index, const QVariant &value, int role = ActiveShortcutRole) override; + QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; + bool setData(const QModelIndex& index, const QVariant& value, int role = ActiveShortcutRole) override; public slots: //! Load shortcuts from the ActionCollections @@ -79,20 +80,25 @@ signals: void changed(bool changed); private: - struct Item { - inline Item() { parentItem = nullptr; collection = nullptr; action = nullptr; } + struct Item + { + inline Item() + { + parentItem = nullptr; + collection = nullptr; + action = nullptr; + } inline ~Item() { qDeleteAll(actionItems); } int row; - Item *parentItem; - ActionCollection *collection; - Action *action; + Item* parentItem; + ActionCollection* collection; + Action* action; QKeySequence shortcut; - QList actionItems; + QList actionItems; }; - QList _categoryItems; + QList _categoryItems; int _changedCount; }; - -#endif // SHORTCUTSMODEL_H +#endif // SHORTCUTSMODEL_H