1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#ifndef GRAPHICS_MENU_H
#define GRAPHICS_MENU_H
#include <pglineedit.h>
#include "Menu.h"
class GraphicsMenu : public Menu
{
MENU_SINGLETON(Graphics);
public:
void eventShow();
void eventHide();
protected:
PARAGUI_CALLBACK(onOk);
PARAGUI_CALLBACK(onCancel);
PARAGUI_CALLBACK(onFullScreenCheck);
PARAGUI_CALLBACK(onFullFrameRateCheck);
bool m_fullScreenEnabled;
bool m_lastFullScreenEnabled;
bool m_fullFrameRateEnabled;
bool m_lastFullFrameRateEnabled;
bool m_autoPress;
};
#endif // GRAPHICS_MENU
|