├── .github └── workflows │ └── ci.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CMakeLists.txt ├── FONT.LICENSE.md ├── LICENSE.md ├── README.md ├── _config.yml ├── cmake ├── Modules │ └── FindSFGUI.cmake └── templates │ └── config.cmake.in ├── doc ├── CMakeLists.txt ├── Doxyfile.in └── GUIDELINES.md ├── examples ├── Box.cpp ├── Buttons.cpp ├── CMakeLists.txt ├── Canvas.cpp ├── ComboBox.cpp ├── CustomWidget.cpp ├── Desktop.cpp ├── Entry.cpp ├── GuessMyNumber.cpp ├── HelloWorld.cpp ├── Image.cpp ├── LICENSE ├── Label.cpp ├── Layout.cpp ├── Multiview.cpp ├── Notebook.cpp ├── OpenGL.cpp ├── ProgressBar.cpp ├── Range.cpp ├── ScrolledWindowViewport.cpp ├── Signals.cpp ├── SpinButton.cpp ├── Spinner.cpp ├── Table.cpp ├── Test.cpp ├── Window.cpp └── data │ ├── add.png │ ├── delete.png │ ├── example.theme │ ├── linden_hill.otf │ └── sfgui.png ├── extlibs └── libELL │ ├── COPYING.LESSER │ └── include │ └── ell │ ├── BinaryNode.h │ ├── BinaryNodes.h │ ├── Dump.h │ ├── Grammar.h │ ├── Node.h │ ├── Numerics.h │ ├── Parser.h │ ├── Primitives.h │ ├── RepeatMatchTpl.h │ ├── Rule.h │ ├── Storage.h │ ├── UnaryNode.h │ ├── UnaryNodes.h │ └── Utils.h ├── include └── SFGUI │ ├── Adjustment.hpp │ ├── Alignment.hpp │ ├── Bin.hpp │ ├── Box.hpp │ ├── Button.hpp │ ├── Canvas.hpp │ ├── CheckButton.hpp │ ├── ComboBox.hpp │ ├── Config.hpp │ ├── Container.hpp │ ├── Context.hpp │ ├── Desktop.hpp │ ├── Desktop.inl │ ├── Engine.hpp │ ├── Engine.inl │ ├── Engines │ └── BREW.hpp │ ├── Entry.hpp │ ├── FileResourceLoader.hpp │ ├── Fixed.hpp │ ├── Frame.hpp │ ├── Image.hpp │ ├── Label.hpp │ ├── Misc.hpp │ ├── Notebook.hpp │ ├── Object.hpp │ ├── Primitive.hpp │ ├── PrimitiveTexture.hpp │ ├── PrimitiveVertex.hpp │ ├── ProgressBar.hpp │ ├── RadioButton.hpp │ ├── RadioButtonGroup.hpp │ ├── Range.hpp │ ├── RenderQueue.hpp │ ├── Renderer.hpp │ ├── RendererTextureNode.hpp │ ├── RendererViewport.hpp │ ├── Renderers.hpp │ ├── Renderers │ ├── NonLegacyRenderer.hpp │ ├── VertexArrayRenderer.hpp │ └── VertexBufferRenderer.hpp │ ├── ResourceLoader.hpp │ ├── ResourceManager.hpp │ ├── ResourceManager.inl │ ├── SFGUI.hpp │ ├── Scale.hpp │ ├── Scrollbar.hpp │ ├── ScrolledWindow.hpp │ ├── Selector.hpp │ ├── Separator.hpp │ ├── Signal.hpp │ ├── SpinButton.hpp │ ├── Spinner.hpp │ ├── Table.hpp │ ├── TableCell.hpp │ ├── TableOptions.hpp │ ├── ToggleButton.hpp │ ├── Viewport.hpp │ ├── Widget.hpp │ ├── Widgets.hpp │ └── Window.hpp └── src └── SFGUI ├── Adjustment.cpp ├── Alignment.cpp ├── Bin.cpp ├── Box.cpp ├── Button.cpp ├── Canvas.cpp ├── CheckButton.cpp ├── ComboBox.cpp ├── Container.cpp ├── Context.cpp ├── DejaVuSansFont.cpp ├── DejaVuSansFont.hpp ├── Desktop.cpp ├── Engine.cpp ├── Engines ├── BREW.cpp └── BREW │ ├── Button.cpp │ ├── CheckButton.cpp │ ├── ComboBox.cpp │ ├── Entry.cpp │ ├── Frame.cpp │ ├── Image.cpp │ ├── Label.cpp │ ├── Notebook.cpp │ ├── ProgressBar.cpp │ ├── Scale.cpp │ ├── Scrollbar.cpp │ ├── ScrolledWindow.cpp │ ├── Separator.cpp │ ├── SpinButton.cpp │ ├── Spinner.cpp │ ├── ToggleButton.cpp │ └── Window.cpp ├── Entry.cpp ├── FileResourceLoader.cpp ├── Fixed.cpp ├── Frame.cpp ├── GLCheck.cpp ├── GLCheck.hpp ├── GLExtensions.txt ├── GLLoader.cpp ├── GLLoader.hpp ├── Image.cpp ├── Label.cpp ├── Misc.cpp ├── Notebook.cpp ├── Object.cpp ├── Parsers └── ThemeParser │ ├── Grammar.cpp │ ├── Grammar.hpp │ ├── GrammarPredicates.cpp │ ├── GrammarSelector.cpp │ ├── GrammarSimpleSelector.cpp │ ├── GrammarStatement.cpp │ ├── GrammarToken.cpp │ ├── Parse.cpp │ └── Parse.hpp ├── Primitive.cpp ├── PrimitiveTexture.cpp ├── PrimitiveVertex.cpp ├── ProgressBar.cpp ├── RadioButton.cpp ├── RadioButtonGroup.cpp ├── Range.cpp ├── RenderQueue.cpp ├── Renderer.cpp ├── RendererBatch.hpp ├── RendererViewport.cpp ├── Renderers ├── NonLegacyRenderer.cpp ├── VertexArrayRenderer.cpp └── VertexBufferRenderer.cpp ├── ResourceManager.cpp ├── SFGUI.cpp ├── Scale.cpp ├── Scrollbar.cpp ├── ScrolledWindow.cpp ├── Selector.cpp ├── Separator.cpp ├── Signal.cpp ├── SpinButton.cpp ├── Spinner.cpp ├── Table.cpp ├── TableCell.cpp ├── TableOptions.cpp ├── ToggleButton.cpp ├── Viewport.cpp ├── Widget.cpp └── Window.cpp /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FONT.LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/FONT.LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/_config.yml -------------------------------------------------------------------------------- /cmake/Modules/FindSFGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/cmake/Modules/FindSFGUI.cmake -------------------------------------------------------------------------------- /cmake/templates/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/cmake/templates/config.cmake.in -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/doc/GUIDELINES.md -------------------------------------------------------------------------------- /examples/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Box.cpp -------------------------------------------------------------------------------- /examples/Buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Buttons.cpp -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Canvas.cpp -------------------------------------------------------------------------------- /examples/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/ComboBox.cpp -------------------------------------------------------------------------------- /examples/CustomWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/CustomWidget.cpp -------------------------------------------------------------------------------- /examples/Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Desktop.cpp -------------------------------------------------------------------------------- /examples/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Entry.cpp -------------------------------------------------------------------------------- /examples/GuessMyNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/GuessMyNumber.cpp -------------------------------------------------------------------------------- /examples/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/HelloWorld.cpp -------------------------------------------------------------------------------- /examples/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Image.cpp -------------------------------------------------------------------------------- /examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/LICENSE -------------------------------------------------------------------------------- /examples/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Label.cpp -------------------------------------------------------------------------------- /examples/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Layout.cpp -------------------------------------------------------------------------------- /examples/Multiview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Multiview.cpp -------------------------------------------------------------------------------- /examples/Notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Notebook.cpp -------------------------------------------------------------------------------- /examples/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/OpenGL.cpp -------------------------------------------------------------------------------- /examples/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/ProgressBar.cpp -------------------------------------------------------------------------------- /examples/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Range.cpp -------------------------------------------------------------------------------- /examples/ScrolledWindowViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/ScrolledWindowViewport.cpp -------------------------------------------------------------------------------- /examples/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Signals.cpp -------------------------------------------------------------------------------- /examples/SpinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/SpinButton.cpp -------------------------------------------------------------------------------- /examples/Spinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Spinner.cpp -------------------------------------------------------------------------------- /examples/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Table.cpp -------------------------------------------------------------------------------- /examples/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Test.cpp -------------------------------------------------------------------------------- /examples/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/Window.cpp -------------------------------------------------------------------------------- /examples/data/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/data/add.png -------------------------------------------------------------------------------- /examples/data/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/data/delete.png -------------------------------------------------------------------------------- /examples/data/example.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/data/example.theme -------------------------------------------------------------------------------- /examples/data/linden_hill.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/data/linden_hill.otf -------------------------------------------------------------------------------- /examples/data/sfgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/examples/data/sfgui.png -------------------------------------------------------------------------------- /extlibs/libELL/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/COPYING.LESSER -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/BinaryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/BinaryNode.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/BinaryNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/BinaryNodes.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Dump.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Grammar.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Node.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Numerics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Numerics.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Parser.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Primitives.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/RepeatMatchTpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/RepeatMatchTpl.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Rule.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Storage.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/UnaryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/UnaryNode.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/UnaryNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/UnaryNodes.h -------------------------------------------------------------------------------- /extlibs/libELL/include/ell/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/extlibs/libELL/include/ell/Utils.h -------------------------------------------------------------------------------- /include/SFGUI/Adjustment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Adjustment.hpp -------------------------------------------------------------------------------- /include/SFGUI/Alignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Alignment.hpp -------------------------------------------------------------------------------- /include/SFGUI/Bin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Bin.hpp -------------------------------------------------------------------------------- /include/SFGUI/Box.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Box.hpp -------------------------------------------------------------------------------- /include/SFGUI/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Button.hpp -------------------------------------------------------------------------------- /include/SFGUI/Canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Canvas.hpp -------------------------------------------------------------------------------- /include/SFGUI/CheckButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/CheckButton.hpp -------------------------------------------------------------------------------- /include/SFGUI/ComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ComboBox.hpp -------------------------------------------------------------------------------- /include/SFGUI/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Config.hpp -------------------------------------------------------------------------------- /include/SFGUI/Container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Container.hpp -------------------------------------------------------------------------------- /include/SFGUI/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Context.hpp -------------------------------------------------------------------------------- /include/SFGUI/Desktop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Desktop.hpp -------------------------------------------------------------------------------- /include/SFGUI/Desktop.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Desktop.inl -------------------------------------------------------------------------------- /include/SFGUI/Engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Engine.hpp -------------------------------------------------------------------------------- /include/SFGUI/Engine.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Engine.inl -------------------------------------------------------------------------------- /include/SFGUI/Engines/BREW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Engines/BREW.hpp -------------------------------------------------------------------------------- /include/SFGUI/Entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Entry.hpp -------------------------------------------------------------------------------- /include/SFGUI/FileResourceLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/FileResourceLoader.hpp -------------------------------------------------------------------------------- /include/SFGUI/Fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Fixed.hpp -------------------------------------------------------------------------------- /include/SFGUI/Frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Frame.hpp -------------------------------------------------------------------------------- /include/SFGUI/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Image.hpp -------------------------------------------------------------------------------- /include/SFGUI/Label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Label.hpp -------------------------------------------------------------------------------- /include/SFGUI/Misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Misc.hpp -------------------------------------------------------------------------------- /include/SFGUI/Notebook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Notebook.hpp -------------------------------------------------------------------------------- /include/SFGUI/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Object.hpp -------------------------------------------------------------------------------- /include/SFGUI/Primitive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Primitive.hpp -------------------------------------------------------------------------------- /include/SFGUI/PrimitiveTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/PrimitiveTexture.hpp -------------------------------------------------------------------------------- /include/SFGUI/PrimitiveVertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/PrimitiveVertex.hpp -------------------------------------------------------------------------------- /include/SFGUI/ProgressBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ProgressBar.hpp -------------------------------------------------------------------------------- /include/SFGUI/RadioButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/RadioButton.hpp -------------------------------------------------------------------------------- /include/SFGUI/RadioButtonGroup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/RadioButtonGroup.hpp -------------------------------------------------------------------------------- /include/SFGUI/Range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Range.hpp -------------------------------------------------------------------------------- /include/SFGUI/RenderQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/RenderQueue.hpp -------------------------------------------------------------------------------- /include/SFGUI/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Renderer.hpp -------------------------------------------------------------------------------- /include/SFGUI/RendererTextureNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/RendererTextureNode.hpp -------------------------------------------------------------------------------- /include/SFGUI/RendererViewport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/RendererViewport.hpp -------------------------------------------------------------------------------- /include/SFGUI/Renderers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Renderers.hpp -------------------------------------------------------------------------------- /include/SFGUI/Renderers/NonLegacyRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Renderers/NonLegacyRenderer.hpp -------------------------------------------------------------------------------- /include/SFGUI/Renderers/VertexArrayRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Renderers/VertexArrayRenderer.hpp -------------------------------------------------------------------------------- /include/SFGUI/Renderers/VertexBufferRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Renderers/VertexBufferRenderer.hpp -------------------------------------------------------------------------------- /include/SFGUI/ResourceLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ResourceLoader.hpp -------------------------------------------------------------------------------- /include/SFGUI/ResourceManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ResourceManager.hpp -------------------------------------------------------------------------------- /include/SFGUI/ResourceManager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ResourceManager.inl -------------------------------------------------------------------------------- /include/SFGUI/SFGUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/SFGUI.hpp -------------------------------------------------------------------------------- /include/SFGUI/Scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Scale.hpp -------------------------------------------------------------------------------- /include/SFGUI/Scrollbar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Scrollbar.hpp -------------------------------------------------------------------------------- /include/SFGUI/ScrolledWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ScrolledWindow.hpp -------------------------------------------------------------------------------- /include/SFGUI/Selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Selector.hpp -------------------------------------------------------------------------------- /include/SFGUI/Separator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Separator.hpp -------------------------------------------------------------------------------- /include/SFGUI/Signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Signal.hpp -------------------------------------------------------------------------------- /include/SFGUI/SpinButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/SpinButton.hpp -------------------------------------------------------------------------------- /include/SFGUI/Spinner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Spinner.hpp -------------------------------------------------------------------------------- /include/SFGUI/Table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Table.hpp -------------------------------------------------------------------------------- /include/SFGUI/TableCell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/TableCell.hpp -------------------------------------------------------------------------------- /include/SFGUI/TableOptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/TableOptions.hpp -------------------------------------------------------------------------------- /include/SFGUI/ToggleButton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/ToggleButton.hpp -------------------------------------------------------------------------------- /include/SFGUI/Viewport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Viewport.hpp -------------------------------------------------------------------------------- /include/SFGUI/Widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Widget.hpp -------------------------------------------------------------------------------- /include/SFGUI/Widgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Widgets.hpp -------------------------------------------------------------------------------- /include/SFGUI/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/include/SFGUI/Window.hpp -------------------------------------------------------------------------------- /src/SFGUI/Adjustment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Adjustment.cpp -------------------------------------------------------------------------------- /src/SFGUI/Alignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Alignment.cpp -------------------------------------------------------------------------------- /src/SFGUI/Bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Bin.cpp -------------------------------------------------------------------------------- /src/SFGUI/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Box.cpp -------------------------------------------------------------------------------- /src/SFGUI/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Button.cpp -------------------------------------------------------------------------------- /src/SFGUI/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Canvas.cpp -------------------------------------------------------------------------------- /src/SFGUI/CheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/CheckButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/ComboBox.cpp -------------------------------------------------------------------------------- /src/SFGUI/Container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Container.cpp -------------------------------------------------------------------------------- /src/SFGUI/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Context.cpp -------------------------------------------------------------------------------- /src/SFGUI/DejaVuSansFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/DejaVuSansFont.cpp -------------------------------------------------------------------------------- /src/SFGUI/DejaVuSansFont.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/DejaVuSansFont.hpp -------------------------------------------------------------------------------- /src/SFGUI/Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Desktop.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engine.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Button.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/CheckButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/CheckButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/ComboBox.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Entry.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Frame.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Image.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Label.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Notebook.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/ProgressBar.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Scale.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Scrollbar.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/ScrolledWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/ScrolledWindow.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Separator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Separator.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/SpinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/SpinButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Spinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Spinner.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/ToggleButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/Engines/BREW/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Engines/BREW/Window.cpp -------------------------------------------------------------------------------- /src/SFGUI/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Entry.cpp -------------------------------------------------------------------------------- /src/SFGUI/FileResourceLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/FileResourceLoader.cpp -------------------------------------------------------------------------------- /src/SFGUI/Fixed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Fixed.cpp -------------------------------------------------------------------------------- /src/SFGUI/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Frame.cpp -------------------------------------------------------------------------------- /src/SFGUI/GLCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/GLCheck.cpp -------------------------------------------------------------------------------- /src/SFGUI/GLCheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/GLCheck.hpp -------------------------------------------------------------------------------- /src/SFGUI/GLExtensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/GLExtensions.txt -------------------------------------------------------------------------------- /src/SFGUI/GLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/GLLoader.cpp -------------------------------------------------------------------------------- /src/SFGUI/GLLoader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/GLLoader.hpp -------------------------------------------------------------------------------- /src/SFGUI/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Image.cpp -------------------------------------------------------------------------------- /src/SFGUI/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Label.cpp -------------------------------------------------------------------------------- /src/SFGUI/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Misc.cpp -------------------------------------------------------------------------------- /src/SFGUI/Notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Notebook.cpp -------------------------------------------------------------------------------- /src/SFGUI/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Object.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/Grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/Grammar.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/Grammar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/Grammar.hpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/GrammarPredicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/GrammarPredicates.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/GrammarSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/GrammarSelector.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/GrammarSimpleSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/GrammarSimpleSelector.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/GrammarStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/GrammarStatement.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/GrammarToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/GrammarToken.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/Parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/Parse.cpp -------------------------------------------------------------------------------- /src/SFGUI/Parsers/ThemeParser/Parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Parsers/ThemeParser/Parse.hpp -------------------------------------------------------------------------------- /src/SFGUI/Primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Primitive.cpp -------------------------------------------------------------------------------- /src/SFGUI/PrimitiveTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/PrimitiveTexture.cpp -------------------------------------------------------------------------------- /src/SFGUI/PrimitiveVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/PrimitiveVertex.cpp -------------------------------------------------------------------------------- /src/SFGUI/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/ProgressBar.cpp -------------------------------------------------------------------------------- /src/SFGUI/RadioButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/RadioButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/RadioButtonGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/RadioButtonGroup.cpp -------------------------------------------------------------------------------- /src/SFGUI/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Range.cpp -------------------------------------------------------------------------------- /src/SFGUI/RenderQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/RenderQueue.cpp -------------------------------------------------------------------------------- /src/SFGUI/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Renderer.cpp -------------------------------------------------------------------------------- /src/SFGUI/RendererBatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/RendererBatch.hpp -------------------------------------------------------------------------------- /src/SFGUI/RendererViewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/RendererViewport.cpp -------------------------------------------------------------------------------- /src/SFGUI/Renderers/NonLegacyRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Renderers/NonLegacyRenderer.cpp -------------------------------------------------------------------------------- /src/SFGUI/Renderers/VertexArrayRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Renderers/VertexArrayRenderer.cpp -------------------------------------------------------------------------------- /src/SFGUI/Renderers/VertexBufferRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Renderers/VertexBufferRenderer.cpp -------------------------------------------------------------------------------- /src/SFGUI/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/ResourceManager.cpp -------------------------------------------------------------------------------- /src/SFGUI/SFGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/SFGUI.cpp -------------------------------------------------------------------------------- /src/SFGUI/Scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Scale.cpp -------------------------------------------------------------------------------- /src/SFGUI/Scrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Scrollbar.cpp -------------------------------------------------------------------------------- /src/SFGUI/ScrolledWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/ScrolledWindow.cpp -------------------------------------------------------------------------------- /src/SFGUI/Selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Selector.cpp -------------------------------------------------------------------------------- /src/SFGUI/Separator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Separator.cpp -------------------------------------------------------------------------------- /src/SFGUI/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Signal.cpp -------------------------------------------------------------------------------- /src/SFGUI/SpinButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/SpinButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/Spinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Spinner.cpp -------------------------------------------------------------------------------- /src/SFGUI/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Table.cpp -------------------------------------------------------------------------------- /src/SFGUI/TableCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/TableCell.cpp -------------------------------------------------------------------------------- /src/SFGUI/TableOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/TableOptions.cpp -------------------------------------------------------------------------------- /src/SFGUI/ToggleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/ToggleButton.cpp -------------------------------------------------------------------------------- /src/SFGUI/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Viewport.cpp -------------------------------------------------------------------------------- /src/SFGUI/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Widget.cpp -------------------------------------------------------------------------------- /src/SFGUI/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TankOs/SFGUI/HEAD/src/SFGUI/Window.cpp --------------------------------------------------------------------------------