#ifndef DYNAMICSHORTCUTS_H #define DYNAMICSHORTCUTS_H #include class QAction; class DynamicShortcuts { public: // Checks the application settings and then initializes shortcut of // each action from actions from the settings. static void load(const QList actions); // Stores shortcut of each action from actions into the application // settings. static void save(const QList actions); private: // Constructor. explicit DynamicShortcuts(); }; #endif // DYNAMICSHORTCUTS_H