Added new GUI based on wxWidgets. Patch from bit.
This commit is contained in:
parent
a2f44b8ea7
commit
7fe91626d6
60 changed files with 11647 additions and 78 deletions
36
src/wx-display.h
Normal file
36
src/wx-display.h
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#ifndef SRC_WX_DISPLAY_H_
|
||||
#define SRC_WX_DISPLAY_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int display_init();
|
||||
void display_close();
|
||||
void display_start(void* hwnd);
|
||||
void display_stop();
|
||||
void display_resize(int width, int height);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
extern int mousecapture;
|
||||
|
||||
extern int video_scale_mode;
|
||||
extern int video_vsync;
|
||||
extern int video_focus_dim;
|
||||
extern int video_fullscreen_mode;
|
||||
|
||||
extern int win_doresize;
|
||||
|
||||
extern int window_doreset;
|
||||
extern int renderer_doreset;
|
||||
extern int window_dofullscreen;
|
||||
extern int window_dowindowed;
|
||||
extern int window_doremember;
|
||||
extern int window_doinputgrab;
|
||||
extern int window_doinputrelease;
|
||||
extern int window_dotogglefullscreen;
|
||||
|
||||
#endif /* SRC_WX_DISPLAY_H_ */
|
||||
Loading…
Reference in a new issue