mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
21 lines
336 B
C++
21 lines
336 B
C++
#ifndef SHORTCUTS_DIALOG_H
|
|
#define SHORTCUTS_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QTextEdit>
|
|
#include <QPushButton>
|
|
|
|
class ShortcutsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ShortcutsDialog(QWidget *parent = nullptr);
|
|
|
|
private:
|
|
QTextEdit *shortcuts;
|
|
QPushButton *close;
|
|
public slots:
|
|
};
|
|
|
|
#endif // SHORTCUTS_DIALOG_H
|