mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
TODO: integrate it in YACReader TODO: add icons for groups TODO: add conflicts detection TODO: fix any shortcut used in keyPressEvent TODO: choose new default shortcuts (F5 update, F11 fullscreen, etc...)
21 lines
335 B
C++
21 lines
335 B
C++
#ifndef __OPTIONS_DIALOG_H
|
|
#define __OPTIONS_DIALOG_H
|
|
|
|
#include "yacreader_options_dialog.h"
|
|
|
|
#include "yacreader_global.h"
|
|
|
|
using namespace YACReader;
|
|
|
|
class OptionsDialog : public YACReaderOptionsDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OptionsDialog(QWidget * parent = 0);
|
|
signals:
|
|
void editShortcuts();
|
|
};
|
|
|
|
|
|
#endif
|