yacreader/YACReader/shortcuts_dialog.h
Luis Ángel San Martín 9bf52def68 fixed server_log maxSize
2014-06-27 22:54:22 +02:00

20 lines
344 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