├── .gitattributes ├── .gitignore ├── Codes ├── App │ ├── Bitmap.h │ ├── GUI_Test.c │ ├── GUI_Test.h │ ├── game.c │ ├── game.h │ ├── main.c │ ├── pic_rootwin.c │ ├── sdlscreen.c │ └── sdlscreen.h ├── GUI │ ├── AntiAliasing │ │ ├── inc │ │ │ ├── GUI_AATypedef.h │ │ │ ├── GUI_AntiAliasing.h │ │ │ ├── GUI_Curves.h │ │ │ ├── GUI_Rasterizer.h │ │ │ ├── GUI_RenderBase.h │ │ │ └── GUI_StrokeLine.h │ │ └── src │ │ │ ├── GUI_Curves.c │ │ │ ├── GUI_Rasterizer.c │ │ │ ├── GUI_RenderBase.c │ │ │ └── GUI_StrokeLine.c │ ├── Config │ │ ├── GUI_Bottom.c │ │ ├── GUI_Bottom.h │ │ ├── GUI_Config.h │ │ └── GUI_Typedef.h │ ├── Core │ │ ├── inc │ │ │ ├── GUI.h │ │ │ ├── GUI_Bitmap.h │ │ │ ├── GUI_ClipArea.h │ │ │ ├── GUI_ClipAreaHeap.h │ │ │ ├── GUI_Color.h │ │ │ ├── GUI_Context.h │ │ │ ├── GUI_Core.h │ │ │ ├── GUI_Device.h │ │ │ ├── GUI_DispChar.h │ │ │ ├── GUI_DrawBase.h │ │ │ ├── GUI_GL.h │ │ │ ├── GUI_KeyBoard.h │ │ │ ├── GUI_Malloc.h │ │ │ ├── GUI_Math.h │ │ │ ├── GUI_MemDev.h │ │ │ ├── GUI_PaintArea.h │ │ │ ├── GUI_Queue.h │ │ │ ├── GUI_Rect.h │ │ │ ├── GUI_RootWin.h │ │ │ ├── GUI_String.h │ │ │ ├── GUI_Timer.h │ │ │ ├── GUI_TouchPad.h │ │ │ ├── GUI_WM.h │ │ │ └── linked_list.h │ │ └── src │ │ │ ├── GUI_Bitmap.c │ │ │ ├── GUI_ClipArea.c │ │ │ ├── GUI_ClipAreaHeap.c │ │ │ ├── GUI_Color.c │ │ │ ├── GUI_Context.c │ │ │ ├── GUI_Core.c │ │ │ ├── GUI_Device.c │ │ │ ├── GUI_DispChar.c │ │ │ ├── GUI_DrawBase.c │ │ │ ├── GUI_GL.c │ │ │ ├── GUI_KeyBoard.c │ │ │ ├── GUI_Malloc.c │ │ │ ├── GUI_Math.c │ │ │ ├── GUI_MemDev.c │ │ │ ├── GUI_PaintArea.c │ │ │ ├── GUI_Queue.c │ │ │ ├── GUI_Rect.c │ │ │ ├── GUI_RootWin.c │ │ │ ├── GUI_String.c │ │ │ ├── GUI_Timer.c │ │ │ ├── GUI_TouchPad.c │ │ │ ├── GUI_WM.c │ │ │ └── linked_list.c │ ├── Fonts │ │ ├── ASCII_8x16.c │ │ ├── GUI_Font.h │ │ └── UI17_4pp.c │ └── Widget │ │ ├── BUTTON.c │ │ ├── BUTTON.h │ │ ├── CHECKBOX.c │ │ ├── CHECKBOX.h │ │ ├── WIDGET.c │ │ ├── WIDGET.h │ │ ├── WINDOW.c │ │ └── WINDOW.h ├── LICENSE.txt ├── ReadMe.txt └── sdl │ ├── include │ ├── linux │ │ └── SDL │ │ │ ├── SDL.h │ │ │ ├── SDL_active.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_getenv.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ ├── linux64 │ │ └── SDL │ │ │ ├── SDL.h │ │ │ ├── SDL_active.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_byteorder.h │ │ │ ├── SDL_cdrom.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_getenv.h │ │ │ ├── SDL_image.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keysym.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── begin_code.h │ │ │ ├── close_code.h │ │ │ └── sdl-config │ └── win32 │ │ └── SDL │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h │ │ ├── SDL_config_dreamcast.h │ │ ├── SDL_config_macos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nds.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_symbian.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_image.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── linux │ ├── libSDL-1.2.so.0 │ ├── libSDL-1.2.so.0.11.4 │ ├── libSDL.a │ ├── libSDL.la │ ├── libSDL.so │ ├── libSDLmain.a │ └── libSDLmain.la │ ├── linux64 │ ├── libSDL.a │ ├── libSDL.so │ ├── libSDL_image.a │ ├── libSDL_image.so │ ├── libSDLmain.a │ ├── libcaca.a │ ├── libcaca.so │ ├── libwebp.a │ └── libwebp.so.5 │ └── win32 │ ├── SDL.dll │ ├── SDL.lib │ ├── SDL_image.dll │ ├── SDL_image.lib │ ├── SDLmain.lib │ ├── libSDL.dll.a │ ├── libSDL_image.dll.a │ └── libSDLmain.a └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Codes/App/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/Bitmap.h -------------------------------------------------------------------------------- /Codes/App/GUI_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/GUI_Test.c -------------------------------------------------------------------------------- /Codes/App/GUI_Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/GUI_Test.h -------------------------------------------------------------------------------- /Codes/App/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/game.c -------------------------------------------------------------------------------- /Codes/App/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/game.h -------------------------------------------------------------------------------- /Codes/App/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/main.c -------------------------------------------------------------------------------- /Codes/App/pic_rootwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/pic_rootwin.c -------------------------------------------------------------------------------- /Codes/App/sdlscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/sdlscreen.c -------------------------------------------------------------------------------- /Codes/App/sdlscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/App/sdlscreen.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/inc/GUI_AATypedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/inc/GUI_AATypedef.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/inc/GUI_AntiAliasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/inc/GUI_AntiAliasing.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/inc/GUI_Curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/inc/GUI_Curves.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/inc/GUI_Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/inc/GUI_Rasterizer.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/inc/GUI_RenderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/inc/GUI_RenderBase.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/inc/GUI_StrokeLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/inc/GUI_StrokeLine.h -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/src/GUI_Curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/src/GUI_Curves.c -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/src/GUI_Rasterizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/src/GUI_Rasterizer.c -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/src/GUI_RenderBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/src/GUI_RenderBase.c -------------------------------------------------------------------------------- /Codes/GUI/AntiAliasing/src/GUI_StrokeLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/AntiAliasing/src/GUI_StrokeLine.c -------------------------------------------------------------------------------- /Codes/GUI/Config/GUI_Bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Config/GUI_Bottom.c -------------------------------------------------------------------------------- /Codes/GUI/Config/GUI_Bottom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Config/GUI_Bottom.h -------------------------------------------------------------------------------- /Codes/GUI/Config/GUI_Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Config/GUI_Config.h -------------------------------------------------------------------------------- /Codes/GUI/Config/GUI_Typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Config/GUI_Typedef.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Bitmap.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_ClipArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_ClipArea.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_ClipAreaHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_ClipAreaHeap.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Color.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Context.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Core.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Device.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_DispChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_DispChar.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_DrawBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_DrawBase.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_GL.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_KeyBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_KeyBoard.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Malloc.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Math.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_MemDev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_MemDev.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_PaintArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_PaintArea.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Queue.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Rect.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_RootWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_RootWin.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_String.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_Timer.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_TouchPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_TouchPad.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/GUI_WM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/GUI_WM.h -------------------------------------------------------------------------------- /Codes/GUI/Core/inc/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/inc/linked_list.h -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Bitmap.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_ClipArea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_ClipArea.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_ClipAreaHeap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_ClipAreaHeap.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Color.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Context.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Core.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Device.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_DispChar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_DispChar.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_DrawBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_DrawBase.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_GL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_GL.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_KeyBoard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_KeyBoard.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Malloc.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Math.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_MemDev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_MemDev.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_PaintArea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_PaintArea.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Queue.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Rect.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_RootWin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_RootWin.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_String.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_Timer.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_TouchPad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_TouchPad.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/GUI_WM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/GUI_WM.c -------------------------------------------------------------------------------- /Codes/GUI/Core/src/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Core/src/linked_list.c -------------------------------------------------------------------------------- /Codes/GUI/Fonts/ASCII_8x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Fonts/ASCII_8x16.c -------------------------------------------------------------------------------- /Codes/GUI/Fonts/GUI_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Fonts/GUI_Font.h -------------------------------------------------------------------------------- /Codes/GUI/Fonts/UI17_4pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Fonts/UI17_4pp.c -------------------------------------------------------------------------------- /Codes/GUI/Widget/BUTTON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/BUTTON.c -------------------------------------------------------------------------------- /Codes/GUI/Widget/BUTTON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/BUTTON.h -------------------------------------------------------------------------------- /Codes/GUI/Widget/CHECKBOX.c: -------------------------------------------------------------------------------- 1 | #include "CHECKBOX.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /Codes/GUI/Widget/CHECKBOX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/CHECKBOX.h -------------------------------------------------------------------------------- /Codes/GUI/Widget/WIDGET.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/WIDGET.c -------------------------------------------------------------------------------- /Codes/GUI/Widget/WIDGET.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/WIDGET.h -------------------------------------------------------------------------------- /Codes/GUI/Widget/WINDOW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/WINDOW.c -------------------------------------------------------------------------------- /Codes/GUI/Widget/WINDOW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/GUI/Widget/WINDOW.h -------------------------------------------------------------------------------- /Codes/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/LICENSE.txt -------------------------------------------------------------------------------- /Codes/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/ReadMe.txt -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_active.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_audio.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_config.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_endian.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_error.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_events.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_main.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_name.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_platform.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_quit.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_thread.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_timer.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_types.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_version.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/SDL_video.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/begin_code.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux/SDL/close_code.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_active.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_audio.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_config.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_endian.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_error.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_events.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_image.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_main.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_name.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_platform.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_quit.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_thread.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_timer.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_types.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_version.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/SDL_video.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/begin_code.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/close_code.h -------------------------------------------------------------------------------- /Codes/sdl/include/linux64/SDL/sdl-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/linux64/SDL/sdl-config -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_active.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_audio.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_macos.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_macosx.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_minimal.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_nds.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_os2.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_symbian.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_config_win32.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_copying.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_endian.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_error.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_events.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_image.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_main.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_name.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_platform.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_quit.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_thread.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_timer.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_types.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_version.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/SDL_video.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/begin_code.h -------------------------------------------------------------------------------- /Codes/sdl/include/win32/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/include/win32/SDL/close_code.h -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDL-1.2.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDL-1.2.so.0 -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDL-1.2.so.0.11.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDL-1.2.so.0.11.4 -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDL.a -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDL.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDL.la -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDL.so -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDLmain.a -------------------------------------------------------------------------------- /Codes/sdl/linux/libSDLmain.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux/libSDLmain.la -------------------------------------------------------------------------------- /Codes/sdl/linux64/libSDL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libSDL.a -------------------------------------------------------------------------------- /Codes/sdl/linux64/libSDL.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libSDL.so -------------------------------------------------------------------------------- /Codes/sdl/linux64/libSDL_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libSDL_image.a -------------------------------------------------------------------------------- /Codes/sdl/linux64/libSDL_image.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libSDL_image.so -------------------------------------------------------------------------------- /Codes/sdl/linux64/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libSDLmain.a -------------------------------------------------------------------------------- /Codes/sdl/linux64/libcaca.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libcaca.a -------------------------------------------------------------------------------- /Codes/sdl/linux64/libcaca.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libcaca.so -------------------------------------------------------------------------------- /Codes/sdl/linux64/libwebp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libwebp.a -------------------------------------------------------------------------------- /Codes/sdl/linux64/libwebp.so.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/linux64/libwebp.so.5 -------------------------------------------------------------------------------- /Codes/sdl/win32/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/SDL.dll -------------------------------------------------------------------------------- /Codes/sdl/win32/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/SDL.lib -------------------------------------------------------------------------------- /Codes/sdl/win32/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/SDL_image.dll -------------------------------------------------------------------------------- /Codes/sdl/win32/SDL_image.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/SDL_image.lib -------------------------------------------------------------------------------- /Codes/sdl/win32/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/SDLmain.lib -------------------------------------------------------------------------------- /Codes/sdl/win32/libSDL.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/libSDL.dll.a -------------------------------------------------------------------------------- /Codes/sdl/win32/libSDL_image.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/libSDL_image.dll.a -------------------------------------------------------------------------------- /Codes/sdl/win32/libSDLmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/Codes/sdl/win32/libSDLmain.a -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skiars/S-GUI/HEAD/README.md --------------------------------------------------------------------------------