mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
31 lines
457 B
C++
31 lines
457 B
C++
#ifndef SHORTCUTSTAB_H
|
|
#define SHORTCUTSTAB_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include "../dlg_settings.h"
|
|
|
|
namespace Ui
|
|
{
|
|
class shortcutsTab;
|
|
}
|
|
|
|
class ShortcutsTab : public AbstractSettingsPage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ShortcutsTab();
|
|
void retranslateUi();
|
|
~ShortcutsTab();
|
|
|
|
private slots:
|
|
void resetShortcuts();
|
|
void refreshEdits();
|
|
void clearShortcuts();
|
|
void afterClear();
|
|
|
|
private:
|
|
Ui::shortcutsTab *ui;
|
|
};
|
|
|
|
#endif // SHORTCUTSTAB_H
|