yacreader/YACReader/shortcuts_dialog.h
2019-05-30 19:46:37 +02:00

21 lines
330 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 = 0);
private:
QTextEdit *shortcuts;
QPushButton *close;
public slots:
};
#endif // SHORTCUTS_DIALOG_H