├── .gitattributes ├── .github ├── .codecov.yml ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Android.mk ├── CMakeLists.txt ├── CONTRIBUTING.md ├── README.md ├── changelog.md ├── cmake ├── Config.cmake ├── Dependencies.cmake ├── Macros.cmake ├── Modules │ ├── FindSDL2.cmake │ ├── FindSDL2_ttf.cmake │ ├── Findglfw3.cmake │ └── Findraylib.cmake ├── TGUIConfig.cmake.in ├── gui-builder │ ├── TexusGUI.png │ └── tgui-gui-builder.desktop.in └── pkgconfig │ └── tgui.pc.in ├── doc ├── CMakeLists.txt ├── custom.css ├── doxyfile.in ├── doxygen-awesome.css ├── footer.html ├── header.html └── mainpage.hpp ├── examples ├── CMakeLists.txt ├── android │ ├── RAYLIB │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── libs │ │ │ │ └── .gitkeep │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── Background-Landscape.png │ │ │ │ └── Background-Portrait.png │ │ │ │ ├── cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── deps │ │ │ │ │ ├── raylib │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── external │ │ │ │ │ │ │ ├── cgltf.h │ │ │ │ │ │ │ ├── dirent.h │ │ │ │ │ │ │ ├── dr_flac.h │ │ │ │ │ │ │ ├── dr_mp3.h │ │ │ │ │ │ │ ├── dr_wav.h │ │ │ │ │ │ │ ├── jar_mod.h │ │ │ │ │ │ │ ├── jar_xm.h │ │ │ │ │ │ │ ├── m3d.h │ │ │ │ │ │ │ ├── miniaudio.h │ │ │ │ │ │ │ ├── msf_gif.h │ │ │ │ │ │ │ ├── nanosvg.h │ │ │ │ │ │ │ ├── nanosvgrast.h │ │ │ │ │ │ │ ├── par_shapes.h │ │ │ │ │ │ │ ├── qoa.h │ │ │ │ │ │ │ ├── qoaplay.c │ │ │ │ │ │ │ ├── qoi.h │ │ │ │ │ │ │ ├── rl_gputex.h │ │ │ │ │ │ │ ├── rprand.h │ │ │ │ │ │ │ ├── sdefl.h │ │ │ │ │ │ │ ├── sinfl.h │ │ │ │ │ │ │ ├── stb_image.h │ │ │ │ │ │ │ ├── stb_image_resize2.h │ │ │ │ │ │ │ ├── stb_image_write.h │ │ │ │ │ │ │ ├── stb_perlin.h │ │ │ │ │ │ │ ├── stb_rect_pack.h │ │ │ │ │ │ │ ├── stb_truetype.h │ │ │ │ │ │ │ ├── stb_vorbis.c │ │ │ │ │ │ │ ├── tinyobj_loader_c.h │ │ │ │ │ │ │ └── vox_loader.h │ │ │ │ │ │ ├── platforms │ │ │ │ │ │ │ └── rcore_android.c │ │ │ │ │ │ ├── raudio.c │ │ │ │ │ │ ├── raylib.h │ │ │ │ │ │ ├── raymath.h │ │ │ │ │ │ ├── rcamera.h │ │ │ │ │ │ ├── rcore.c │ │ │ │ │ │ ├── rgestures.h │ │ │ │ │ │ ├── rlgl.h │ │ │ │ │ │ ├── rmodels.c │ │ │ │ │ │ ├── rshapes.c │ │ │ │ │ │ ├── rtext.c │ │ │ │ │ │ ├── rtextures.c │ │ │ │ │ │ ├── utils.c │ │ │ │ │ │ └── utils.h │ │ │ │ │ └── raymob │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── callback.c │ │ │ │ │ │ ├── display.c │ │ │ │ │ │ ├── helper.c │ │ │ │ │ │ ├── raymob.h │ │ │ │ │ │ ├── sensor.c │ │ │ │ │ │ ├── soft_keyboard.c │ │ │ │ │ │ └── vibrator.c │ │ │ │ └── main.cpp │ │ │ │ ├── ic_launcher-playstore.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── raylib │ │ │ │ │ └── raymob │ │ │ │ │ ├── DisplayManager.java │ │ │ │ │ ├── NativeLoader.java │ │ │ │ │ └── SoftKeyboard.java │ │ │ │ └── res │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── strings.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── SDL_GPU │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ ├── jni │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── example.cpp │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ ├── Background-Landscape.png │ │ │ │ └── Background-Portrait.png │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ ├── SDLDummyEdit.java │ │ │ │ │ ├── SDLInputConnection.java │ │ │ │ │ └── SDLSurface.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts │ ├── SDL_RENDERER │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ ├── jni │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ └── example.cpp │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ ├── Background-Landscape.png │ │ │ │ └── Background-Portrait.png │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ └── SDLSurface.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts │ ├── SDL_TTF_GLES2 │ │ ├── .gitignore │ │ ├── README.txt │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── example.cpp │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ ├── Background-Landscape.png │ │ │ │ └── Background-Portrait.png │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── libsdl │ │ │ │ │ └── app │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ ├── SDL.java │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ └── SDLSurface.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── tgui_logo.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── SFML_GRAPHICS │ │ ├── .gitignore │ │ ├── app │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── Background-Landscape.png │ │ │ └── Background-Portrait.png │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ ├── main-sfml2.cpp │ │ │ └── main-sfml3.cpp │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── tgui_logo.png │ │ │ ├── drawable-ldpi │ │ │ └── tgui_logo.png │ │ │ ├── drawable-mdpi │ │ │ └── tgui_logo.png │ │ │ ├── drawable-xhdpi │ │ │ └── tgui_logo.png │ │ │ ├── drawable-xxhdpi │ │ │ └── tgui_logo.png │ │ │ └── values │ │ │ └── strings.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle.kts ├── iOS │ ├── CMakeLists.txt │ ├── assets │ │ ├── Background-Landscape.png │ │ └── Background-Portrait.png │ ├── iOS-example-SDL_RENDERER.cpp │ └── iOS-example-SFML_GRAPHICS.cpp ├── main-GLFW_GLES2.cpp ├── main-GLFW_OPENGL3.cpp ├── main-RAYLIB.cpp ├── main-SDL_GLES2.cpp ├── main-SDL_GPU.cpp ├── main-SDL_OPENGL3.cpp ├── main-SDL_RENDERER.cpp ├── main-SDL_TTF_GLES2.cpp ├── main-SDL_TTF_OPENGL3.cpp ├── main-SFML_GRAPHICS.cpp ├── main-SFML_OPENGL3.cpp ├── many_different_widgets │ ├── CMakeLists.txt │ ├── Expected_Output.jpg │ ├── ManyDifferentWidgets.cpp │ └── RedBackground.jpg └── scalable_login_screen │ ├── CMakeLists.txt │ ├── ScalableLoginScreen.cpp │ └── xubuntu_bg_aluminium.jpg ├── gui-builder ├── CMakeLists.txt ├── include │ ├── Form.hpp │ ├── GuiBuilder.hpp │ ├── WidgetInfo.hpp │ └── WidgetProperties │ │ ├── BitmapButtonProperties.hpp │ │ ├── ButtonProperties.hpp │ │ ├── ChatBoxProperties.hpp │ │ ├── CheckBoxProperties.hpp │ │ ├── ChildWindowProperties.hpp │ │ ├── ClickableWidgetProperties.hpp │ │ ├── ComboBoxProperties.hpp │ │ ├── EditBoxProperties.hpp │ │ ├── EditBoxSliderProperties.hpp │ │ ├── GroupProperties.hpp │ │ ├── GrowHorizontalLayoutProperties.hpp │ │ ├── GrowVerticalLayoutProperties.hpp │ │ ├── HorizontalLayoutProperties.hpp │ │ ├── HorizontalWrapProperties.hpp │ │ ├── KnobProperties.hpp │ │ ├── LabelProperties.hpp │ │ ├── ListBoxProperties.hpp │ │ ├── ListViewProperties.hpp │ │ ├── MenuBarProperties.hpp │ │ ├── PanelListBoxProperties.hpp │ │ ├── PanelProperties.hpp │ │ ├── PictureProperties.hpp │ │ ├── ProgressBarProperties.hpp │ │ ├── RadioButtonProperties.hpp │ │ ├── RangeSliderProperties.hpp │ │ ├── RichTextLabelProperties.hpp │ │ ├── ScrollablePanelProperties.hpp │ │ ├── ScrollbarProperties.hpp │ │ ├── SeparatorLineProperties.hpp │ │ ├── SliderProperties.hpp │ │ ├── SpinButtonProperties.hpp │ │ ├── SpinControlProperties.hpp │ │ ├── SplitContainerProperties.hpp │ │ ├── TabsProperties.hpp │ │ ├── TextAreaProperties.hpp │ │ ├── ToggleButtonProperties.hpp │ │ ├── TreeViewProperties.hpp │ │ ├── VerticalLayoutProperties.hpp │ │ └── WidgetProperties.hpp ├── resources │ ├── ArrowDown.png │ ├── ArrowUp.png │ ├── DefaultPicture.png │ ├── Icon.png │ ├── Info.png │ ├── LoadFile.png │ ├── NewFile.png │ ├── SelectionSquare.png │ ├── SelectionSquare.txt │ ├── Transparent.png │ ├── Trash.png │ ├── forms │ │ ├── About.txt │ │ ├── EditThemes.txt │ │ ├── EditingScreen.txt │ │ ├── KeyboardShortcuts.txt │ │ ├── SetChildWindowTitleButtons.txt │ │ ├── SetEditBoxInputValidator.txt │ │ ├── SetListViewColumns.txt │ │ ├── SetMultilineString.txt │ │ ├── SetOutline.txt │ │ ├── SetStringList.txt │ │ ├── SetTextStyle.txt │ │ ├── SetTexture.txt │ │ └── StartScreen.txt │ └── widget-icons │ │ ├── BitmapButton.png │ │ ├── Button.png │ │ ├── ChatBox.png │ │ ├── CheckBox.png │ │ ├── ChildWindow.png │ │ ├── ClickableWidget.png │ │ ├── ComboBox.png │ │ ├── EditBox.png │ │ ├── EditBoxSlider.png │ │ ├── Group.png │ │ ├── GrowHorizontalLayout.png │ │ ├── GrowVerticalLayout.png │ │ ├── HorizontalLayout.png │ │ ├── HorizontalWrap.png │ │ ├── Knob.png │ │ ├── Label.png │ │ ├── ListBox.png │ │ ├── ListView.png │ │ ├── MenuBar.png │ │ ├── MessageBox.png │ │ ├── Panel.png │ │ ├── PanelListBox.png │ │ ├── Picture.png │ │ ├── ProgressBar.png │ │ ├── RadioButton.png │ │ ├── RangeSlider.png │ │ ├── RichTextLabel.png │ │ ├── ScrollablePanel.png │ │ ├── Scrollbar.png │ │ ├── SeparatorLine.png │ │ ├── Slider.png │ │ ├── SpinButton.png │ │ ├── SpinControl.png │ │ ├── SplitContainer.png │ │ ├── Tabs.png │ │ ├── TextArea.png │ │ ├── ToggleButton.png │ │ ├── TreeView.png │ │ └── VerticalLayout.png └── src │ ├── Form.cpp │ ├── GuiBuilder.cpp │ └── main.cpp ├── include └── TGUI │ ├── AbsoluteOrRelativeValue.hpp │ ├── AllWidgets.hpp │ ├── Animation.hpp │ ├── Any.hpp │ ├── Backend │ ├── Font │ │ ├── BackendFont.hpp │ │ ├── BackendFontFactory.hpp │ │ ├── FreeType │ │ │ └── BackendFontFreeType.hpp │ │ ├── Raylib │ │ │ └── BackendFontRaylib.hpp │ │ ├── SDL_ttf │ │ │ └── BackendFontSDLttf.hpp │ │ └── SFML-Graphics │ │ │ └── BackendFontSFML.hpp │ ├── GLFW-GLES2.hpp │ ├── GLFW-OpenGL3.hpp │ ├── Renderer │ │ ├── BackendRenderTarget.hpp │ │ ├── BackendRenderer.hpp │ │ ├── BackendText.hpp │ │ ├── BackendTexture.hpp │ │ ├── GLES2 │ │ │ ├── BackendRenderTargetGLES2.hpp │ │ │ ├── BackendRendererGLES2.hpp │ │ │ ├── BackendTextureGLES2.hpp │ │ │ └── CanvasGLES2.hpp │ │ ├── OpenGL.hpp │ │ ├── OpenGL3 │ │ │ ├── BackendRenderTargetOpenGL3.hpp │ │ │ ├── BackendRendererOpenGL3.hpp │ │ │ ├── BackendTextureOpenGL3.hpp │ │ │ └── CanvasOpenGL3.hpp │ │ ├── Raylib │ │ │ ├── BackendRenderTargetRaylib.hpp │ │ │ ├── BackendRendererRaylib.hpp │ │ │ ├── BackendTextureRaylib.hpp │ │ │ └── CanvasRaylib.hpp │ │ ├── SDL_GPU │ │ │ ├── BackendRenderTargetSDLGPU.hpp │ │ │ ├── BackendRendererSDLGPU.hpp │ │ │ ├── BackendTextureSDLGPU.hpp │ │ │ └── CanvasSDLGPU.hpp │ │ ├── SDL_Renderer │ │ │ ├── BackendRenderTargetSDL.hpp │ │ │ ├── BackendRendererSDL.hpp │ │ │ ├── BackendTextureSDL.hpp │ │ │ └── CanvasSDL.hpp │ │ └── SFML-Graphics │ │ │ ├── BackendRenderTargetSFML.hpp │ │ │ ├── BackendRendererSFML.hpp │ │ │ ├── BackendTextureSFML.hpp │ │ │ └── CanvasSFML.hpp │ ├── SDL-GLES2.hpp │ ├── SDL-GPU.hpp │ ├── SDL-OpenGL3.hpp │ ├── SDL-Renderer.hpp │ ├── SDL-TTF-GLES2.hpp │ ├── SDL-TTF-OpenGL3.hpp │ ├── SFML-Graphics.hpp │ ├── SFML-OpenGL3.hpp │ ├── Window │ │ ├── Backend.hpp │ │ ├── BackendGui.hpp │ │ ├── GLFW │ │ │ ├── BackendGLFW.hpp │ │ │ └── BackendGuiGLFW.hpp │ │ ├── Raylib │ │ │ ├── BackendGuiRaylib.hpp │ │ │ └── BackendRaylib.hpp │ │ ├── SDL │ │ │ ├── BackendGuiSDL.hpp │ │ │ └── BackendSDL.hpp │ │ └── SFML │ │ │ ├── BackendGuiSFML.hpp │ │ │ └── BackendSFML.hpp │ └── raylib.hpp │ ├── Base64.hpp │ ├── Color.hpp │ ├── Components.hpp │ ├── Config.hpp.in │ ├── Container.hpp │ ├── CopiedPtr.hpp │ ├── CopiedSharedPtr.hpp │ ├── Core.hpp │ ├── Cursor.hpp │ ├── CustomWidgetForBindings.hpp │ ├── DefaultBackendWindow.hpp │ ├── DefaultFont.hpp │ ├── Duration.hpp │ ├── Event.hpp │ ├── Exception.hpp │ ├── FileDialogIconLoader.hpp │ ├── Filesystem.hpp │ ├── Font.hpp │ ├── Global.hpp │ ├── Keyboard.hpp │ ├── Layout.hpp │ ├── Loading │ ├── DataIO.hpp │ ├── Deserializer.hpp │ ├── ImageLoader.hpp │ ├── Serializer.hpp │ ├── Theme.hpp │ ├── ThemeLoader.hpp │ └── WidgetFactory.hpp │ ├── ObjectConverter.hpp │ ├── Optional.hpp │ ├── Outline.hpp │ ├── Rect.hpp │ ├── RelFloatRect.hpp │ ├── RenderStates.hpp │ ├── RendererDefines.hpp │ ├── Renderers │ ├── BoxLayoutRenderer.hpp │ ├── ButtonRenderer.hpp │ ├── ChatBoxRenderer.hpp │ ├── CheckBoxRenderer.hpp │ ├── ChildWindowRenderer.hpp │ ├── ColorPickerRenderer.hpp │ ├── ComboBoxRenderer.hpp │ ├── ContextMenuRenderer.hpp │ ├── EditBoxRenderer.hpp │ ├── FileDialogRenderer.hpp │ ├── GroupRenderer.hpp │ ├── KnobRenderer.hpp │ ├── LabelRenderer.hpp │ ├── ListBoxRenderer.hpp │ ├── ListViewRenderer.hpp │ ├── MenuBarRenderer.hpp │ ├── MenuWidgetBaseRenderer.hpp │ ├── MessageBoxRenderer.hpp │ ├── PanelListBoxRenderer.hpp │ ├── PanelRenderer.hpp │ ├── PictureRenderer.hpp │ ├── ProgressBarRenderer.hpp │ ├── RadioButtonRenderer.hpp │ ├── RangeSliderRenderer.hpp │ ├── ScrollablePanelRenderer.hpp │ ├── ScrollbarRenderer.hpp │ ├── SeparatorLineRenderer.hpp │ ├── SliderRenderer.hpp │ ├── SpinButtonRenderer.hpp │ ├── SplitContainerRenderer.hpp │ ├── TabsRenderer.hpp │ ├── TextAreaRenderer.hpp │ ├── TextBoxRenderer.hpp │ ├── TreeViewRenderer.hpp │ └── WidgetRenderer.hpp │ ├── Signal.hpp │ ├── SignalManager.hpp │ ├── Sprite.hpp │ ├── String.hpp │ ├── StringView.hpp │ ├── SubwidgetContainer.hpp │ ├── SvgImage.hpp │ ├── TGUI.hpp │ ├── Text.hpp │ ├── TextStyle.hpp │ ├── Texture.hpp │ ├── TextureData.hpp │ ├── TextureManager.hpp │ ├── Timer.hpp │ ├── ToolTip.hpp │ ├── Transform.hpp │ ├── TwoFingerScrollDetect.hpp │ ├── Utf.hpp │ ├── Variant.hpp │ ├── Vector2.hpp │ ├── Vertex.hpp │ ├── Widget.hpp │ ├── Widgets │ ├── BitmapButton.hpp │ ├── BoxLayout.hpp │ ├── BoxLayoutRatios.hpp │ ├── Button.hpp │ ├── ButtonBase.hpp │ ├── CanvasBase.hpp │ ├── ChatBox.hpp │ ├── CheckBox.hpp │ ├── ChildWindow.hpp │ ├── ClickableWidget.hpp │ ├── ColorPicker.hpp │ ├── ComboBox.hpp │ ├── ContextMenu.hpp │ ├── EditBox.hpp │ ├── EditBoxSlider.hpp │ ├── FileDialog.hpp │ ├── Grid.hpp │ ├── Group.hpp │ ├── GrowHorizontalLayout.hpp │ ├── GrowVerticalLayout.hpp │ ├── HorizontalLayout.hpp │ ├── HorizontalWrap.hpp │ ├── Knob.hpp │ ├── Label.hpp │ ├── ListBox.hpp │ ├── ListView.hpp │ ├── MenuBar.hpp │ ├── MenuWidgetBase.hpp │ ├── MessageBox.hpp │ ├── Panel.hpp │ ├── PanelListBox.hpp │ ├── Picture.hpp │ ├── ProgressBar.hpp │ ├── RadioButton.hpp │ ├── RadioButtonGroup.hpp │ ├── RangeSlider.hpp │ ├── RichTextLabel.hpp │ ├── ScrollablePanel.hpp │ ├── Scrollbar.hpp │ ├── SeparatorLine.hpp │ ├── Slider.hpp │ ├── SpinButton.hpp │ ├── SpinControl.hpp │ ├── SplitContainer.hpp │ ├── TabContainer.hpp │ ├── Tabs.hpp │ ├── TextArea.hpp │ ├── ToggleButton.hpp │ ├── TreeView.hpp │ └── VerticalLayout.hpp │ ├── WindowsIMM.hpp │ └── extlibs │ ├── Aurora │ ├── Config.hpp │ ├── Dispatch.hpp │ ├── Dispatch │ │ ├── Detail │ │ │ ├── DoubleDispatcher.inl │ │ │ └── SingleDispatcher.inl │ │ ├── DispatchTraits.hpp │ │ ├── DoubleDispatcher.hpp │ │ └── SingleDispatcher.hpp │ ├── License.txt │ ├── Meta.hpp │ ├── Meta │ │ ├── Preprocessor.hpp │ │ ├── Templates.hpp │ │ ├── Tuple.hpp │ │ └── Variadic.hpp │ ├── README.md │ ├── SmartPtr.hpp │ ├── SmartPtr │ │ ├── ClonersAndDeleters.hpp │ │ ├── CopiedPtr.hpp │ │ ├── Detail │ │ │ ├── Factories.hpp │ │ │ └── PtrOwner.hpp │ │ └── MakeUnique.hpp │ ├── Tools.hpp │ └── Tools │ │ ├── Algorithms.hpp │ │ ├── Any.hpp │ │ ├── Downcast.hpp │ │ ├── Exceptions.hpp │ │ ├── ForEach.hpp │ │ ├── Hash.hpp │ │ ├── NamedTuple.hpp │ │ ├── NonCopyable.hpp │ │ ├── Optional.hpp │ │ ├── PImpl.hpp │ │ ├── SafeBool.hpp │ │ ├── Swap.hpp │ │ └── Typeid.hpp │ ├── IncludeNanoSVG.hpp │ ├── IncludeSDL.hpp │ ├── IncludeStbImage.hpp │ ├── IncludeStbImageWrite.hpp │ ├── IncludeWindows.hpp │ ├── glad │ ├── LICENSE │ └── gl.h │ ├── nanosvg │ ├── LICENSE.txt │ ├── README.txt │ ├── nanosvg.h │ └── nanosvgrast.h │ └── stb │ ├── LICENSE │ ├── stb_image.h │ └── stb_image_write.h ├── license.txt ├── src ├── Animation.cpp ├── Backend │ ├── CMakeLists.txt │ ├── Font │ │ ├── BackendFont.cpp │ │ ├── FreeType │ │ │ ├── BackendFontFreeType.cpp │ │ │ └── BackendFontFreeType.cppm │ │ ├── Raylib │ │ │ ├── BackendFontRaylib.cpp │ │ │ └── BackendFontRaylib.cppm │ │ ├── SDL_ttf │ │ │ ├── BackendFontSDLttf.cpp │ │ │ └── BackendFontSDLttf.cppm │ │ └── SFML-Graphics │ │ │ ├── BackendFontSFML.cpp │ │ │ └── BackendFontSFML.cppm │ ├── GLFW-GLES2.cpp │ ├── GLFW-GLES2.cppm │ ├── GLFW-OpenGL3.cpp │ ├── GLFW-OpenGL3.cppm │ ├── Renderer │ │ ├── BackendRenderTarget.cpp │ │ ├── BackendText.cpp │ │ ├── BackendTexture.cpp │ │ ├── GLES2 │ │ │ ├── BackendRenderTargetGLES2.cpp │ │ │ ├── BackendRendererGLES2.cpp │ │ │ ├── BackendRendererGLES2.cppm │ │ │ ├── BackendTextureGLES2.cpp │ │ │ └── CanvasGLES2.cpp │ │ ├── OpenGL.cpp │ │ ├── OpenGL3 │ │ │ ├── BackendRenderTargetOpenGL3.cpp │ │ │ ├── BackendRendererOpenGL3.cpp │ │ │ ├── BackendRendererOpenGL3.cppm │ │ │ ├── BackendTextureOpenGL3.cpp │ │ │ └── CanvasOpenGL3.cpp │ │ ├── Raylib │ │ │ ├── BackendRenderTargetRaylib.cpp │ │ │ ├── BackendRendererRaylib.cpp │ │ │ ├── BackendRendererRaylib.cppm │ │ │ ├── BackendTextureRaylib.cpp │ │ │ └── CanvasRaylib.cpp │ │ ├── SDL_GPU │ │ │ ├── BackendRenderTargetSDLGPU.cpp │ │ │ ├── BackendRendererSDLGPU.cpp │ │ │ ├── BackendRendererSDLGPU.cppm │ │ │ ├── BackendTextureSDLGPU.cpp │ │ │ ├── CanvasSDLGPU.cpp │ │ │ └── shaders │ │ │ │ ├── .gitignore │ │ │ │ ├── compile_shaders.sh │ │ │ │ ├── shader.frag.hlsl │ │ │ │ └── shader.vert.hlsl │ │ ├── SDL_Renderer │ │ │ ├── BackendRenderTargetSDL.cpp │ │ │ ├── BackendRendererSDL.cpp │ │ │ ├── BackendRendererSDL.cppm │ │ │ ├── BackendTextureSDL.cpp │ │ │ └── CanvasSDL.cpp │ │ └── SFML-Graphics │ │ │ ├── BackendRenderTargetSFML.cpp │ │ │ ├── BackendRendererSFML.cpp │ │ │ ├── BackendRendererSFML.cppm │ │ │ ├── BackendTextureSFML.cpp │ │ │ └── CanvasSFML.cpp │ ├── SDL-GLES2.cpp │ ├── SDL-GLES2.cppm │ ├── SDL-GPU.cpp │ ├── SDL-GPU.cppm │ ├── SDL-OpenGL3.cpp │ ├── SDL-OpenGL3.cppm │ ├── SDL-Renderer.cpp │ ├── SDL-Renderer.cppm │ ├── SDL-TTF-GLES2.cpp │ ├── SDL-TTF-GLES2.cppm │ ├── SDL-TTF-OpenGL3.cpp │ ├── SDL-TTF-OpenGL3.cppm │ ├── SFML-Graphics.cpp │ ├── SFML-Graphics.cppm │ ├── SFML-OpenGL3.cpp │ ├── SFML-OpenGL3.cppm │ ├── Window │ │ ├── Backend.cpp │ │ ├── BackendGui.cpp │ │ ├── GLFW │ │ │ ├── BackendGLFW.cpp │ │ │ ├── BackendGuiGLFW.cpp │ │ │ └── BackendWindowGLFW.cppm │ │ ├── Raylib │ │ │ ├── BackendGuiRaylib.cpp │ │ │ ├── BackendRaylib.cpp │ │ │ └── BackendWindowRaylib.cppm │ │ ├── SDL │ │ │ ├── BackendGuiSDL.cpp │ │ │ ├── BackendSDL.cpp │ │ │ └── BackendWindowSDL.cppm │ │ └── SFML │ │ │ ├── BackendGuiSFML.cpp │ │ │ ├── BackendSFML.cpp │ │ │ └── BackendWindowSFML.cppm │ ├── raylib.cpp │ └── raylib.cppm ├── Base64.cpp ├── CMakeLists.txt ├── Color.cpp ├── Components.cpp ├── Container.cpp ├── Cursor.cpp ├── CustomWidgetForBindings.cpp ├── DefaultBackendWindow.cpp ├── DefaultBackendWindow.cppm ├── FileDialogIconLoader.cpp ├── FileDialogIconLoaderLinux.cpp ├── FileDialogIconLoaderWindows.cpp ├── Filesystem.cpp ├── Font.cpp ├── Global.cpp ├── Layout.cpp ├── Loading │ ├── DataIO.cpp │ ├── Deserializer.cpp │ ├── ImageLoader.cpp │ ├── Serializer.cpp │ ├── Theme.cpp │ ├── ThemeLoader.cpp │ └── WidgetFactory.cpp ├── ObjectConverter.cpp ├── Renderers │ ├── BoxLayoutRenderer.cpp │ ├── ButtonRenderer.cpp │ ├── ChatBoxRenderer.cpp │ ├── ChildWindowRenderer.cpp │ ├── ColorPickerRenderer.cpp │ ├── ComboBoxRenderer.cpp │ ├── EditBoxRenderer.cpp │ ├── FileDialogRenderer.cpp │ ├── GroupRenderer.cpp │ ├── KnobRenderer.cpp │ ├── LabelRenderer.cpp │ ├── ListBoxRenderer.cpp │ ├── ListViewRenderer.cpp │ ├── MenuBarRenderer.cpp │ ├── MenuWidgetBaseRenderer.cpp │ ├── MessageBoxRenderer.cpp │ ├── PanelListBoxRenderer.cpp │ ├── PanelRenderer.cpp │ ├── PictureRenderer.cpp │ ├── ProgressBarRenderer.cpp │ ├── RadioButtonRenderer.cpp │ ├── RangeSliderRenderer.cpp │ ├── ScrollablePanelRenderer.cpp │ ├── ScrollbarRenderer.cpp │ ├── SeparatorLineRenderer.cpp │ ├── SliderRenderer.cpp │ ├── SpinButtonRenderer.cpp │ ├── SplitContainerRenderer.cpp │ ├── TabsRenderer.cpp │ ├── TextAreaRenderer.cpp │ ├── TreeViewRenderer.cpp │ └── WidgetRenderer.cpp ├── Signal.cpp ├── SignalManager.cpp ├── Sprite.cpp ├── String.cpp ├── SubwidgetContainer.cpp ├── SvgImage.cpp ├── TGUI.cppm ├── Text.cpp ├── TextStyle.cpp ├── Texture.cpp ├── TextureManager.cpp ├── Timer.cpp ├── ToolTip.cpp ├── Transform.cpp ├── TwoFingerScrollDetect.cpp ├── Widget.cpp ├── Widgets │ ├── BitmapButton.cpp │ ├── BoxLayout.cpp │ ├── BoxLayoutRatios.cpp │ ├── Button.cpp │ ├── ButtonBase.cpp │ ├── CanvasBase.cpp │ ├── ChatBox.cpp │ ├── CheckBox.cpp │ ├── ChildWindow.cpp │ ├── ClickableWidget.cpp │ ├── ColorPicker.cpp │ ├── ComboBox.cpp │ ├── ContextMenu.cpp │ ├── EditBox.cpp │ ├── EditBoxSlider.cpp │ ├── FileDialog.cpp │ ├── Grid.cpp │ ├── Group.cpp │ ├── GrowHorizontalLayout.cpp │ ├── GrowVerticalLayout.cpp │ ├── HorizontalLayout.cpp │ ├── HorizontalWrap.cpp │ ├── Knob.cpp │ ├── Label.cpp │ ├── ListBox.cpp │ ├── ListView.cpp │ ├── MenuBar.cpp │ ├── MenuWidgetBase.cpp │ ├── MessageBox.cpp │ ├── Panel.cpp │ ├── PanelListBox.cpp │ ├── Picture.cpp │ ├── ProgressBar.cpp │ ├── RadioButton.cpp │ ├── RadioButtonGroup.cpp │ ├── RangeSlider.cpp │ ├── RichTextLabel.cpp │ ├── ScrollablePanel.cpp │ ├── Scrollbar.cpp │ ├── SeparatorLine.cpp │ ├── Slider.cpp │ ├── SpinButton.cpp │ ├── SpinControl.cpp │ ├── SplitContainer.cpp │ ├── TabContainer.cpp │ ├── Tabs.cpp │ ├── TextArea.cpp │ ├── ToggleButton.cpp │ ├── TreeView.cpp │ └── VerticalLayout.cpp └── WindowsIMM.cpp ├── tests ├── AbsoluteOrRelativeValue.cpp ├── Animation.cpp ├── BackendEvents.cpp ├── CMakeLists.txt ├── Clipboard.cpp ├── Clipping.cpp ├── Color.cpp ├── CompareFiles.cpp ├── Container.cpp ├── Duration.cpp ├── EnableSoftwareRenderer.env ├── Filesystem.cpp ├── Focus.cpp ├── Font.cpp ├── Layouts.cpp ├── Loading │ ├── DataIO.cpp │ ├── Deserializer.cpp │ ├── Serializer.cpp │ ├── Theme.cpp │ └── ThemeLoader.cpp ├── MouseCursors.cpp ├── Outline.cpp ├── Signal.cpp ├── SignalManager.cpp ├── Sprite.cpp ├── String.cpp ├── SvgImage.cpp ├── Tests.cpp ├── Tests.hpp ├── Text.cpp ├── Texture.cpp ├── TextureManager.cpp ├── Timer.cpp ├── ToolTip.cpp ├── Vector2.cpp ├── Widget.cpp ├── Widgets │ ├── BitmapButton.cpp │ ├── Button.cpp │ ├── Canvas.cpp │ ├── ChatBox.cpp │ ├── CheckBox.cpp │ ├── ChildWindow.cpp │ ├── ClickableWidget.cpp │ ├── ColorPicker.cpp │ ├── ComboBox.cpp │ ├── ContextMenu.cpp │ ├── EditBox.cpp │ ├── EditBoxSlider.cpp │ ├── FileDialog.cpp │ ├── Grid.cpp │ ├── Group.cpp │ ├── GrowHorizontalLayout.cpp │ ├── GrowVerticalLayout.cpp │ ├── HorizontalLayout.cpp │ ├── HorizontalWrap.cpp │ ├── Knob.cpp │ ├── Label.cpp │ ├── ListBox.cpp │ ├── ListView.cpp │ ├── MenuBar.cpp │ ├── MessageBox.cpp │ ├── Panel.cpp │ ├── PanelListBox.cpp │ ├── Picture.cpp │ ├── ProgressBar.cpp │ ├── RadioButton.cpp │ ├── RadioButtonGroup.cpp │ ├── RangeSlider.cpp │ ├── RichTextLabel.cpp │ ├── ScrollablePanel.cpp │ ├── Scrollbar.cpp │ ├── SeparatorLine.cpp │ ├── Slider.cpp │ ├── SpinButton.cpp │ ├── SpinControl.cpp │ ├── SplitContainer.cpp │ ├── TabContainer.cpp │ ├── Tabs.cpp │ ├── TextArea.cpp │ ├── ToggleButton.cpp │ ├── TreeView.cpp │ └── VerticalLayout.cpp ├── catch.hpp ├── cmake │ ├── CMakeLists.txt │ └── main.cpp ├── expected │ ├── BitmapButton_Disabled_DisabledSet.png │ ├── BitmapButton_Disabled_NormalSet.png │ ├── BitmapButton_Disabled_TextureDisabledSet.png │ ├── BitmapButton_Disabled_TextureNormalSet.png │ ├── BitmapButton_Down_DownSet.png │ ├── BitmapButton_Down_HoverSet.png │ ├── BitmapButton_Down_NormalSet.png │ ├── BitmapButton_Down_TextureDownSet.png │ ├── BitmapButton_Down_TextureHoverSet.png │ ├── BitmapButton_Down_TextureNormalSet.png │ ├── BitmapButton_Hover_DownSet.png │ ├── BitmapButton_Hover_HoverSet.png │ ├── BitmapButton_Hover_NormalSet.png │ ├── BitmapButton_Hover_TextureDownSet.png │ ├── BitmapButton_Hover_TextureHoverSet.png │ ├── BitmapButton_Hover_TextureNormalSet.png │ ├── BitmapButton_NoImage.png │ ├── BitmapButton_NoImageNoText.png │ ├── BitmapButton_NoText.png │ ├── BitmapButton_NonSquareImage.png │ ├── BitmapButton_NonSquareImage_NoText.png │ ├── BitmapButton_Normal_DownSet.png │ ├── BitmapButton_Normal_HoverSet.png │ ├── BitmapButton_Normal_NormalSet.png │ ├── BitmapButton_Normal_TextureDownSet.png │ ├── BitmapButton_Normal_TextureHoverSet.png │ ├── BitmapButton_Normal_TextureNormalSet.png │ ├── Button_Disabled_DisabledSet.png │ ├── Button_Disabled_NormalSet.png │ ├── Button_Disabled_TextureDisabledSet.png │ ├── Button_Disabled_TextureNormalSet.png │ ├── Button_Down_DownSet.png │ ├── Button_Down_HoverSet.png │ ├── Button_Down_NormalSet.png │ ├── Button_Down_TextureDownSet.png │ ├── Button_Down_TextureHoverSet.png │ ├── Button_Down_TextureNormalSet.png │ ├── Button_Hover_DownSet.png │ ├── Button_Hover_HoverSet.png │ ├── Button_Hover_NormalSet.png │ ├── Button_Hover_TextureDownSet.png │ ├── Button_Hover_TextureHoverSet.png │ ├── Button_Hover_TextureNormalSet.png │ ├── Button_Normal_DownSet.png │ ├── Button_Normal_HoverSet.png │ ├── Button_Normal_NormalSet.png │ ├── Button_Normal_Outline.png │ ├── Button_Normal_TextureDownSet.png │ ├── Button_Normal_TextureHoverSet.png │ ├── Button_Normal_TextureNormalSet.png │ ├── Button_RoundedRectangle_WithBorder.png │ ├── Button_RoundedRectangle_WithoutBorder.png │ ├── Canvas.png │ ├── CheckBox_CheckedDisabled_DisabledSet.png │ ├── CheckBox_CheckedDisabled_NormalSet.png │ ├── CheckBox_CheckedDisabled_TextureDisabledSet.png │ ├── CheckBox_CheckedDisabled_TextureNormalSet.png │ ├── CheckBox_CheckedHover_HoverSet.png │ ├── CheckBox_CheckedHover_NormalSet.png │ ├── CheckBox_CheckedHover_TextureHoverSet.png │ ├── CheckBox_CheckedHover_TextureNormalSet.png │ ├── CheckBox_CheckedNormal_HoverSet.png │ ├── CheckBox_CheckedNormal_NormalSet.png │ ├── CheckBox_CheckedNormal_TextureHoverSet.png │ ├── CheckBox_CheckedNormal_TextureNormalSet.png │ ├── CheckBox_Disabled_DisabledSet.png │ ├── CheckBox_Disabled_NormalSet.png │ ├── CheckBox_Disabled_TextureDisabledSet.png │ ├── CheckBox_Disabled_TextureNormalSet.png │ ├── CheckBox_Hover_HoverSet.png │ ├── CheckBox_Hover_NormalSet.png │ ├── CheckBox_Hover_TextureHoverSet.png │ ├── CheckBox_Hover_TextureNormalSet.png │ ├── CheckBox_MaxWidth.png │ ├── CheckBox_Normal_HoverSet.png │ ├── CheckBox_Normal_NormalSet.png │ ├── CheckBox_Normal_TextureHoverSet.png │ ├── CheckBox_Normal_TextureNormalSet.png │ ├── ChildWindow.png │ ├── ChildWindow_Focused.png │ ├── ChildWindow_Textured.png │ ├── ChildWindow_TitleButtonText.png │ ├── ClickableWidget.png │ ├── Clipping_EditBox.png │ ├── Clipping_EditBox_OutsideViewport.png │ ├── Clipping_NestedLayers.png │ ├── Clipping_Panel.png │ ├── ColorPicker_AfterColorChange.png │ ├── ColorPicker_BeforeColorChange.png │ ├── ComboBox_DefaultText.png │ ├── ComboBox_Disabled_DisabledSet.png │ ├── ComboBox_Disabled_NormalSet.png │ ├── ComboBox_Disabled_TextureDisabledSet.png │ ├── ComboBox_Disabled_TextureNormalSet.png │ ├── ComboBox_NoSelectedHover_HoverSet.png │ ├── ComboBox_NoSelectedHover_HoverSet_Textured.png │ ├── ComboBox_NoSelectedHover_NoHoverSet.png │ ├── ComboBox_NoSelectedHover_NoHoverSet_Textured.png │ ├── ComboBox_NoSelectedNoHover.png │ ├── ComboBox_NoSelectedNoHover_Textured.png │ ├── ComboBox_Scaling_Normal.png │ ├── ComboBox_Scaling_SelectingItem.png │ ├── ComboBox_SelectedHoverSelected_HoverSet.png │ ├── ComboBox_SelectedHoverSelected_HoverSet_Textured.png │ ├── ComboBox_SelectedHoverSelected_NoHoverSet.png │ ├── ComboBox_SelectedHoverSelected_NoHoverSet_Textured.png │ ├── ComboBox_SelectedNoHover.png │ ├── ComboBox_SelectedNoHover_Textured.png │ ├── ContextMenu.png │ ├── ContextMenu_Closed.png │ ├── ContextMenu_HoverDisabled.png │ ├── ContextMenu_HoverDisabled_Textured.png │ ├── ContextMenu_SubMenuItemHover.png │ ├── ContextMenu_SubMenuItemHover_Textured.png │ ├── ContextMenu_SubMenuOpen.png │ ├── ContextMenu_SubMenuOpen_Textured.png │ ├── ContextMenu_Textured.png │ ├── EditBox_Alignment_Center.png │ ├── EditBox_Alignment_Left.png │ ├── EditBox_Alignment_Right.png │ ├── EditBox_DefaultText.png │ ├── EditBox_Disabled_DisabledSet.png │ ├── EditBox_Disabled_NormalSet.png │ ├── EditBox_Disabled_TextureDisabledSet.png │ ├── EditBox_Disabled_TextureNormalSet.png │ ├── EditBox_Hover_HoverSet.png │ ├── EditBox_Hover_NormalSet.png │ ├── EditBox_Hover_TextureHoverSet.png │ ├── EditBox_Hover_TextureNormalSet.png │ ├── EditBox_Normal_HoverSet.png │ ├── EditBox_Normal_NormalSet.png │ ├── EditBox_Normal_TextureHoverSet.png │ ├── EditBox_Normal_TextureNormalSet.png │ ├── EditBox_PasswordCharacter.png │ ├── EditBox_Suffix.png │ ├── FontScale_Scaled.png │ ├── FontScale_Unscaled.png │ ├── Group.png │ ├── Knob.png │ ├── Knob_Textured.png │ ├── Label_BackgroundTexture.png │ ├── Label_Complex.png │ ├── Label_Complex_WithScrollbar.png │ ├── Label_Simple.png │ ├── Label_Simple_Outline.png │ ├── ListBox_NoSelectedHover_HoverSet.png │ ├── ListBox_NoSelectedHover_HoverSet_Texture.png │ ├── ListBox_NoSelectedHover_NoHoverSet.png │ ├── ListBox_NoSelectedHover_NoHoverSet_Texture.png │ ├── ListBox_NoSelectedNoHover.png │ ├── ListBox_NoSelectedNoHover_Texture.png │ ├── ListBox_SelectedHoverOther_HoverSet.png │ ├── ListBox_SelectedHoverOther_HoverSet_Texture.png │ ├── ListBox_SelectedHoverOther_NoHoverSet.png │ ├── ListBox_SelectedHoverOther_NoHoverSet_Texture.png │ ├── ListBox_SelectedHoverSelected_HoverSet.png │ ├── ListBox_SelectedHoverSelected_HoverSet_Texture.png │ ├── ListBox_SelectedHoverSelected_NoHoverSet.png │ ├── ListBox_SelectedHoverSelected_NoHoverSet_Texture.png │ ├── ListBox_SelectedNoHover.png │ ├── ListBox_SelectedNoHover_Texture.png │ ├── ListBox_TextAlignmentCenter.png │ ├── ListBox_TextAlignmentRight.png │ ├── ListView_BothScrollbars.png │ ├── ListView_BothScrollbars_Policy.png │ ├── ListView_ColumnExpanded_0_False.png │ ├── ListView_ColumnExpanded_0_True.png │ ├── ListView_ColumnExpanded_1_False.png │ ├── ListView_ColumnExpanded_1_True.png │ ├── ListView_ColumnExpanded_Both_False.png │ ├── ListView_ColumnExpanded_Both_True.png │ ├── ListView_ExpandLastColumnFalse_NoScrollbar.png │ ├── ListView_ExpandLastColumnFalse_WithScrollbar.png │ ├── ListView_ExpandLastColumnTrue_NoScrollbar.png │ ├── ListView_ExpandLastColumnTrue_WithScrollbar.png │ ├── ListView_ForcedScrollbars_Policy.png │ ├── ListView_GridLinesAndSeparators_All.png │ ├── ListView_GridLinesAndSeparators_NoColumnSeparator.png │ ├── ListView_GridLinesAndSeparators_NoGridLines.png │ ├── ListView_GridLinesAndSeparators_NoHeaderSeparator.png │ ├── ListView_GridLinesAndSeparators_NoHorizontalGridLines.png │ ├── ListView_GridLinesAndSeparators_NoVerticalGridLines.png │ ├── ListView_HorizontalScrollbar.png │ ├── ListView_HorizontalScrollbar_Policy.png │ ├── ListView_Icons.png │ ├── ListView_Icons_FixedHeight.png │ ├── ListView_Icons_FixedSize.png │ ├── ListView_Icons_FixedWidth.png │ ├── ListView_LongestItemAutoWidth_NoScrollbar.png │ ├── ListView_LongestItemAutoWidth_NoScrollbarAgain.png │ ├── ListView_LongestItemAutoWidth_WithScrollbar.png │ ├── ListView_NoColumns.png │ ├── ListView_NoColumns_WithHorizontalScrollbar.png │ ├── ListView_NoScrollbars.png │ ├── ListView_NoScrollbars_Policy.png │ ├── ListView_NoSelectedHover_HoverSet.png │ ├── ListView_NoSelectedHover_NoHoverSet.png │ ├── ListView_NoSelectedNoHover.png │ ├── ListView_SelectedHoverOther_HoverSet.png │ ├── ListView_SelectedHoverOther_NoHoverSet.png │ ├── ListView_SelectedHoverSelected_HoverSet.png │ ├── ListView_SelectedHoverSelected_NoHoverSet.png │ ├── ListView_SelectedNoHover.png │ ├── ListView_VerticalScrollbar.png │ ├── ListView_VerticalScrollbar_Policy.png │ ├── MenuBar.png │ ├── MenuBar_Disabled.png │ ├── MenuBar_Disabled_Textured.png │ ├── MenuBar_MenuDisabled.png │ ├── MenuBar_MenuDisabled_Textured.png │ ├── MenuBar_MenuHover.png │ ├── MenuBar_MenuHoverDisabled.png │ ├── MenuBar_MenuHoverDisabled_Textured.png │ ├── MenuBar_MenuHover_Textured.png │ ├── MenuBar_MenuOpen.png │ ├── MenuBar_MenuOpen_Textured.png │ ├── MenuBar_Scaling_HoveredItemChanged.png │ ├── MenuBar_Scaling_MenuOpened.png │ ├── MenuBar_Scaling_Normal.png │ ├── MenuBar_Scaling_OpenMenuChanged.png │ ├── MenuBar_Textured.png │ ├── OriginScaleRotation.png │ ├── Panel.png │ ├── PanelListBox_NoSelectedHover_HoverSet.png │ ├── PanelListBox_NoSelectedHover_NoHoverSet.png │ ├── PanelListBox_NoSelectedNoHover.png │ ├── PanelListBox_SelectedHoverOther_HoverSet.png │ ├── PanelListBox_SelectedHoverOther_NoHoverSet.png │ ├── PanelListBox_SelectedHoverSelected_HoverSet.png │ ├── PanelListBox_SelectedHoverSelected_NoHoverSet.png │ ├── PanelListBox_SelectedNoHover.png │ ├── Picture.png │ ├── ProgressBar_BottomToTop.png │ ├── ProgressBar_LeftToRight.png │ ├── ProgressBar_LeftToRight_TextFillColor.png │ ├── ProgressBar_RightToLeft.png │ ├── ProgressBar_RightToLeft_TextFillColor.png │ ├── ProgressBar_TextOutline.png │ ├── ProgressBar_Textured_BottomToTop.png │ ├── ProgressBar_Textured_LeftToRight.png │ ├── ProgressBar_Textured_LeftToRight_TextFillColor.png │ ├── ProgressBar_Textured_RightToLeft.png │ ├── ProgressBar_Textured_RightToLeft_TextFillColor.png │ ├── ProgressBar_Textured_TopToBottom.png │ ├── ProgressBar_TopToBottom.png │ ├── RadioButtonGroup.png │ ├── RadioButton_CheckedDisabled_DisabledSet.png │ ├── RadioButton_CheckedDisabled_NormalSet.png │ ├── RadioButton_CheckedDisabled_TextureDisabledSet.png │ ├── RadioButton_CheckedDisabled_TextureNormalSet.png │ ├── RadioButton_CheckedHover_HoverSet.png │ ├── RadioButton_CheckedHover_NormalSet.png │ ├── RadioButton_CheckedHover_TextureHoverSet.png │ ├── RadioButton_CheckedHover_TextureNormalSet.png │ ├── RadioButton_CheckedNormal_HoverSet.png │ ├── RadioButton_CheckedNormal_NormalSet.png │ ├── RadioButton_CheckedNormal_TextureHoverSet.png │ ├── RadioButton_CheckedNormal_TextureNormalSet.png │ ├── RadioButton_Disabled_DisabledSet.png │ ├── RadioButton_Disabled_NormalSet.png │ ├── RadioButton_Disabled_TextureDisabledSet.png │ ├── RadioButton_Disabled_TextureNormalSet.png │ ├── RadioButton_Hover_HoverSet.png │ ├── RadioButton_Hover_NormalSet.png │ ├── RadioButton_Hover_TextureHoverSet.png │ ├── RadioButton_Hover_TextureNormalSet.png │ ├── RadioButton_MaxWidth.png │ ├── RadioButton_Normal_HoverSet.png │ ├── RadioButton_Normal_NormalSet.png │ ├── RadioButton_Normal_TextureHoverSet.png │ ├── RadioButton_Normal_TextureNormalSet.png │ ├── RangeSlider_Hover_HoverSet.png │ ├── RangeSlider_Hover_NormalSet.png │ ├── RangeSlider_Hover_TextureHoverSet.png │ ├── RangeSlider_Hover_TextureNormalSet.png │ ├── RangeSlider_Normal_HoverSet.png │ ├── RangeSlider_Normal_NormalSet.png │ ├── RangeSlider_Normal_TextureHoverSet.png │ ├── RangeSlider_Normal_TextureNormalSet.png │ ├── RichTextLabel.png │ ├── RichTextLabel_Outline.png │ ├── ScrollablePanel.png │ ├── ScrollablePanel_NoHorizontalScrollbar.png │ ├── ScrollablePanel_NoScrollbars.png │ ├── ScrollablePanel_NoVerticalScrollbar.png │ ├── ScrollablePanel_SmallContentSize.png │ ├── ScrollablePanel_SmallContentSize_BothScrollbars.png │ ├── ScrollablePanel_SmallContentSize_HorizontalScrollbar.png │ ├── ScrollablePanel_SmallContentSize_VerticalScrollbar.png │ ├── Scrollbar_HoverArrowLeft_HoverSet.png │ ├── Scrollbar_HoverArrowLeft_TextureHoverSet.png │ ├── Scrollbar_HoverArrowRight_HoverSet.png │ ├── Scrollbar_HoverArrowRight_TextureHoverSet.png │ ├── Scrollbar_HoverThumb_HoverSet.png │ ├── Scrollbar_HoverThumb_TextureHoverSet.png │ ├── Scrollbar_HoverTrackLeft_HoverSet.png │ ├── Scrollbar_HoverTrackLeft_TextureHoverSet.png │ ├── Scrollbar_HoverTrackRight_HoverSet.png │ ├── Scrollbar_HoverTrackRight_TextureHoverSet.png │ ├── Scrollbar_Hover_NormalSet.png │ ├── Scrollbar_Hover_TextureNormalSet.png │ ├── Scrollbar_Normal_HoverSet.png │ ├── Scrollbar_Normal_NormalSet.png │ ├── Scrollbar_Normal_TextureHoverSet.png │ ├── Scrollbar_Normal_TextureNormalSet.png │ ├── Slider_Hover_HoverSet.png │ ├── Slider_Hover_NormalSet.png │ ├── Slider_Hover_TextureHoverSet.png │ ├── Slider_Hover_TextureNormalSet.png │ ├── Slider_NonSquareThumbTexture.png │ ├── Slider_NonSquareThumbTexture_Rotated.png │ ├── Slider_Normal_HoverSet.png │ ├── Slider_Normal_NormalSet.png │ ├── Slider_Normal_TextureHoverSet.png │ ├── Slider_Normal_TextureNormalSet.png │ ├── Slider_TextureThumbInsideTrack.png │ ├── Slider_TextureThumbOutsideTrack.png │ ├── Slider_ThumbInsideTrack.png │ ├── Slider_ThumbOutsideTrack.png │ ├── SpinButton_Horizontal_Flat.png │ ├── SpinButton_Horizontal_Long.png │ ├── SpinButton_HoverLeft_HoverSet.png │ ├── SpinButton_HoverLeft_NormalSet.png │ ├── SpinButton_HoverLeft_TextureHoverSet.png │ ├── SpinButton_HoverLeft_TextureNormalSet.png │ ├── SpinButton_HoverRight_HoverSet.png │ ├── SpinButton_HoverRight_NormalSet.png │ ├── SpinButton_HoverRight_TextureHoverSet.png │ ├── SpinButton_HoverRight_TextureNormalSet.png │ ├── SpinButton_Normal_HoverSet.png │ ├── SpinButton_Normal_NormalSet.png │ ├── SpinButton_Normal_TextureHoverSet.png │ ├── SpinButton_Normal_TextureNormalSet.png │ ├── SpinButton_Vertical.png │ ├── SplitContainer_Horizontal.png │ ├── SplitContainer_Horizontal_SplitterHover.png │ ├── SplitContainer_Vertical.png │ ├── SplitContainer_Vertical_SplitterHover.png │ ├── Sprite_Tall_Horizontal.png │ ├── Sprite_Tall_NineSlice.png │ ├── Sprite_Tall_NineSliceScaled.png │ ├── Sprite_Tall_Stretched.png │ ├── Sprite_Tall_Vertical.png │ ├── Sprite_Wide_Horizontal.png │ ├── Sprite_Wide_NineSlice.png │ ├── Sprite_Wide_NineSliceScaled.png │ ├── Sprite_Wide_Stretched.png │ ├── Sprite_Wide_Vertical.png │ ├── Svg.png │ ├── Svg_TransformedAndColored.png │ ├── Tabs_HoverSelected_HoverSet.png │ ├── Tabs_HoverSelected_NormalSet.png │ ├── Tabs_HoverSelected_TextureHoverSet.png │ ├── Tabs_HoverSelected_TextureNormalSet.png │ ├── Tabs_Hover_HoverSet.png │ ├── Tabs_Hover_NormalSet.png │ ├── Tabs_Hover_TextureHoverSet.png │ ├── Tabs_Hover_TextureNormalSet.png │ ├── Tabs_Normal_HoverSet.png │ ├── Tabs_Normal_NormalSet.png │ ├── Tabs_Normal_TextureHoverSet.png │ ├── Tabs_Normal_TextureNormalSet.png │ ├── TextArea.png │ ├── TextArea_BothScrollbars.png │ ├── TextArea_ForcedScrollbars.png │ ├── TextArea_HorizontalScrollbar.png │ ├── TextArea_NoScrollbars.png │ ├── TextArea_Textured.png │ ├── TextArea_VerticalScrollbar.png │ ├── Texture_SFML_Shader.png │ ├── Texture_SFML_Shader_Rotation.png │ ├── ToggleButton_Disabled_DisabledSet.png │ ├── ToggleButton_Disabled_NormalSet.png │ ├── ToggleButton_Disabled_TextureDisabledSet.png │ ├── ToggleButton_Disabled_TextureNormalSet.png │ ├── ToggleButton_DownHover_DownSet.png │ ├── ToggleButton_DownHover_HoverSet.png │ ├── ToggleButton_DownHover_NormalSet.png │ ├── ToggleButton_DownHover_TextureDownSet.png │ ├── ToggleButton_DownHover_TextureHoverSet.png │ ├── ToggleButton_DownHover_TextureNormalSet.png │ ├── ToggleButton_Down_DownSet.png │ ├── ToggleButton_Down_HoverSet.png │ ├── ToggleButton_Down_NormalSet.png │ ├── ToggleButton_Down_TextureDownSet.png │ ├── ToggleButton_Down_TextureHoverSet.png │ ├── ToggleButton_Down_TextureNormalSet.png │ ├── ToggleButton_Hover_DownSet.png │ ├── ToggleButton_Hover_HoverSet.png │ ├── ToggleButton_Hover_NormalSet.png │ ├── ToggleButton_Hover_TextureDownSet.png │ ├── ToggleButton_Hover_TextureHoverSet.png │ ├── ToggleButton_Hover_TextureNormalSet.png │ ├── ToggleButton_Normal_DownSet.png │ ├── ToggleButton_Normal_HoverSet.png │ ├── ToggleButton_Normal_NormalSet.png │ ├── ToggleButton_Normal_Outline.png │ ├── ToggleButton_Normal_TextureDownSet.png │ ├── ToggleButton_Normal_TextureHoverSet.png │ ├── ToggleButton_Normal_TextureNormalSet.png │ ├── TreeView_NoSelectedHover_HoverSet.png │ ├── TreeView_NoSelectedHover_HoverSet_Texture.png │ ├── TreeView_NoSelectedHover_NoHoverSet.png │ ├── TreeView_NoSelectedHover_NoHoverSet_Texture.png │ ├── TreeView_NoSelectedNoHover.png │ ├── TreeView_NoSelectedNoHover_Texture.png │ ├── TreeView_SelectedHoverOther_HoverSet.png │ ├── TreeView_SelectedHoverOther_HoverSet_Texture.png │ ├── TreeView_SelectedHoverOther_NoHoverSet.png │ ├── TreeView_SelectedHoverOther_NoHoverSet_Texture.png │ ├── TreeView_SelectedHoverSelected_HoverSet.png │ ├── TreeView_SelectedHoverSelected_HoverSet_Texture.png │ ├── TreeView_SelectedHoverSelected_NoHoverSet.png │ ├── TreeView_SelectedHoverSelected_NoHoverSet_Texture.png │ ├── TreeView_SelectedNoHover.png │ └── TreeView_SelectedNoHover_Texture.png ├── main.cpp └── resources │ ├── 9slice.png │ ├── CheckBox1.png │ ├── CheckBox2.png │ ├── DejaVuSans.ttf │ ├── DejaVuSansLicense.txt │ ├── KnobBack.png │ ├── KnobFront.png │ ├── SFML.svg │ ├── Texture1.png │ ├── Texture2.png │ ├── Texture3.png │ ├── Texture4.png │ ├── Texture5.png │ ├── Texture6.png │ ├── Texture7.png │ ├── Texture8.png │ ├── TextureRect1.png │ ├── TextureRect2.png │ ├── TextureRect3.png │ ├── ThemeButton1.txt │ ├── ThemeButton2.txt │ ├── ThemeComments.txt │ ├── ThemeMultipleButtons.txt │ ├── ThemeNested.txt │ ├── ThemeSpecialCases.txt │ ├── TitleBar.png │ ├── TransparentParts.png │ ├── TreeViewCollapsed.png │ ├── TreeViewExpanded.png │ ├── TreeViewLeaf.png │ ├── image.bmp │ ├── image.jpg │ └── image.png └── themes ├── BabyBlue.png ├── BabyBlue.txt ├── Black.png ├── Black.txt ├── More themes.txt ├── TransparentGrey.txt └── development └── Black ├── .gitignore ├── Black.txt.in ├── README.txt ├── generate.py └── images ├── ArrowDown.png ├── ArrowDownHover.png ├── ArrowUp.png ├── ArrowUpHover.png ├── Background.png ├── ButtonBackground.png ├── ButtonBackgroundDown.png ├── ButtonBackgroundFocused.png ├── ButtonBackgroundHover.png ├── CheckBoxChecked.png ├── CheckBoxCheckedFocused.png ├── CheckBoxCheckedHover.png ├── CheckBoxUnchecked.png ├── CheckBoxUncheckedFocused.png ├── CheckBoxUncheckedHover.png ├── CloseButton.png ├── CloseButtonDown.png ├── CloseButtonHover.png ├── ComboBoxArrow.png ├── ComboBoxArrowHover.png ├── EditBoxBackground.png ├── EditBoxBackgroundFocused.png ├── EditBoxBackgroundHover.png ├── MaximizeButton.png ├── MaximizeButtonDown.png ├── MaximizeButtonHover.png ├── MenuBarItem.png ├── MenuBarItemSelected.png ├── MenuBarMenu.png ├── MinimizeButton.png ├── MinimizeButtonDown.png ├── MinimizeButtonHover.png ├── ProgressBarBackground.png ├── ProgressBarForeground.png ├── RadioButtonChecked.png ├── RadioButtonCheckedFocused.png ├── RadioButtonCheckedHover.png ├── RadioButtonUnchecked.png ├── RadioButtonUncheckedFocused.png ├── RadioButtonUncheckedHover.png ├── ScrollbarThumb.png ├── ScrollbarThumbHover.png ├── ScrollbarTrack.png ├── ScrollbarTrackHover.png ├── SliderThumb.png ├── SliderTrack.png ├── SliderTrackHover.png ├── TabBackground.png ├── TabBackgroundSelected.png └── TitleBar.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/.github/.codecov.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/changelog.md -------------------------------------------------------------------------------- /cmake/Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Config.cmake -------------------------------------------------------------------------------- /cmake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Dependencies.cmake -------------------------------------------------------------------------------- /cmake/Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Macros.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Modules/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSDL2_ttf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Modules/FindSDL2_ttf.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findglfw3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Modules/Findglfw3.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findraylib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/Modules/Findraylib.cmake -------------------------------------------------------------------------------- /cmake/TGUIConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/TGUIConfig.cmake.in -------------------------------------------------------------------------------- /cmake/gui-builder/TexusGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/gui-builder/TexusGUI.png -------------------------------------------------------------------------------- /cmake/gui-builder/tgui-gui-builder.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/gui-builder/tgui-gui-builder.desktop.in -------------------------------------------------------------------------------- /cmake/pkgconfig/tgui.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/cmake/pkgconfig/tgui.pc.in -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/custom.css -------------------------------------------------------------------------------- /doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/doxyfile.in -------------------------------------------------------------------------------- /doc/doxygen-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/doxygen-awesome.css -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/footer.html -------------------------------------------------------------------------------- /doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/header.html -------------------------------------------------------------------------------- /doc/mainpage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/doc/mainpage.hpp -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/android/RAYLIB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/.gitignore -------------------------------------------------------------------------------- /examples/android/RAYLIB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/LICENSE -------------------------------------------------------------------------------- /examples/android/RAYLIB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/README.md -------------------------------------------------------------------------------- /examples/android/RAYLIB/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /examples/android/RAYLIB/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/app/build.gradle -------------------------------------------------------------------------------- /examples/android/RAYLIB/app/libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/android/RAYLIB/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/android/RAYLIB/app/src/main/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/android/RAYLIB/app/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/app/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /examples/android/RAYLIB/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/build.gradle -------------------------------------------------------------------------------- /examples/android/RAYLIB/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/gradle.properties -------------------------------------------------------------------------------- /examples/android/RAYLIB/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/gradlew -------------------------------------------------------------------------------- /examples/android/RAYLIB/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/gradlew.bat -------------------------------------------------------------------------------- /examples/android/RAYLIB/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/RAYLIB/settings.gradle -------------------------------------------------------------------------------- /examples/android/SDL_GPU/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/.gitignore -------------------------------------------------------------------------------- /examples/android/SDL_GPU/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/app/build.gradle.kts -------------------------------------------------------------------------------- /examples/android/SDL_GPU/app/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/app/jni/CMakeLists.txt -------------------------------------------------------------------------------- /examples/android/SDL_GPU/app/jni/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/app/jni/example.cpp -------------------------------------------------------------------------------- /examples/android/SDL_GPU/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/android/SDL_GPU/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/build.gradle.kts -------------------------------------------------------------------------------- /examples/android/SDL_GPU/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/gradle.properties -------------------------------------------------------------------------------- /examples/android/SDL_GPU/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/gradlew -------------------------------------------------------------------------------- /examples/android/SDL_GPU/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_GPU/gradlew.bat -------------------------------------------------------------------------------- /examples/android/SDL_GPU/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | include(":app") 2 | -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_RENDERER/.gitignore -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_RENDERER/app/build.gradle.kts -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_RENDERER/build.gradle.kts -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_RENDERER/gradle.properties -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_RENDERER/gradlew -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_RENDERER/gradlew.bat -------------------------------------------------------------------------------- /examples/android/SDL_RENDERER/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | include(":app") 2 | -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/.gitignore -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/README.txt -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/app/build.gradle -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/app/jni/Application.mk: -------------------------------------------------------------------------------- 1 | # We link to STL dynamically 2 | APP_STL := c++_shared 3 | -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/build.gradle -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/gradle.properties -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/gradlew -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SDL_TTF_GLES2/gradlew.bat -------------------------------------------------------------------------------- /examples/android/SDL_TTF_GLES2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SFML_GRAPHICS/.gitignore -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SFML_GRAPHICS/app/build.gradle.kts -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SFML_GRAPHICS/build.gradle.kts -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SFML_GRAPHICS/gradle.properties -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SFML_GRAPHICS/gradlew -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/android/SFML_GRAPHICS/gradlew.bat -------------------------------------------------------------------------------- /examples/android/SFML_GRAPHICS/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | include(":app") 2 | -------------------------------------------------------------------------------- /examples/iOS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/iOS/CMakeLists.txt -------------------------------------------------------------------------------- /examples/iOS/assets/Background-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/iOS/assets/Background-Landscape.png -------------------------------------------------------------------------------- /examples/iOS/assets/Background-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/iOS/assets/Background-Portrait.png -------------------------------------------------------------------------------- /examples/iOS/iOS-example-SDL_RENDERER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/iOS/iOS-example-SDL_RENDERER.cpp -------------------------------------------------------------------------------- /examples/iOS/iOS-example-SFML_GRAPHICS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/iOS/iOS-example-SFML_GRAPHICS.cpp -------------------------------------------------------------------------------- /examples/main-GLFW_GLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-GLFW_GLES2.cpp -------------------------------------------------------------------------------- /examples/main-GLFW_OPENGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-GLFW_OPENGL3.cpp -------------------------------------------------------------------------------- /examples/main-RAYLIB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-RAYLIB.cpp -------------------------------------------------------------------------------- /examples/main-SDL_GLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SDL_GLES2.cpp -------------------------------------------------------------------------------- /examples/main-SDL_GPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SDL_GPU.cpp -------------------------------------------------------------------------------- /examples/main-SDL_OPENGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SDL_OPENGL3.cpp -------------------------------------------------------------------------------- /examples/main-SDL_RENDERER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SDL_RENDERER.cpp -------------------------------------------------------------------------------- /examples/main-SDL_TTF_GLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SDL_TTF_GLES2.cpp -------------------------------------------------------------------------------- /examples/main-SDL_TTF_OPENGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SDL_TTF_OPENGL3.cpp -------------------------------------------------------------------------------- /examples/main-SFML_GRAPHICS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SFML_GRAPHICS.cpp -------------------------------------------------------------------------------- /examples/main-SFML_OPENGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/main-SFML_OPENGL3.cpp -------------------------------------------------------------------------------- /examples/many_different_widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/many_different_widgets/CMakeLists.txt -------------------------------------------------------------------------------- /examples/many_different_widgets/Expected_Output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/many_different_widgets/Expected_Output.jpg -------------------------------------------------------------------------------- /examples/many_different_widgets/RedBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/many_different_widgets/RedBackground.jpg -------------------------------------------------------------------------------- /examples/scalable_login_screen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/examples/scalable_login_screen/CMakeLists.txt -------------------------------------------------------------------------------- /gui-builder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/CMakeLists.txt -------------------------------------------------------------------------------- /gui-builder/include/Form.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/include/Form.hpp -------------------------------------------------------------------------------- /gui-builder/include/GuiBuilder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/include/GuiBuilder.hpp -------------------------------------------------------------------------------- /gui-builder/include/WidgetInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/include/WidgetInfo.hpp -------------------------------------------------------------------------------- /gui-builder/resources/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/ArrowDown.png -------------------------------------------------------------------------------- /gui-builder/resources/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/ArrowUp.png -------------------------------------------------------------------------------- /gui-builder/resources/DefaultPicture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/DefaultPicture.png -------------------------------------------------------------------------------- /gui-builder/resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/Icon.png -------------------------------------------------------------------------------- /gui-builder/resources/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/Info.png -------------------------------------------------------------------------------- /gui-builder/resources/LoadFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/LoadFile.png -------------------------------------------------------------------------------- /gui-builder/resources/NewFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/NewFile.png -------------------------------------------------------------------------------- /gui-builder/resources/SelectionSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/SelectionSquare.png -------------------------------------------------------------------------------- /gui-builder/resources/SelectionSquare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/SelectionSquare.txt -------------------------------------------------------------------------------- /gui-builder/resources/Transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/Transparent.png -------------------------------------------------------------------------------- /gui-builder/resources/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/Trash.png -------------------------------------------------------------------------------- /gui-builder/resources/forms/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/About.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/EditThemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/EditThemes.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/EditingScreen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/EditingScreen.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/KeyboardShortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/KeyboardShortcuts.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/SetListViewColumns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/SetListViewColumns.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/SetMultilineString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/SetMultilineString.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/SetOutline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/SetOutline.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/SetStringList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/SetStringList.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/SetTextStyle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/SetTextStyle.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/SetTexture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/SetTexture.txt -------------------------------------------------------------------------------- /gui-builder/resources/forms/StartScreen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/forms/StartScreen.txt -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/BitmapButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/BitmapButton.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Button.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/ChatBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/ChatBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/CheckBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/CheckBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/ChildWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/ChildWindow.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/ComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/ComboBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/EditBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/EditBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Group.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Knob.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Label.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/ListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/ListBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/ListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/ListView.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/MenuBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/MenuBar.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/MessageBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/MessageBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Panel.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/PanelListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/PanelListBox.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Picture.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Scrollbar.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Slider.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/Tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/Tabs.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/TextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/TextArea.png -------------------------------------------------------------------------------- /gui-builder/resources/widget-icons/TreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/resources/widget-icons/TreeView.png -------------------------------------------------------------------------------- /gui-builder/src/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/src/Form.cpp -------------------------------------------------------------------------------- /gui-builder/src/GuiBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/src/GuiBuilder.cpp -------------------------------------------------------------------------------- /gui-builder/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/gui-builder/src/main.cpp -------------------------------------------------------------------------------- /include/TGUI/AbsoluteOrRelativeValue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/AbsoluteOrRelativeValue.hpp -------------------------------------------------------------------------------- /include/TGUI/AllWidgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/AllWidgets.hpp -------------------------------------------------------------------------------- /include/TGUI/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Animation.hpp -------------------------------------------------------------------------------- /include/TGUI/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Any.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Font/BackendFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Font/BackendFont.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Font/BackendFontFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Font/BackendFontFactory.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/GLFW-GLES2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/GLFW-GLES2.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/GLFW-OpenGL3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/GLFW-OpenGL3.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Renderer/BackendText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Renderer/BackendText.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Renderer/BackendTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Renderer/BackendTexture.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Renderer/OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Renderer/OpenGL.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SDL-GLES2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SDL-GLES2.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SDL-GPU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SDL-GPU.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SDL-OpenGL3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SDL-OpenGL3.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SDL-Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SDL-Renderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SDL-TTF-GLES2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SDL-TTF-GLES2.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SDL-TTF-OpenGL3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SDL-TTF-OpenGL3.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SFML-Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SFML-Graphics.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/SFML-OpenGL3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/SFML-OpenGL3.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Window/Backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Window/Backend.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Window/BackendGui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Window/BackendGui.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Window/GLFW/BackendGLFW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Window/GLFW/BackendGLFW.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Window/SDL/BackendSDL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Window/SDL/BackendSDL.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/Window/SFML/BackendSFML.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/Window/SFML/BackendSFML.hpp -------------------------------------------------------------------------------- /include/TGUI/Backend/raylib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Backend/raylib.hpp -------------------------------------------------------------------------------- /include/TGUI/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Base64.hpp -------------------------------------------------------------------------------- /include/TGUI/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Color.hpp -------------------------------------------------------------------------------- /include/TGUI/Components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Components.hpp -------------------------------------------------------------------------------- /include/TGUI/Config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Config.hpp.in -------------------------------------------------------------------------------- /include/TGUI/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Container.hpp -------------------------------------------------------------------------------- /include/TGUI/CopiedPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/CopiedPtr.hpp -------------------------------------------------------------------------------- /include/TGUI/CopiedSharedPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/CopiedSharedPtr.hpp -------------------------------------------------------------------------------- /include/TGUI/Core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Core.hpp -------------------------------------------------------------------------------- /include/TGUI/Cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Cursor.hpp -------------------------------------------------------------------------------- /include/TGUI/CustomWidgetForBindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/CustomWidgetForBindings.hpp -------------------------------------------------------------------------------- /include/TGUI/DefaultBackendWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/DefaultBackendWindow.hpp -------------------------------------------------------------------------------- /include/TGUI/DefaultFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/DefaultFont.hpp -------------------------------------------------------------------------------- /include/TGUI/Duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Duration.hpp -------------------------------------------------------------------------------- /include/TGUI/Event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Event.hpp -------------------------------------------------------------------------------- /include/TGUI/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Exception.hpp -------------------------------------------------------------------------------- /include/TGUI/FileDialogIconLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/FileDialogIconLoader.hpp -------------------------------------------------------------------------------- /include/TGUI/Filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Filesystem.hpp -------------------------------------------------------------------------------- /include/TGUI/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Font.hpp -------------------------------------------------------------------------------- /include/TGUI/Global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Global.hpp -------------------------------------------------------------------------------- /include/TGUI/Keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Keyboard.hpp -------------------------------------------------------------------------------- /include/TGUI/Layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Layout.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/DataIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/DataIO.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/Deserializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/Deserializer.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/ImageLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/ImageLoader.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/Serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/Serializer.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/Theme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/Theme.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/ThemeLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/ThemeLoader.hpp -------------------------------------------------------------------------------- /include/TGUI/Loading/WidgetFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Loading/WidgetFactory.hpp -------------------------------------------------------------------------------- /include/TGUI/ObjectConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/ObjectConverter.hpp -------------------------------------------------------------------------------- /include/TGUI/Optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Optional.hpp -------------------------------------------------------------------------------- /include/TGUI/Outline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Outline.hpp -------------------------------------------------------------------------------- /include/TGUI/Rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Rect.hpp -------------------------------------------------------------------------------- /include/TGUI/RelFloatRect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/RelFloatRect.hpp -------------------------------------------------------------------------------- /include/TGUI/RenderStates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/RenderStates.hpp -------------------------------------------------------------------------------- /include/TGUI/RendererDefines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/RendererDefines.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/BoxLayoutRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/BoxLayoutRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ButtonRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ButtonRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ChatBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ChatBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/CheckBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/CheckBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ChildWindowRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ChildWindowRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ColorPickerRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ColorPickerRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ComboBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ComboBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ContextMenuRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ContextMenuRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/EditBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/EditBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/FileDialogRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/FileDialogRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/GroupRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/GroupRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/KnobRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/KnobRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/LabelRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/LabelRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ListBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ListBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ListViewRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ListViewRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/MenuBarRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/MenuBarRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/MessageBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/MessageBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/PanelListBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/PanelListBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/PanelRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/PanelRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/PictureRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/PictureRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ProgressBarRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ProgressBarRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/RadioButtonRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/RadioButtonRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/RangeSliderRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/RangeSliderRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/ScrollbarRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/ScrollbarRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/SeparatorLineRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/SeparatorLineRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/SliderRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/SliderRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/SpinButtonRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/SpinButtonRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/TabsRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/TabsRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/TextAreaRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/TextAreaRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/TextBoxRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/TextBoxRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/TreeViewRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/TreeViewRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Renderers/WidgetRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Renderers/WidgetRenderer.hpp -------------------------------------------------------------------------------- /include/TGUI/Signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Signal.hpp -------------------------------------------------------------------------------- /include/TGUI/SignalManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/SignalManager.hpp -------------------------------------------------------------------------------- /include/TGUI/Sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Sprite.hpp -------------------------------------------------------------------------------- /include/TGUI/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/String.hpp -------------------------------------------------------------------------------- /include/TGUI/StringView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/StringView.hpp -------------------------------------------------------------------------------- /include/TGUI/SubwidgetContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/SubwidgetContainer.hpp -------------------------------------------------------------------------------- /include/TGUI/SvgImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/SvgImage.hpp -------------------------------------------------------------------------------- /include/TGUI/TGUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/TGUI.hpp -------------------------------------------------------------------------------- /include/TGUI/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Text.hpp -------------------------------------------------------------------------------- /include/TGUI/TextStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/TextStyle.hpp -------------------------------------------------------------------------------- /include/TGUI/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Texture.hpp -------------------------------------------------------------------------------- /include/TGUI/TextureData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/TextureData.hpp -------------------------------------------------------------------------------- /include/TGUI/TextureManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/TextureManager.hpp -------------------------------------------------------------------------------- /include/TGUI/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Timer.hpp -------------------------------------------------------------------------------- /include/TGUI/ToolTip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/ToolTip.hpp -------------------------------------------------------------------------------- /include/TGUI/Transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Transform.hpp -------------------------------------------------------------------------------- /include/TGUI/TwoFingerScrollDetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/TwoFingerScrollDetect.hpp -------------------------------------------------------------------------------- /include/TGUI/Utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Utf.hpp -------------------------------------------------------------------------------- /include/TGUI/Variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Variant.hpp -------------------------------------------------------------------------------- /include/TGUI/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Vector2.hpp -------------------------------------------------------------------------------- /include/TGUI/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Vertex.hpp -------------------------------------------------------------------------------- /include/TGUI/Widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widget.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/BitmapButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/BitmapButton.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/BoxLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/BoxLayout.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/BoxLayoutRatios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/BoxLayoutRatios.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Button.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ButtonBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ButtonBase.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/CanvasBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/CanvasBase.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ChatBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ChatBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/CheckBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/CheckBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ChildWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ChildWindow.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ClickableWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ClickableWidget.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ColorPicker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ColorPicker.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ComboBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ContextMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ContextMenu.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/EditBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/EditBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/EditBoxSlider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/EditBoxSlider.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/FileDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/FileDialog.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Grid.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Group.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/GrowHorizontalLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/GrowHorizontalLayout.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/GrowVerticalLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/GrowVerticalLayout.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/HorizontalLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/HorizontalLayout.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/HorizontalWrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/HorizontalWrap.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Knob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Knob.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Label.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ListBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ListBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ListView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ListView.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/MenuBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/MenuBar.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/MenuWidgetBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/MenuWidgetBase.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/MessageBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/MessageBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Panel.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/PanelListBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/PanelListBox.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Picture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Picture.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ProgressBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ProgressBar.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/RadioButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/RadioButton.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/RadioButtonGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/RadioButtonGroup.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/RangeSlider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/RangeSlider.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/RichTextLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/RichTextLabel.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ScrollablePanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ScrollablePanel.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Scrollbar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Scrollbar.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/SeparatorLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/SeparatorLine.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Slider.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/SpinButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/SpinButton.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/SpinControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/SpinControl.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/SplitContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/SplitContainer.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/TabContainer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/TabContainer.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/Tabs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/Tabs.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/TextArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/TextArea.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/ToggleButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/ToggleButton.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/TreeView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/TreeView.hpp -------------------------------------------------------------------------------- /include/TGUI/Widgets/VerticalLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/Widgets/VerticalLayout.hpp -------------------------------------------------------------------------------- /include/TGUI/WindowsIMM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/WindowsIMM.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Config.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Dispatch.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/License.txt -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Meta.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Meta/Templates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Meta/Templates.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Meta/Tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Meta/Tuple.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Meta/Variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Meta/Variadic.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/README.md -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/SmartPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/SmartPtr.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Algorithms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Algorithms.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Any.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Downcast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Downcast.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Exceptions.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/ForEach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/ForEach.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Hash.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/NamedTuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/NamedTuple.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Optional.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/PImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/PImpl.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/SafeBool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/SafeBool.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Swap.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/Aurora/Tools/Typeid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/Aurora/Tools/Typeid.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/IncludeNanoSVG.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/IncludeNanoSVG.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/IncludeSDL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/IncludeSDL.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/IncludeStbImage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/IncludeStbImage.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/IncludeStbImageWrite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/IncludeStbImageWrite.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/IncludeWindows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/IncludeWindows.hpp -------------------------------------------------------------------------------- /include/TGUI/extlibs/glad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/glad/LICENSE -------------------------------------------------------------------------------- /include/TGUI/extlibs/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/glad/gl.h -------------------------------------------------------------------------------- /include/TGUI/extlibs/nanosvg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/nanosvg/LICENSE.txt -------------------------------------------------------------------------------- /include/TGUI/extlibs/nanosvg/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/nanosvg/README.txt -------------------------------------------------------------------------------- /include/TGUI/extlibs/nanosvg/nanosvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/nanosvg/nanosvg.h -------------------------------------------------------------------------------- /include/TGUI/extlibs/nanosvg/nanosvgrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/nanosvg/nanosvgrast.h -------------------------------------------------------------------------------- /include/TGUI/extlibs/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/stb/LICENSE -------------------------------------------------------------------------------- /include/TGUI/extlibs/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/stb/stb_image.h -------------------------------------------------------------------------------- /include/TGUI/extlibs/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/include/TGUI/extlibs/stb/stb_image_write.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/license.txt -------------------------------------------------------------------------------- /src/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Animation.cpp -------------------------------------------------------------------------------- /src/Backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/CMakeLists.txt -------------------------------------------------------------------------------- /src/Backend/Font/BackendFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Font/BackendFont.cpp -------------------------------------------------------------------------------- /src/Backend/Font/Raylib/BackendFontRaylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Font/Raylib/BackendFontRaylib.cpp -------------------------------------------------------------------------------- /src/Backend/Font/Raylib/BackendFontRaylib.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Font/Raylib/BackendFontRaylib.cppm -------------------------------------------------------------------------------- /src/Backend/Font/SDL_ttf/BackendFontSDLttf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Font/SDL_ttf/BackendFontSDLttf.cpp -------------------------------------------------------------------------------- /src/Backend/Font/SDL_ttf/BackendFontSDLttf.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Font/SDL_ttf/BackendFontSDLttf.cppm -------------------------------------------------------------------------------- /src/Backend/GLFW-GLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/GLFW-GLES2.cpp -------------------------------------------------------------------------------- /src/Backend/GLFW-GLES2.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/GLFW-GLES2.cppm -------------------------------------------------------------------------------- /src/Backend/GLFW-OpenGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/GLFW-OpenGL3.cpp -------------------------------------------------------------------------------- /src/Backend/GLFW-OpenGL3.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/GLFW-OpenGL3.cppm -------------------------------------------------------------------------------- /src/Backend/Renderer/BackendRenderTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/BackendRenderTarget.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/BackendText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/BackendText.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/BackendTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/BackendTexture.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/GLES2/CanvasGLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/GLES2/CanvasGLES2.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/OpenGL.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/OpenGL3/CanvasOpenGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/OpenGL3/CanvasOpenGL3.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/Raylib/CanvasRaylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/Raylib/CanvasRaylib.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/SDL_GPU/CanvasSDLGPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/SDL_GPU/CanvasSDLGPU.cpp -------------------------------------------------------------------------------- /src/Backend/Renderer/SDL_GPU/shaders/.gitignore: -------------------------------------------------------------------------------- 1 | *.spv 2 | *.msl 3 | *.dxil 4 | -------------------------------------------------------------------------------- /src/Backend/Renderer/SDL_Renderer/CanvasSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Renderer/SDL_Renderer/CanvasSDL.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-GLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-GLES2.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-GLES2.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-GLES2.cppm -------------------------------------------------------------------------------- /src/Backend/SDL-GPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-GPU.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-GPU.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-GPU.cppm -------------------------------------------------------------------------------- /src/Backend/SDL-OpenGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-OpenGL3.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-OpenGL3.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-OpenGL3.cppm -------------------------------------------------------------------------------- /src/Backend/SDL-Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-Renderer.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-Renderer.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-Renderer.cppm -------------------------------------------------------------------------------- /src/Backend/SDL-TTF-GLES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-TTF-GLES2.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-TTF-GLES2.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-TTF-GLES2.cppm -------------------------------------------------------------------------------- /src/Backend/SDL-TTF-OpenGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-TTF-OpenGL3.cpp -------------------------------------------------------------------------------- /src/Backend/SDL-TTF-OpenGL3.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SDL-TTF-OpenGL3.cppm -------------------------------------------------------------------------------- /src/Backend/SFML-Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SFML-Graphics.cpp -------------------------------------------------------------------------------- /src/Backend/SFML-Graphics.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SFML-Graphics.cppm -------------------------------------------------------------------------------- /src/Backend/SFML-OpenGL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SFML-OpenGL3.cpp -------------------------------------------------------------------------------- /src/Backend/SFML-OpenGL3.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/SFML-OpenGL3.cppm -------------------------------------------------------------------------------- /src/Backend/Window/Backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/Backend.cpp -------------------------------------------------------------------------------- /src/Backend/Window/BackendGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/BackendGui.cpp -------------------------------------------------------------------------------- /src/Backend/Window/GLFW/BackendGLFW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/GLFW/BackendGLFW.cpp -------------------------------------------------------------------------------- /src/Backend/Window/GLFW/BackendGuiGLFW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/GLFW/BackendGuiGLFW.cpp -------------------------------------------------------------------------------- /src/Backend/Window/GLFW/BackendWindowGLFW.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/GLFW/BackendWindowGLFW.cppm -------------------------------------------------------------------------------- /src/Backend/Window/Raylib/BackendGuiRaylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/Raylib/BackendGuiRaylib.cpp -------------------------------------------------------------------------------- /src/Backend/Window/Raylib/BackendRaylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/Raylib/BackendRaylib.cpp -------------------------------------------------------------------------------- /src/Backend/Window/SDL/BackendGuiSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/SDL/BackendGuiSDL.cpp -------------------------------------------------------------------------------- /src/Backend/Window/SDL/BackendSDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/SDL/BackendSDL.cpp -------------------------------------------------------------------------------- /src/Backend/Window/SDL/BackendWindowSDL.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/SDL/BackendWindowSDL.cppm -------------------------------------------------------------------------------- /src/Backend/Window/SFML/BackendGuiSFML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/SFML/BackendGuiSFML.cpp -------------------------------------------------------------------------------- /src/Backend/Window/SFML/BackendSFML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/SFML/BackendSFML.cpp -------------------------------------------------------------------------------- /src/Backend/Window/SFML/BackendWindowSFML.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/Window/SFML/BackendWindowSFML.cppm -------------------------------------------------------------------------------- /src/Backend/raylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/raylib.cpp -------------------------------------------------------------------------------- /src/Backend/raylib.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Backend/raylib.cppm -------------------------------------------------------------------------------- /src/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Base64.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Color.cpp -------------------------------------------------------------------------------- /src/Components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Components.cpp -------------------------------------------------------------------------------- /src/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Container.cpp -------------------------------------------------------------------------------- /src/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Cursor.cpp -------------------------------------------------------------------------------- /src/CustomWidgetForBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/CustomWidgetForBindings.cpp -------------------------------------------------------------------------------- /src/DefaultBackendWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/DefaultBackendWindow.cpp -------------------------------------------------------------------------------- /src/DefaultBackendWindow.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/DefaultBackendWindow.cppm -------------------------------------------------------------------------------- /src/FileDialogIconLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/FileDialogIconLoader.cpp -------------------------------------------------------------------------------- /src/FileDialogIconLoaderLinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/FileDialogIconLoaderLinux.cpp -------------------------------------------------------------------------------- /src/FileDialogIconLoaderWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/FileDialogIconLoaderWindows.cpp -------------------------------------------------------------------------------- /src/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Filesystem.cpp -------------------------------------------------------------------------------- /src/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Font.cpp -------------------------------------------------------------------------------- /src/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Global.cpp -------------------------------------------------------------------------------- /src/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Layout.cpp -------------------------------------------------------------------------------- /src/Loading/DataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/DataIO.cpp -------------------------------------------------------------------------------- /src/Loading/Deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/Deserializer.cpp -------------------------------------------------------------------------------- /src/Loading/ImageLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/ImageLoader.cpp -------------------------------------------------------------------------------- /src/Loading/Serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/Serializer.cpp -------------------------------------------------------------------------------- /src/Loading/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/Theme.cpp -------------------------------------------------------------------------------- /src/Loading/ThemeLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/ThemeLoader.cpp -------------------------------------------------------------------------------- /src/Loading/WidgetFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Loading/WidgetFactory.cpp -------------------------------------------------------------------------------- /src/ObjectConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/ObjectConverter.cpp -------------------------------------------------------------------------------- /src/Renderers/BoxLayoutRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/BoxLayoutRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ButtonRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ButtonRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ChatBoxRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ChatBoxRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ChildWindowRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ChildWindowRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ColorPickerRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ColorPickerRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ComboBoxRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ComboBoxRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/EditBoxRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/EditBoxRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/FileDialogRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/FileDialogRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/GroupRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/GroupRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/KnobRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/KnobRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/LabelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/LabelRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ListBoxRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ListBoxRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ListViewRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ListViewRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/MenuBarRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/MenuBarRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/MenuWidgetBaseRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/MenuWidgetBaseRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/MessageBoxRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/MessageBoxRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/PanelListBoxRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/PanelListBoxRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/PanelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/PanelRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/PictureRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/PictureRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ProgressBarRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ProgressBarRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/RadioButtonRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/RadioButtonRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/RangeSliderRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/RangeSliderRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ScrollablePanelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ScrollablePanelRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/ScrollbarRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/ScrollbarRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/SeparatorLineRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/SeparatorLineRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/SliderRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/SliderRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/SpinButtonRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/SpinButtonRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/SplitContainerRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/SplitContainerRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/TabsRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/TabsRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/TextAreaRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/TextAreaRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/TreeViewRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/TreeViewRenderer.cpp -------------------------------------------------------------------------------- /src/Renderers/WidgetRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Renderers/WidgetRenderer.cpp -------------------------------------------------------------------------------- /src/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Signal.cpp -------------------------------------------------------------------------------- /src/SignalManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/SignalManager.cpp -------------------------------------------------------------------------------- /src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Sprite.cpp -------------------------------------------------------------------------------- /src/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/String.cpp -------------------------------------------------------------------------------- /src/SubwidgetContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/SubwidgetContainer.cpp -------------------------------------------------------------------------------- /src/SvgImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/SvgImage.cpp -------------------------------------------------------------------------------- /src/TGUI.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/TGUI.cppm -------------------------------------------------------------------------------- /src/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Text.cpp -------------------------------------------------------------------------------- /src/TextStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/TextStyle.cpp -------------------------------------------------------------------------------- /src/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Texture.cpp -------------------------------------------------------------------------------- /src/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/TextureManager.cpp -------------------------------------------------------------------------------- /src/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Timer.cpp -------------------------------------------------------------------------------- /src/ToolTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/ToolTip.cpp -------------------------------------------------------------------------------- /src/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Transform.cpp -------------------------------------------------------------------------------- /src/TwoFingerScrollDetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/TwoFingerScrollDetect.cpp -------------------------------------------------------------------------------- /src/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widget.cpp -------------------------------------------------------------------------------- /src/Widgets/BitmapButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/BitmapButton.cpp -------------------------------------------------------------------------------- /src/Widgets/BoxLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/BoxLayout.cpp -------------------------------------------------------------------------------- /src/Widgets/BoxLayoutRatios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/BoxLayoutRatios.cpp -------------------------------------------------------------------------------- /src/Widgets/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Button.cpp -------------------------------------------------------------------------------- /src/Widgets/ButtonBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ButtonBase.cpp -------------------------------------------------------------------------------- /src/Widgets/CanvasBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/CanvasBase.cpp -------------------------------------------------------------------------------- /src/Widgets/ChatBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ChatBox.cpp -------------------------------------------------------------------------------- /src/Widgets/CheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/CheckBox.cpp -------------------------------------------------------------------------------- /src/Widgets/ChildWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ChildWindow.cpp -------------------------------------------------------------------------------- /src/Widgets/ClickableWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ClickableWidget.cpp -------------------------------------------------------------------------------- /src/Widgets/ColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ColorPicker.cpp -------------------------------------------------------------------------------- /src/Widgets/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ComboBox.cpp -------------------------------------------------------------------------------- /src/Widgets/ContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ContextMenu.cpp -------------------------------------------------------------------------------- /src/Widgets/EditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/EditBox.cpp -------------------------------------------------------------------------------- /src/Widgets/EditBoxSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/EditBoxSlider.cpp -------------------------------------------------------------------------------- /src/Widgets/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/FileDialog.cpp -------------------------------------------------------------------------------- /src/Widgets/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Grid.cpp -------------------------------------------------------------------------------- /src/Widgets/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Group.cpp -------------------------------------------------------------------------------- /src/Widgets/GrowHorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/GrowHorizontalLayout.cpp -------------------------------------------------------------------------------- /src/Widgets/GrowVerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/GrowVerticalLayout.cpp -------------------------------------------------------------------------------- /src/Widgets/HorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/HorizontalLayout.cpp -------------------------------------------------------------------------------- /src/Widgets/HorizontalWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/HorizontalWrap.cpp -------------------------------------------------------------------------------- /src/Widgets/Knob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Knob.cpp -------------------------------------------------------------------------------- /src/Widgets/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Label.cpp -------------------------------------------------------------------------------- /src/Widgets/ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ListBox.cpp -------------------------------------------------------------------------------- /src/Widgets/ListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ListView.cpp -------------------------------------------------------------------------------- /src/Widgets/MenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/MenuBar.cpp -------------------------------------------------------------------------------- /src/Widgets/MenuWidgetBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/MenuWidgetBase.cpp -------------------------------------------------------------------------------- /src/Widgets/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/MessageBox.cpp -------------------------------------------------------------------------------- /src/Widgets/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Panel.cpp -------------------------------------------------------------------------------- /src/Widgets/PanelListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/PanelListBox.cpp -------------------------------------------------------------------------------- /src/Widgets/Picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Picture.cpp -------------------------------------------------------------------------------- /src/Widgets/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ProgressBar.cpp -------------------------------------------------------------------------------- /src/Widgets/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/RadioButton.cpp -------------------------------------------------------------------------------- /src/Widgets/RadioButtonGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/RadioButtonGroup.cpp -------------------------------------------------------------------------------- /src/Widgets/RangeSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/RangeSlider.cpp -------------------------------------------------------------------------------- /src/Widgets/RichTextLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/RichTextLabel.cpp -------------------------------------------------------------------------------- /src/Widgets/ScrollablePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ScrollablePanel.cpp -------------------------------------------------------------------------------- /src/Widgets/Scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Scrollbar.cpp -------------------------------------------------------------------------------- /src/Widgets/SeparatorLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/SeparatorLine.cpp -------------------------------------------------------------------------------- /src/Widgets/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Slider.cpp -------------------------------------------------------------------------------- /src/Widgets/SpinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/SpinButton.cpp -------------------------------------------------------------------------------- /src/Widgets/SpinControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/SpinControl.cpp -------------------------------------------------------------------------------- /src/Widgets/SplitContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/SplitContainer.cpp -------------------------------------------------------------------------------- /src/Widgets/TabContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/TabContainer.cpp -------------------------------------------------------------------------------- /src/Widgets/Tabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/Tabs.cpp -------------------------------------------------------------------------------- /src/Widgets/TextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/TextArea.cpp -------------------------------------------------------------------------------- /src/Widgets/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/ToggleButton.cpp -------------------------------------------------------------------------------- /src/Widgets/TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/TreeView.cpp -------------------------------------------------------------------------------- /src/Widgets/VerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/Widgets/VerticalLayout.cpp -------------------------------------------------------------------------------- /src/WindowsIMM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/src/WindowsIMM.cpp -------------------------------------------------------------------------------- /tests/AbsoluteOrRelativeValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/AbsoluteOrRelativeValue.cpp -------------------------------------------------------------------------------- /tests/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Animation.cpp -------------------------------------------------------------------------------- /tests/BackendEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/BackendEvents.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Clipboard.cpp -------------------------------------------------------------------------------- /tests/Clipping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Clipping.cpp -------------------------------------------------------------------------------- /tests/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Color.cpp -------------------------------------------------------------------------------- /tests/CompareFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/CompareFiles.cpp -------------------------------------------------------------------------------- /tests/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Container.cpp -------------------------------------------------------------------------------- /tests/Duration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Duration.cpp -------------------------------------------------------------------------------- /tests/EnableSoftwareRenderer.env: -------------------------------------------------------------------------------- 1 | __GLX_VENDOR_LIBRARY_NAME=mesa 2 | LIBGL_ALWAYS_SOFTWARE=1 3 | GALLIUM_DRIVER=llvmpipe 4 | -------------------------------------------------------------------------------- /tests/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Filesystem.cpp -------------------------------------------------------------------------------- /tests/Focus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Focus.cpp -------------------------------------------------------------------------------- /tests/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Font.cpp -------------------------------------------------------------------------------- /tests/Layouts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Layouts.cpp -------------------------------------------------------------------------------- /tests/Loading/DataIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Loading/DataIO.cpp -------------------------------------------------------------------------------- /tests/Loading/Deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Loading/Deserializer.cpp -------------------------------------------------------------------------------- /tests/Loading/Serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Loading/Serializer.cpp -------------------------------------------------------------------------------- /tests/Loading/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Loading/Theme.cpp -------------------------------------------------------------------------------- /tests/Loading/ThemeLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Loading/ThemeLoader.cpp -------------------------------------------------------------------------------- /tests/MouseCursors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/MouseCursors.cpp -------------------------------------------------------------------------------- /tests/Outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Outline.cpp -------------------------------------------------------------------------------- /tests/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Signal.cpp -------------------------------------------------------------------------------- /tests/SignalManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/SignalManager.cpp -------------------------------------------------------------------------------- /tests/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Sprite.cpp -------------------------------------------------------------------------------- /tests/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/String.cpp -------------------------------------------------------------------------------- /tests/SvgImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/SvgImage.cpp -------------------------------------------------------------------------------- /tests/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Tests.cpp -------------------------------------------------------------------------------- /tests/Tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Tests.hpp -------------------------------------------------------------------------------- /tests/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Text.cpp -------------------------------------------------------------------------------- /tests/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Texture.cpp -------------------------------------------------------------------------------- /tests/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/TextureManager.cpp -------------------------------------------------------------------------------- /tests/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Timer.cpp -------------------------------------------------------------------------------- /tests/ToolTip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/ToolTip.cpp -------------------------------------------------------------------------------- /tests/Vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Vector2.cpp -------------------------------------------------------------------------------- /tests/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widget.cpp -------------------------------------------------------------------------------- /tests/Widgets/BitmapButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/BitmapButton.cpp -------------------------------------------------------------------------------- /tests/Widgets/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Button.cpp -------------------------------------------------------------------------------- /tests/Widgets/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Canvas.cpp -------------------------------------------------------------------------------- /tests/Widgets/ChatBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ChatBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/CheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/CheckBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/ChildWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ChildWindow.cpp -------------------------------------------------------------------------------- /tests/Widgets/ClickableWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ClickableWidget.cpp -------------------------------------------------------------------------------- /tests/Widgets/ColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ColorPicker.cpp -------------------------------------------------------------------------------- /tests/Widgets/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ComboBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/ContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ContextMenu.cpp -------------------------------------------------------------------------------- /tests/Widgets/EditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/EditBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/EditBoxSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/EditBoxSlider.cpp -------------------------------------------------------------------------------- /tests/Widgets/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/FileDialog.cpp -------------------------------------------------------------------------------- /tests/Widgets/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Grid.cpp -------------------------------------------------------------------------------- /tests/Widgets/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Group.cpp -------------------------------------------------------------------------------- /tests/Widgets/GrowHorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/GrowHorizontalLayout.cpp -------------------------------------------------------------------------------- /tests/Widgets/GrowVerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/GrowVerticalLayout.cpp -------------------------------------------------------------------------------- /tests/Widgets/HorizontalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/HorizontalLayout.cpp -------------------------------------------------------------------------------- /tests/Widgets/HorizontalWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/HorizontalWrap.cpp -------------------------------------------------------------------------------- /tests/Widgets/Knob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Knob.cpp -------------------------------------------------------------------------------- /tests/Widgets/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Label.cpp -------------------------------------------------------------------------------- /tests/Widgets/ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ListBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/ListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ListView.cpp -------------------------------------------------------------------------------- /tests/Widgets/MenuBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/MenuBar.cpp -------------------------------------------------------------------------------- /tests/Widgets/MessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/MessageBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Panel.cpp -------------------------------------------------------------------------------- /tests/Widgets/PanelListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/PanelListBox.cpp -------------------------------------------------------------------------------- /tests/Widgets/Picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Picture.cpp -------------------------------------------------------------------------------- /tests/Widgets/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ProgressBar.cpp -------------------------------------------------------------------------------- /tests/Widgets/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/RadioButton.cpp -------------------------------------------------------------------------------- /tests/Widgets/RadioButtonGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/RadioButtonGroup.cpp -------------------------------------------------------------------------------- /tests/Widgets/RangeSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/RangeSlider.cpp -------------------------------------------------------------------------------- /tests/Widgets/RichTextLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/RichTextLabel.cpp -------------------------------------------------------------------------------- /tests/Widgets/ScrollablePanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ScrollablePanel.cpp -------------------------------------------------------------------------------- /tests/Widgets/Scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Scrollbar.cpp -------------------------------------------------------------------------------- /tests/Widgets/SeparatorLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/SeparatorLine.cpp -------------------------------------------------------------------------------- /tests/Widgets/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Slider.cpp -------------------------------------------------------------------------------- /tests/Widgets/SpinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/SpinButton.cpp -------------------------------------------------------------------------------- /tests/Widgets/SpinControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/SpinControl.cpp -------------------------------------------------------------------------------- /tests/Widgets/SplitContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/SplitContainer.cpp -------------------------------------------------------------------------------- /tests/Widgets/TabContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/TabContainer.cpp -------------------------------------------------------------------------------- /tests/Widgets/Tabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/Tabs.cpp -------------------------------------------------------------------------------- /tests/Widgets/TextArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/TextArea.cpp -------------------------------------------------------------------------------- /tests/Widgets/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/ToggleButton.cpp -------------------------------------------------------------------------------- /tests/Widgets/TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/TreeView.cpp -------------------------------------------------------------------------------- /tests/Widgets/VerticalLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/Widgets/VerticalLayout.cpp -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/catch.hpp -------------------------------------------------------------------------------- /tests/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cmake/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/cmake/main.cpp -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Down_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Down_DownSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Down_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Down_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Down_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Down_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Hover_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Hover_DownSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_NoImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_NoImage.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_NoImageNoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_NoImageNoText.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_NoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_NoText.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_NonSquareImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_NonSquareImage.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Normal_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Normal_DownSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/BitmapButton_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/BitmapButton_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Disabled_DisabledSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Disabled_DisabledSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Disabled_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Disabled_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Down_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Down_DownSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Down_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Down_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Down_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Down_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Down_TextureDownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Down_TextureDownSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Down_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Down_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Down_TextureNormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Down_TextureNormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Hover_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Hover_DownSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Hover_TextureDownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Hover_TextureDownSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Hover_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Hover_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Hover_TextureNormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Hover_TextureNormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Normal_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Normal_DownSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Normal_Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Normal_Outline.png -------------------------------------------------------------------------------- /tests/expected/Button_Normal_TextureDownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Normal_TextureDownSet.png -------------------------------------------------------------------------------- /tests/expected/Button_Normal_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Button_Normal_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Canvas.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_Disabled_DisabledSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_Disabled_DisabledSet.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_Disabled_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_Disabled_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_MaxWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_MaxWidth.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/CheckBox_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/CheckBox_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/ChildWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ChildWindow.png -------------------------------------------------------------------------------- /tests/expected/ChildWindow_Focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ChildWindow_Focused.png -------------------------------------------------------------------------------- /tests/expected/ChildWindow_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ChildWindow_Textured.png -------------------------------------------------------------------------------- /tests/expected/ChildWindow_TitleButtonText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ChildWindow_TitleButtonText.png -------------------------------------------------------------------------------- /tests/expected/ClickableWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ClickableWidget.png -------------------------------------------------------------------------------- /tests/expected/Clipping_EditBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Clipping_EditBox.png -------------------------------------------------------------------------------- /tests/expected/Clipping_NestedLayers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Clipping_NestedLayers.png -------------------------------------------------------------------------------- /tests/expected/Clipping_Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Clipping_Panel.png -------------------------------------------------------------------------------- /tests/expected/ColorPicker_AfterColorChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ColorPicker_AfterColorChange.png -------------------------------------------------------------------------------- /tests/expected/ColorPicker_BeforeColorChange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ColorPicker_BeforeColorChange.png -------------------------------------------------------------------------------- /tests/expected/ComboBox_DefaultText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ComboBox_DefaultText.png -------------------------------------------------------------------------------- /tests/expected/ComboBox_Disabled_DisabledSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ComboBox_Disabled_DisabledSet.png -------------------------------------------------------------------------------- /tests/expected/ComboBox_Disabled_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ComboBox_Disabled_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/ComboBox_NoSelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ComboBox_NoSelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/ComboBox_Scaling_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ComboBox_Scaling_Normal.png -------------------------------------------------------------------------------- /tests/expected/ComboBox_SelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ComboBox_SelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ContextMenu.png -------------------------------------------------------------------------------- /tests/expected/ContextMenu_Closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ContextMenu_Closed.png -------------------------------------------------------------------------------- /tests/expected/ContextMenu_HoverDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ContextMenu_HoverDisabled.png -------------------------------------------------------------------------------- /tests/expected/ContextMenu_SubMenuItemHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ContextMenu_SubMenuItemHover.png -------------------------------------------------------------------------------- /tests/expected/ContextMenu_SubMenuOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ContextMenu_SubMenuOpen.png -------------------------------------------------------------------------------- /tests/expected/ContextMenu_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ContextMenu_Textured.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Alignment_Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Alignment_Center.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Alignment_Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Alignment_Left.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Alignment_Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Alignment_Right.png -------------------------------------------------------------------------------- /tests/expected/EditBox_DefaultText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_DefaultText.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Disabled_DisabledSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Disabled_DisabledSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Disabled_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Disabled_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Hover_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Hover_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/EditBox_PasswordCharacter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_PasswordCharacter.png -------------------------------------------------------------------------------- /tests/expected/EditBox_Suffix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/EditBox_Suffix.png -------------------------------------------------------------------------------- /tests/expected/FontScale_Scaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/FontScale_Scaled.png -------------------------------------------------------------------------------- /tests/expected/FontScale_Unscaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/FontScale_Unscaled.png -------------------------------------------------------------------------------- /tests/expected/Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Group.png -------------------------------------------------------------------------------- /tests/expected/Knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Knob.png -------------------------------------------------------------------------------- /tests/expected/Knob_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Knob_Textured.png -------------------------------------------------------------------------------- /tests/expected/Label_BackgroundTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Label_BackgroundTexture.png -------------------------------------------------------------------------------- /tests/expected/Label_Complex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Label_Complex.png -------------------------------------------------------------------------------- /tests/expected/Label_Complex_WithScrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Label_Complex_WithScrollbar.png -------------------------------------------------------------------------------- /tests/expected/Label_Simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Label_Simple.png -------------------------------------------------------------------------------- /tests/expected/Label_Simple_Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Label_Simple_Outline.png -------------------------------------------------------------------------------- /tests/expected/ListBox_NoSelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListBox_NoSelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/ListBox_SelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListBox_SelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/ListBox_TextAlignmentCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListBox_TextAlignmentCenter.png -------------------------------------------------------------------------------- /tests/expected/ListBox_TextAlignmentRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListBox_TextAlignmentRight.png -------------------------------------------------------------------------------- /tests/expected/ListView_BothScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_BothScrollbars.png -------------------------------------------------------------------------------- /tests/expected/ListView_HorizontalScrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_HorizontalScrollbar.png -------------------------------------------------------------------------------- /tests/expected/ListView_Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_Icons.png -------------------------------------------------------------------------------- /tests/expected/ListView_Icons_FixedHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_Icons_FixedHeight.png -------------------------------------------------------------------------------- /tests/expected/ListView_Icons_FixedSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_Icons_FixedSize.png -------------------------------------------------------------------------------- /tests/expected/ListView_Icons_FixedWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_Icons_FixedWidth.png -------------------------------------------------------------------------------- /tests/expected/ListView_NoColumns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_NoColumns.png -------------------------------------------------------------------------------- /tests/expected/ListView_NoScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_NoScrollbars.png -------------------------------------------------------------------------------- /tests/expected/ListView_NoScrollbars_Policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_NoScrollbars_Policy.png -------------------------------------------------------------------------------- /tests/expected/ListView_NoSelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_NoSelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/ListView_SelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_SelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/ListView_VerticalScrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ListView_VerticalScrollbar.png -------------------------------------------------------------------------------- /tests/expected/MenuBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_Disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_Disabled.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_Disabled_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_Disabled_Textured.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuDisabled.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuDisabled_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuDisabled_Textured.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuHover.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuHoverDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuHoverDisabled.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuHover_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuHover_Textured.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuOpen.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_MenuOpen_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_MenuOpen_Textured.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_Scaling_MenuOpened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_Scaling_MenuOpened.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_Scaling_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_Scaling_Normal.png -------------------------------------------------------------------------------- /tests/expected/MenuBar_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/MenuBar_Textured.png -------------------------------------------------------------------------------- /tests/expected/OriginScaleRotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/OriginScaleRotation.png -------------------------------------------------------------------------------- /tests/expected/Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Panel.png -------------------------------------------------------------------------------- /tests/expected/PanelListBox_SelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/PanelListBox_SelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Picture.png -------------------------------------------------------------------------------- /tests/expected/ProgressBar_BottomToTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ProgressBar_BottomToTop.png -------------------------------------------------------------------------------- /tests/expected/ProgressBar_LeftToRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ProgressBar_LeftToRight.png -------------------------------------------------------------------------------- /tests/expected/ProgressBar_RightToLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ProgressBar_RightToLeft.png -------------------------------------------------------------------------------- /tests/expected/ProgressBar_TextOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ProgressBar_TextOutline.png -------------------------------------------------------------------------------- /tests/expected/ProgressBar_TopToBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ProgressBar_TopToBottom.png -------------------------------------------------------------------------------- /tests/expected/RadioButtonGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RadioButtonGroup.png -------------------------------------------------------------------------------- /tests/expected/RadioButton_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RadioButton_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/RadioButton_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RadioButton_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/RadioButton_MaxWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RadioButton_MaxWidth.png -------------------------------------------------------------------------------- /tests/expected/RadioButton_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RadioButton_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/RadioButton_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RadioButton_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/RangeSlider_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RangeSlider_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/RangeSlider_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RangeSlider_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/RangeSlider_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RangeSlider_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/RangeSlider_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RangeSlider_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/RichTextLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RichTextLabel.png -------------------------------------------------------------------------------- /tests/expected/RichTextLabel_Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/RichTextLabel_Outline.png -------------------------------------------------------------------------------- /tests/expected/ScrollablePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ScrollablePanel.png -------------------------------------------------------------------------------- /tests/expected/ScrollablePanel_NoScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ScrollablePanel_NoScrollbars.png -------------------------------------------------------------------------------- /tests/expected/Scrollbar_HoverThumb_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Scrollbar_HoverThumb_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Scrollbar_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Scrollbar_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Scrollbar_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Scrollbar_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Scrollbar_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Scrollbar_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_Hover_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Hover_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_Hover_TextureNormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Hover_TextureNormalSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_NonSquareThumbTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_NonSquareThumbTexture.png -------------------------------------------------------------------------------- /tests/expected/Slider_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_Normal_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_Normal_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Slider_ThumbInsideTrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_ThumbInsideTrack.png -------------------------------------------------------------------------------- /tests/expected/Slider_ThumbOutsideTrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Slider_ThumbOutsideTrack.png -------------------------------------------------------------------------------- /tests/expected/SpinButton_Horizontal_Flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SpinButton_Horizontal_Flat.png -------------------------------------------------------------------------------- /tests/expected/SpinButton_Horizontal_Long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SpinButton_Horizontal_Long.png -------------------------------------------------------------------------------- /tests/expected/SpinButton_HoverLeft_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SpinButton_HoverLeft_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/SpinButton_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SpinButton_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/SpinButton_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SpinButton_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/SpinButton_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SpinButton_Vertical.png -------------------------------------------------------------------------------- /tests/expected/SplitContainer_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SplitContainer_Horizontal.png -------------------------------------------------------------------------------- /tests/expected/SplitContainer_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/SplitContainer_Vertical.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Tall_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Tall_Horizontal.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Tall_NineSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Tall_NineSlice.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Tall_NineSliceScaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Tall_NineSliceScaled.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Tall_Stretched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Tall_Stretched.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Tall_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Tall_Vertical.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Wide_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Wide_Horizontal.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Wide_NineSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Wide_NineSlice.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Wide_NineSliceScaled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Wide_NineSliceScaled.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Wide_Stretched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Wide_Stretched.png -------------------------------------------------------------------------------- /tests/expected/Sprite_Wide_Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Sprite_Wide_Vertical.png -------------------------------------------------------------------------------- /tests/expected/Svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Svg.png -------------------------------------------------------------------------------- /tests/expected/Svg_TransformedAndColored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Svg_TransformedAndColored.png -------------------------------------------------------------------------------- /tests/expected/Tabs_HoverSelected_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_HoverSelected_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_HoverSelected_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_HoverSelected_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Hover_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Hover_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Hover_TextureNormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Hover_TextureNormalSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Normal_TextureHoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Normal_TextureHoverSet.png -------------------------------------------------------------------------------- /tests/expected/Tabs_Normal_TextureNormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Tabs_Normal_TextureNormalSet.png -------------------------------------------------------------------------------- /tests/expected/TextArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea.png -------------------------------------------------------------------------------- /tests/expected/TextArea_BothScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea_BothScrollbars.png -------------------------------------------------------------------------------- /tests/expected/TextArea_ForcedScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea_ForcedScrollbars.png -------------------------------------------------------------------------------- /tests/expected/TextArea_HorizontalScrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea_HorizontalScrollbar.png -------------------------------------------------------------------------------- /tests/expected/TextArea_NoScrollbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea_NoScrollbars.png -------------------------------------------------------------------------------- /tests/expected/TextArea_Textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea_Textured.png -------------------------------------------------------------------------------- /tests/expected/TextArea_VerticalScrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TextArea_VerticalScrollbar.png -------------------------------------------------------------------------------- /tests/expected/Texture_SFML_Shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Texture_SFML_Shader.png -------------------------------------------------------------------------------- /tests/expected/Texture_SFML_Shader_Rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/Texture_SFML_Shader_Rotation.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Down_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Down_DownSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Down_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Down_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Down_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Down_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Hover_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Hover_DownSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Hover_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Hover_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Hover_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Hover_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Normal_DownSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Normal_DownSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Normal_HoverSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Normal_HoverSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Normal_NormalSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Normal_NormalSet.png -------------------------------------------------------------------------------- /tests/expected/ToggleButton_Normal_Outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/ToggleButton_Normal_Outline.png -------------------------------------------------------------------------------- /tests/expected/TreeView_NoSelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TreeView_NoSelectedNoHover.png -------------------------------------------------------------------------------- /tests/expected/TreeView_SelectedNoHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/expected/TreeView_SelectedNoHover.png -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/resources/9slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/9slice.png -------------------------------------------------------------------------------- /tests/resources/CheckBox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/CheckBox1.png -------------------------------------------------------------------------------- /tests/resources/CheckBox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/CheckBox2.png -------------------------------------------------------------------------------- /tests/resources/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/DejaVuSans.ttf -------------------------------------------------------------------------------- /tests/resources/DejaVuSansLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/DejaVuSansLicense.txt -------------------------------------------------------------------------------- /tests/resources/KnobBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/KnobBack.png -------------------------------------------------------------------------------- /tests/resources/KnobFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/KnobFront.png -------------------------------------------------------------------------------- /tests/resources/SFML.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/SFML.svg -------------------------------------------------------------------------------- /tests/resources/Texture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture1.png -------------------------------------------------------------------------------- /tests/resources/Texture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture2.png -------------------------------------------------------------------------------- /tests/resources/Texture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture3.png -------------------------------------------------------------------------------- /tests/resources/Texture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture4.png -------------------------------------------------------------------------------- /tests/resources/Texture5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture5.png -------------------------------------------------------------------------------- /tests/resources/Texture6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture6.png -------------------------------------------------------------------------------- /tests/resources/Texture7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture7.png -------------------------------------------------------------------------------- /tests/resources/Texture8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/Texture8.png -------------------------------------------------------------------------------- /tests/resources/TextureRect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TextureRect1.png -------------------------------------------------------------------------------- /tests/resources/TextureRect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TextureRect2.png -------------------------------------------------------------------------------- /tests/resources/TextureRect3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TextureRect3.png -------------------------------------------------------------------------------- /tests/resources/ThemeButton1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/ThemeButton1.txt -------------------------------------------------------------------------------- /tests/resources/ThemeButton2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/ThemeButton2.txt -------------------------------------------------------------------------------- /tests/resources/ThemeComments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/ThemeComments.txt -------------------------------------------------------------------------------- /tests/resources/ThemeMultipleButtons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/ThemeMultipleButtons.txt -------------------------------------------------------------------------------- /tests/resources/ThemeNested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/ThemeNested.txt -------------------------------------------------------------------------------- /tests/resources/ThemeSpecialCases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/ThemeSpecialCases.txt -------------------------------------------------------------------------------- /tests/resources/TitleBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TitleBar.png -------------------------------------------------------------------------------- /tests/resources/TransparentParts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TransparentParts.png -------------------------------------------------------------------------------- /tests/resources/TreeViewCollapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TreeViewCollapsed.png -------------------------------------------------------------------------------- /tests/resources/TreeViewExpanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TreeViewExpanded.png -------------------------------------------------------------------------------- /tests/resources/TreeViewLeaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/TreeViewLeaf.png -------------------------------------------------------------------------------- /tests/resources/image.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/image.bmp -------------------------------------------------------------------------------- /tests/resources/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/image.jpg -------------------------------------------------------------------------------- /tests/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/tests/resources/image.png -------------------------------------------------------------------------------- /themes/BabyBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/BabyBlue.png -------------------------------------------------------------------------------- /themes/BabyBlue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/BabyBlue.txt -------------------------------------------------------------------------------- /themes/Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/Black.png -------------------------------------------------------------------------------- /themes/Black.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/Black.txt -------------------------------------------------------------------------------- /themes/More themes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/More themes.txt -------------------------------------------------------------------------------- /themes/TransparentGrey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/TransparentGrey.txt -------------------------------------------------------------------------------- /themes/development/Black/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/.gitignore -------------------------------------------------------------------------------- /themes/development/Black/Black.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/Black.txt.in -------------------------------------------------------------------------------- /themes/development/Black/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/README.txt -------------------------------------------------------------------------------- /themes/development/Black/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/generate.py -------------------------------------------------------------------------------- /themes/development/Black/images/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/ArrowDown.png -------------------------------------------------------------------------------- /themes/development/Black/images/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/ArrowUp.png -------------------------------------------------------------------------------- /themes/development/Black/images/ArrowUpHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/ArrowUpHover.png -------------------------------------------------------------------------------- /themes/development/Black/images/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/Background.png -------------------------------------------------------------------------------- /themes/development/Black/images/CloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/CloseButton.png -------------------------------------------------------------------------------- /themes/development/Black/images/MenuBarItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/MenuBarItem.png -------------------------------------------------------------------------------- /themes/development/Black/images/MenuBarMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/MenuBarMenu.png -------------------------------------------------------------------------------- /themes/development/Black/images/SliderThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/SliderThumb.png -------------------------------------------------------------------------------- /themes/development/Black/images/SliderTrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/SliderTrack.png -------------------------------------------------------------------------------- /themes/development/Black/images/TitleBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/texus/TGUI/HEAD/themes/development/Black/images/TitleBar.png --------------------------------------------------------------------------------