/*! \file gui_video.h \brief File that holds the class that creates the Video-Options. */ #ifndef _GUI_VIDEO_H #define _GUI_VIDEO_H #include "gui.h" #include "gui_element.h" // FORWARD DECLARATIONS class Widget; class Menu; //! Class that creates the Video-Options. class GuiVideo : public GuiElement { private: // Button* advancedWindowGetButton(); public: GuiVideo(); virtual ~GuiVideo(); private: void getResolutions(Menu* menu); Widget* advancedWindowCreate(); }; #endif /* _GUI_VIDEO_H */