├── .appveyor.yml ├── .clang-format ├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── package.yml ├── .gitignore ├── Backends ├── CMakeLists.txt ├── RmlUi_Backend.h ├── RmlUi_Backend_GLFW_GL2.cpp ├── RmlUi_Backend_GLFW_GL3.cpp ├── RmlUi_Backend_GLFW_VK.cpp ├── RmlUi_Backend_SDL_GL2.cpp ├── RmlUi_Backend_SDL_GL3.cpp ├── RmlUi_Backend_SDL_GPU.cpp ├── RmlUi_Backend_SDL_SDLrenderer.cpp ├── RmlUi_Backend_SDL_VK.cpp ├── RmlUi_Backend_SFML_GL2.cpp ├── RmlUi_Backend_Win32_GL2.cpp ├── RmlUi_Backend_Win32_VK.cpp ├── RmlUi_Backend_X11_GL2.cpp ├── RmlUi_BackwardCompatible │ ├── RmlUi_Backend_BackwardCompatible_GLFW_GL2.cpp │ ├── RmlUi_Backend_BackwardCompatible_GLFW_GL3.cpp │ ├── RmlUi_Renderer_BackwardCompatible_GL2.cpp │ ├── RmlUi_Renderer_BackwardCompatible_GL2.h │ ├── RmlUi_Renderer_BackwardCompatible_GL3.cpp │ └── RmlUi_Renderer_BackwardCompatible_GL3.h ├── RmlUi_Include_GL3.h ├── RmlUi_Include_Vulkan.h ├── RmlUi_Include_Windows.h ├── RmlUi_Include_Xlib.h ├── RmlUi_Platform_GLFW.cpp ├── RmlUi_Platform_GLFW.h ├── RmlUi_Platform_SDL.cpp ├── RmlUi_Platform_SDL.h ├── RmlUi_Platform_SFML.cpp ├── RmlUi_Platform_SFML.h ├── RmlUi_Platform_Win32.cpp ├── RmlUi_Platform_Win32.h ├── RmlUi_Platform_X11.cpp ├── RmlUi_Platform_X11.h ├── RmlUi_Renderer_GL2.cpp ├── RmlUi_Renderer_GL2.h ├── RmlUi_Renderer_GL3.cpp ├── RmlUi_Renderer_GL3.h ├── RmlUi_Renderer_SDL.cpp ├── RmlUi_Renderer_SDL.h ├── RmlUi_Renderer_SDL_GPU.cpp ├── RmlUi_Renderer_SDL_GPU.h ├── RmlUi_Renderer_VK.cpp ├── RmlUi_Renderer_VK.h ├── RmlUi_SDL_GPU │ ├── SDL_shadercross │ │ └── LICENSE.txt │ ├── ShadersCompiledSPV.h │ ├── compile_shaders.py │ ├── shader_frag_color.frag │ ├── shader_frag_texture.frag │ └── shader_vert.vert └── RmlUi_Vulkan │ ├── .clang-format │ ├── LICENSE.txt │ ├── ShadersCompiledSPV.h │ ├── compile_shaders.py │ ├── shader_frag_color.frag │ ├── shader_frag_texture.frag │ ├── shader_vert.vert │ ├── vk_mem_alloc.h │ └── vulkan.h ├── CMake ├── BackendAutoSelection.cmake ├── Dependencies.cmake ├── DependenciesForBackends.cmake ├── DependenciesForShell.cmake ├── DependenciesForTests.cmake ├── Modules │ ├── Emscripten │ │ ├── FindFreetype.cmake │ │ ├── FindOpenGL.cmake │ │ ├── FindSDL2.cmake │ │ ├── FindSDL2_image.cmake │ │ └── Findglfw3.cmake │ ├── FindHarfBuzz.cmake │ ├── FindLuaJIT.cmake │ ├── FindSDL2_image.cmake │ └── Findlunasvg.cmake ├── OptionsLists.cmake ├── PackageUtilities.cmake ├── RmlUiConfig.cmake.in ├── RuntimeUtilities.cmake └── Utilities.cmake ├── CMakeLists.txt ├── CMakePresets.json ├── Dependencies └── .gitignore ├── Include └── RmlUi │ ├── Config │ └── Config.h │ ├── Core.h │ ├── Core │ ├── Animation.h │ ├── BaseXMLParser.h │ ├── Box.h │ ├── CallbackTexture.h │ ├── Colour.h │ ├── Colour.inl │ ├── CompiledFilterShader.h │ ├── ComputedValues.h │ ├── Containers │ │ ├── LICENSE.txt │ │ ├── itlib │ │ │ ├── flat_map.hpp │ │ │ └── flat_set.hpp │ │ └── robin_hood.h │ ├── Context.h │ ├── ContextInstancer.h │ ├── ConvolutionFilter.h │ ├── Core.h │ ├── DataModelHandle.h │ ├── DataStructHandle.h │ ├── DataTypeRegister.h │ ├── DataTypes.h │ ├── DataVariable.h │ ├── Debug.h │ ├── DecorationTypes.h │ ├── Decorator.h │ ├── Dictionary.h │ ├── EffectSpecification.h │ ├── Element.h │ ├── Element.inl │ ├── ElementDocument.h │ ├── ElementInstancer.h │ ├── ElementScroll.h │ ├── ElementText.h │ ├── ElementUtilities.h │ ├── Elements │ │ ├── ElementForm.h │ │ ├── ElementFormControl.h │ │ ├── ElementFormControlInput.h │ │ ├── ElementFormControlSelect.h │ │ ├── ElementFormControlTextArea.h │ │ ├── ElementProgress.h │ │ └── ElementTabSet.h │ ├── Event.h │ ├── EventInstancer.h │ ├── EventListener.h │ ├── EventListenerInstancer.h │ ├── Factory.h │ ├── FileInterface.h │ ├── Filter.h │ ├── FontEffect.h │ ├── FontEffectInstancer.h │ ├── FontEngineInterface.h │ ├── FontGlyph.h │ ├── FontMetrics.h │ ├── Geometry.h │ ├── Header.h │ ├── ID.h │ ├── Input.h │ ├── Log.h │ ├── Math.h │ ├── Matrix4.h │ ├── Matrix4.inl │ ├── Mesh.h │ ├── MeshUtilities.h │ ├── NumericValue.h │ ├── ObserverPtr.h │ ├── Platform.h │ ├── Plugin.h │ ├── Profiling.h │ ├── PropertiesIteratorView.h │ ├── Property.h │ ├── PropertyDefinition.h │ ├── PropertyDictionary.h │ ├── PropertyIdSet.h │ ├── PropertyParser.h │ ├── PropertySpecification.h │ ├── Rectangle.h │ ├── RenderBox.h │ ├── RenderInterface.h │ ├── RenderInterfaceCompatibility.h │ ├── RenderManager.h │ ├── ScriptInterface.h │ ├── ScrollTypes.h │ ├── Span.h │ ├── Spritesheet.h │ ├── StableVector.h │ ├── Stream.h │ ├── StreamMemory.h │ ├── StringUtilities.h │ ├── StyleSheet.h │ ├── StyleSheetContainer.h │ ├── StyleSheetSpecification.h │ ├── StyleSheetTypes.h │ ├── StyleTypes.h │ ├── SystemInterface.h │ ├── TextInputContext.h │ ├── TextInputHandler.h │ ├── TextShapingContext.h │ ├── Texture.h │ ├── Traits.h │ ├── Transform.h │ ├── TransformPrimitive.h │ ├── Tween.h │ ├── TypeConverter.h │ ├── TypeConverter.inl │ ├── Types.h │ ├── URL.h │ ├── UniqueRenderResource.h │ ├── Unit.h │ ├── Utilities.h │ ├── Variant.h │ ├── Variant.inl │ ├── Vector2.h │ ├── Vector2.inl │ ├── Vector3.h │ ├── Vector3.inl │ ├── Vector4.h │ ├── Vector4.inl │ ├── Vertex.h │ ├── XMLNodeHandler.h │ └── XMLParser.h │ ├── Debugger.h │ ├── Debugger │ ├── Debugger.h │ └── Header.h │ ├── Lottie │ └── ElementLottie.h │ ├── Lua.h │ ├── Lua │ ├── Header.h │ ├── IncludeLua.h │ ├── Interpreter.h │ ├── Lua.h │ ├── LuaType.h │ ├── LuaType.inl │ └── Utilities.h │ └── SVG │ └── ElementSVG.h ├── LICENSE.txt ├── Samples ├── CMakeLists.txt ├── assets │ ├── LICENSE.txt │ ├── LatoLatin-Bold.ttf │ ├── LatoLatin-BoldItalic.ttf │ ├── LatoLatin-Italic.ttf │ ├── LatoLatin-Regular.ttf │ ├── NotoEmoji-Regular.ttf │ ├── alien_small.tga │ ├── demo.rml │ ├── hello_world.png │ ├── high_scores_alien_1.tga │ ├── high_scores_alien_2.tga │ ├── high_scores_alien_3.tga │ ├── high_scores_defender.tga │ ├── invader.rcss │ ├── invader.tga │ ├── present.tga │ ├── rml.rcss │ └── window.rml ├── basic │ ├── CMakeLists.txt │ ├── animation │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── animation.rml │ │ └── src │ │ │ └── main.cpp │ ├── benchmark │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── benchmark.rml │ │ └── src │ │ │ └── main.cpp │ ├── bitmap_font │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── Comfortaa_Regular_22.fnt │ │ │ ├── Comfortaa_Regular_22.tga │ │ │ ├── LICENSE.txt │ │ │ └── bitmap_font.rml │ │ └── src │ │ │ ├── FontEngineBitmap.cpp │ │ │ ├── FontEngineBitmap.h │ │ │ ├── FontEngineInterfaceBitmap.cpp │ │ │ ├── FontEngineInterfaceBitmap.h │ │ │ └── main.cpp │ ├── custom_log │ │ ├── CMakeLists.txt │ │ └── src │ │ │ ├── SystemInterface.cpp │ │ │ ├── SystemInterface.h │ │ │ └── main.cpp │ ├── data_binding │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── data_binding.rml │ │ └── src │ │ │ └── main.cpp │ ├── demo │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── demo.rml │ │ └── src │ │ │ ├── DemoEventListener.cpp │ │ │ ├── DemoEventListener.h │ │ │ ├── DemoWindow.cpp │ │ │ ├── DemoWindow.h │ │ │ └── main.cpp │ ├── drag │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── icon.rcss │ │ │ └── inventory.rml │ │ └── src │ │ │ ├── DragListener.cpp │ │ │ ├── DragListener.h │ │ │ ├── Inventory.cpp │ │ │ ├── Inventory.h │ │ │ └── main.cpp │ ├── effects │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── effects.rml │ │ │ └── effects_style.rcss │ │ └── src │ │ │ └── main.cpp │ ├── harfbuzz │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── Cairo-Regular.ttf │ │ │ ├── LICENSE.txt │ │ │ ├── Poppins-Regular.ttf │ │ │ └── harfbuzz.rml │ │ └── src │ │ │ ├── FontEngineInterfaceHarfBuzz.cpp │ │ │ ├── FontEngineInterfaceHarfBuzz.h │ │ │ ├── FontFace.cpp │ │ │ ├── FontFace.h │ │ │ ├── FontFaceHandleHarfBuzz.cpp │ │ │ ├── FontFaceHandleHarfBuzz.h │ │ │ ├── FontFaceLayer.cpp │ │ │ ├── FontFaceLayer.h │ │ │ ├── FontFamily.cpp │ │ │ ├── FontFamily.h │ │ │ ├── FontGlyph.h │ │ │ ├── FontProvider.cpp │ │ │ ├── FontProvider.h │ │ │ ├── FreeTypeInterface.cpp │ │ │ ├── FreeTypeInterface.h │ │ │ ├── LanguageData.h │ │ │ ├── TextureLayout.cpp │ │ │ ├── TextureLayout.h │ │ │ ├── TextureLayoutRectangle.cpp │ │ │ ├── TextureLayoutRectangle.h │ │ │ ├── TextureLayoutRow.cpp │ │ │ ├── TextureLayoutRow.h │ │ │ ├── TextureLayoutTexture.cpp │ │ │ ├── TextureLayoutTexture.h │ │ │ └── main.cpp │ ├── ime │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── ime.rml │ │ └── src │ │ │ ├── SystemFontWin32.cpp │ │ │ ├── SystemFontWin32.h │ │ │ └── main.cpp │ ├── load_document │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── main.cpp │ ├── lottie │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── LICENSE.txt │ │ │ ├── a_mountain.json │ │ │ └── lottie.rml │ │ └── src │ │ │ └── main.cpp │ ├── svg │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ ├── LICENSE.txt │ │ │ ├── svg_decorator.rml │ │ │ ├── svg_element.rml │ │ │ ├── svg_inline.rml │ │ │ └── tiger.svg │ │ └── src │ │ │ └── main.cpp │ ├── transform │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── transform.rml │ │ └── src │ │ │ └── main.cpp │ └── tree_view │ │ ├── CMakeLists.txt │ │ ├── data │ │ └── tree_view.rml │ │ └── src │ │ ├── FileBrowser.cpp │ │ ├── FileBrowser.h │ │ └── main.cpp ├── invaders │ ├── CMakeLists.txt │ ├── data │ │ ├── background.rml │ │ ├── background.tga │ │ ├── game.rml │ │ ├── help.rml │ │ ├── help_defender.tga │ │ ├── help_invader_mothership.tga │ │ ├── help_invader_rank1.tga │ │ ├── help_invader_rank2.tga │ │ ├── help_invader_rank3.tga │ │ ├── high_score.rml │ │ ├── high_scores_defender.tga │ │ ├── invaders.tga │ │ ├── logo.rml │ │ ├── logo.tga │ │ ├── main_menu.rml │ │ ├── options.rml │ │ ├── pause.rml │ │ └── start_game.rml │ └── src │ │ ├── DecoratorDefender.cpp │ │ ├── DecoratorDefender.h │ │ ├── DecoratorStarfield.cpp │ │ ├── DecoratorStarfield.h │ │ ├── Defender.cpp │ │ ├── Defender.h │ │ ├── ElementGame.cpp │ │ ├── ElementGame.h │ │ ├── EventHandler.cpp │ │ ├── EventHandler.h │ │ ├── EventHandlerHighScore.cpp │ │ ├── EventHandlerHighScore.h │ │ ├── EventHandlerOptions.cpp │ │ ├── EventHandlerOptions.h │ │ ├── EventHandlerStartGame.cpp │ │ ├── EventHandlerStartGame.h │ │ ├── EventListener.cpp │ │ ├── EventListener.h │ │ ├── EventListenerInstancer.cpp │ │ ├── EventListenerInstancer.h │ │ ├── EventManager.cpp │ │ ├── EventManager.h │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── GameDetails.cpp │ │ ├── GameDetails.h │ │ ├── HighScores.cpp │ │ ├── HighScores.h │ │ ├── Invader.cpp │ │ ├── Invader.h │ │ ├── Mothership.cpp │ │ ├── Mothership.h │ │ ├── Shield.cpp │ │ ├── Shield.h │ │ ├── Sprite.cpp │ │ ├── Sprite.h │ │ └── main.cpp ├── lua_invaders │ ├── CMakeLists.txt │ ├── data │ │ ├── background.rml │ │ ├── background.tga │ │ ├── game.rml │ │ ├── help.rml │ │ ├── help_defender.tga │ │ ├── help_invader_mothership.tga │ │ ├── help_invader_rank1.tga │ │ ├── help_invader_rank2.tga │ │ ├── help_invader_rank3.tga │ │ ├── high_score.rml │ │ ├── high_scores_defender.tga │ │ ├── invaders.tga │ │ ├── logo.rml │ │ ├── logo.tga │ │ ├── main_menu.rml │ │ ├── options.rml │ │ ├── pause.rml │ │ ├── start_game.rml │ │ └── window.rml │ ├── lua │ │ └── start.lua │ └── src │ │ ├── DecoratorDefender.cpp │ │ ├── DecoratorDefender.h │ │ ├── DecoratorStarfield.cpp │ │ ├── DecoratorStarfield.h │ │ ├── Defender.cpp │ │ ├── Defender.h │ │ ├── ElementGame.cpp │ │ ├── ElementGame.h │ │ ├── ElementGameInstancer.cpp │ │ ├── ElementGameInstancer.h │ │ ├── Game.cpp │ │ ├── Game.h │ │ ├── GameDetails.cpp │ │ ├── GameDetails.h │ │ ├── HighScores.cpp │ │ ├── HighScores.h │ │ ├── Invader.cpp │ │ ├── Invader.h │ │ ├── LuaInterface.cpp │ │ ├── LuaInterface.h │ │ ├── Mothership.cpp │ │ ├── Mothership.h │ │ ├── Shield.cpp │ │ ├── Shield.h │ │ ├── Sprite.cpp │ │ ├── Sprite.h │ │ └── main.cpp ├── readme.md ├── shell │ ├── CMakeLists.txt │ ├── include │ │ ├── PlatformExtensions.h │ │ ├── RendererExtensions.h │ │ ├── Shell.h │ │ └── ShellFileInterface.h │ └── src │ │ ├── PlatformExtensions.cpp │ │ ├── RendererExtensions.cpp │ │ ├── Shell.cpp │ │ └── ShellFileInterface.cpp └── tutorial │ ├── CMakeLists.txt │ ├── drag │ ├── CMakeLists.txt │ ├── data │ │ ├── inventory.rml │ │ └── tutorial.rcss │ └── src │ │ ├── Inventory.cpp │ │ ├── Inventory.h │ │ └── main.cpp │ └── template │ ├── CMakeLists.txt │ ├── data │ ├── tutorial.rcss │ └── tutorial.rml │ └── src │ └── main.cpp ├── Source ├── CMakeLists.txt ├── Core │ ├── BaseXMLParser.cpp │ ├── Box.cpp │ ├── BoxShadowCache.cpp │ ├── BoxShadowCache.h │ ├── BoxShadowHash.h │ ├── CMakeLists.txt │ ├── CallbackTexture.cpp │ ├── Clock.cpp │ ├── Clock.h │ ├── CompiledFilterShader.cpp │ ├── ComputeProperty.cpp │ ├── ComputeProperty.h │ ├── ComputedValues.cpp │ ├── Context.cpp │ ├── ContextInstancer.cpp │ ├── ContextInstancerDefault.cpp │ ├── ContextInstancerDefault.h │ ├── ControlledLifetimeResource.h │ ├── ConvolutionFilter.cpp │ ├── Core.cpp │ ├── DataController.cpp │ ├── DataController.h │ ├── DataControllerDefault.cpp │ ├── DataControllerDefault.h │ ├── DataExpression.cpp │ ├── DataExpression.h │ ├── DataModel.cpp │ ├── DataModel.h │ ├── DataModelHandle.cpp │ ├── DataTypeRegister.cpp │ ├── DataVariable.cpp │ ├── DataView.cpp │ ├── DataView.h │ ├── DataViewDefault.cpp │ ├── DataViewDefault.h │ ├── Decorator.cpp │ ├── DecoratorGradient.cpp │ ├── DecoratorGradient.h │ ├── DecoratorNinePatch.cpp │ ├── DecoratorNinePatch.h │ ├── DecoratorShader.cpp │ ├── DecoratorShader.h │ ├── DecoratorText.cpp │ ├── DecoratorText.h │ ├── DecoratorTiled.cpp │ ├── DecoratorTiled.h │ ├── DecoratorTiledBox.cpp │ ├── DecoratorTiledBox.h │ ├── DecoratorTiledHorizontal.cpp │ ├── DecoratorTiledHorizontal.h │ ├── DecoratorTiledImage.cpp │ ├── DecoratorTiledImage.h │ ├── DecoratorTiledVertical.cpp │ ├── DecoratorTiledVertical.h │ ├── DecoratorUtilities.cpp │ ├── DecoratorUtilities.h │ ├── DocumentHeader.cpp │ ├── DocumentHeader.h │ ├── EffectSpecification.cpp │ ├── Element.cpp │ ├── ElementAnimation.cpp │ ├── ElementAnimation.h │ ├── ElementBackgroundBorder.cpp │ ├── ElementBackgroundBorder.h │ ├── ElementDefinition.cpp │ ├── ElementDefinition.h │ ├── ElementDocument.cpp │ ├── ElementEffects.cpp │ ├── ElementEffects.h │ ├── ElementHandle.cpp │ ├── ElementHandle.h │ ├── ElementInstancer.cpp │ ├── ElementMeta.cpp │ ├── ElementMeta.h │ ├── ElementScroll.cpp │ ├── ElementStyle.cpp │ ├── ElementStyle.h │ ├── ElementText.cpp │ ├── ElementUtilities.cpp │ ├── Elements │ │ ├── CMakeLists.txt │ │ ├── ElementForm.cpp │ │ ├── ElementFormControl.cpp │ │ ├── ElementFormControlInput.cpp │ │ ├── ElementFormControlSelect.cpp │ │ ├── ElementFormControlTextArea.cpp │ │ ├── ElementImage.cpp │ │ ├── ElementImage.h │ │ ├── ElementLabel.cpp │ │ ├── ElementLabel.h │ │ ├── ElementProgress.cpp │ │ ├── ElementTabSet.cpp │ │ ├── ElementTextSelection.cpp │ │ ├── ElementTextSelection.h │ │ ├── InputType.cpp │ │ ├── InputType.h │ │ ├── InputTypeButton.cpp │ │ ├── InputTypeButton.h │ │ ├── InputTypeCheckbox.cpp │ │ ├── InputTypeCheckbox.h │ │ ├── InputTypeRadio.cpp │ │ ├── InputTypeRadio.h │ │ ├── InputTypeRange.cpp │ │ ├── InputTypeRange.h │ │ ├── InputTypeSubmit.cpp │ │ ├── InputTypeSubmit.h │ │ ├── InputTypeText.cpp │ │ ├── InputTypeText.h │ │ ├── WidgetDropDown.cpp │ │ ├── WidgetDropDown.h │ │ ├── WidgetSlider.cpp │ │ ├── WidgetSlider.h │ │ ├── WidgetTextInput.cpp │ │ ├── WidgetTextInput.h │ │ ├── WidgetTextInputMultiLine.cpp │ │ ├── WidgetTextInputMultiLine.h │ │ ├── WidgetTextInputSingleLine.cpp │ │ ├── WidgetTextInputSingleLine.h │ │ ├── WidgetTextInputSingleLinePassword.cpp │ │ ├── WidgetTextInputSingleLinePassword.h │ │ ├── XMLNodeHandlerSelect.cpp │ │ ├── XMLNodeHandlerSelect.h │ │ ├── XMLNodeHandlerTabSet.cpp │ │ ├── XMLNodeHandlerTabSet.h │ │ ├── XMLNodeHandlerTextArea.cpp │ │ └── XMLNodeHandlerTextArea.h │ ├── Event.cpp │ ├── EventDispatcher.cpp │ ├── EventDispatcher.h │ ├── EventInstancer.cpp │ ├── EventInstancerDefault.cpp │ ├── EventInstancerDefault.h │ ├── EventListenerInstancer.cpp │ ├── EventSpecification.cpp │ ├── EventSpecification.h │ ├── Factory.cpp │ ├── FileInterface.cpp │ ├── FileInterfaceDefault.cpp │ ├── FileInterfaceDefault.h │ ├── Filter.cpp │ ├── FilterBasic.cpp │ ├── FilterBasic.h │ ├── FilterBlur.cpp │ ├── FilterBlur.h │ ├── FilterDropShadow.cpp │ ├── FilterDropShadow.h │ ├── FontEffect.cpp │ ├── FontEffectBlur.cpp │ ├── FontEffectBlur.h │ ├── FontEffectGlow.cpp │ ├── FontEffectGlow.h │ ├── FontEffectInstancer.cpp │ ├── FontEffectOutline.cpp │ ├── FontEffectOutline.h │ ├── FontEffectShadow.cpp │ ├── FontEffectShadow.h │ ├── FontEngineDefault │ │ ├── CMakeLists.txt │ │ ├── FontEngineInterfaceDefault.cpp │ │ ├── FontEngineInterfaceDefault.h │ │ ├── FontFace.cpp │ │ ├── FontFace.h │ │ ├── FontFaceHandleDefault.cpp │ │ ├── FontFaceHandleDefault.h │ │ ├── FontFaceLayer.cpp │ │ ├── FontFaceLayer.h │ │ ├── FontFamily.cpp │ │ ├── FontFamily.h │ │ ├── FontProvider.cpp │ │ ├── FontProvider.h │ │ ├── FontTypes.h │ │ ├── FreeTypeInterface.cpp │ │ └── FreeTypeInterface.h │ ├── FontEngineInterface.cpp │ ├── Geometry.cpp │ ├── GeometryBackgroundBorder.cpp │ ├── GeometryBackgroundBorder.h │ ├── GeometryBoxShadow.cpp │ ├── GeometryBoxShadow.h │ ├── IdNameMap.h │ ├── Layout │ │ ├── BlockContainer.cpp │ │ ├── BlockContainer.h │ │ ├── BlockFormattingContext.cpp │ │ ├── BlockFormattingContext.h │ │ ├── CMakeLists.txt │ │ ├── ContainerBox.cpp │ │ ├── ContainerBox.h │ │ ├── FlexFormattingContext.cpp │ │ ├── FlexFormattingContext.h │ │ ├── FloatedBoxSpace.cpp │ │ ├── FloatedBoxSpace.h │ │ ├── FormattingContext.cpp │ │ ├── FormattingContext.h │ │ ├── InlineBox.cpp │ │ ├── InlineBox.h │ │ ├── InlineContainer.cpp │ │ ├── InlineContainer.h │ │ ├── InlineLevelBox.cpp │ │ ├── InlineLevelBox.h │ │ ├── InlineTypes.h │ │ ├── LayoutBox.cpp │ │ ├── LayoutBox.h │ │ ├── LayoutDetails.cpp │ │ ├── LayoutDetails.h │ │ ├── LayoutEngine.cpp │ │ ├── LayoutEngine.h │ │ ├── LayoutPools.cpp │ │ ├── LayoutPools.h │ │ ├── LineBox.cpp │ │ ├── LineBox.h │ │ ├── ReplacedFormattingContext.cpp │ │ ├── ReplacedFormattingContext.h │ │ ├── TableFormattingContext.cpp │ │ ├── TableFormattingContext.h │ │ ├── TableFormattingDetails.cpp │ │ └── TableFormattingDetails.h │ ├── Log.cpp │ ├── LogDefault.cpp │ ├── LogDefault.h │ ├── Math.cpp │ ├── Memory.cpp │ ├── Memory.h │ ├── MeshUtilities.cpp │ ├── ObserverPtr.cpp │ ├── Plugin.cpp │ ├── PluginRegistry.cpp │ ├── PluginRegistry.h │ ├── Pool.h │ ├── Pool.inl │ ├── Profiling.cpp │ ├── PropertiesIterator.h │ ├── PropertiesIteratorView.cpp │ ├── Property.cpp │ ├── PropertyDefinition.cpp │ ├── PropertyDictionary.cpp │ ├── PropertyParserAnimation.cpp │ ├── PropertyParserAnimation.h │ ├── PropertyParserBoxShadow.cpp │ ├── PropertyParserBoxShadow.h │ ├── PropertyParserColorStopList.cpp │ ├── PropertyParserColorStopList.h │ ├── PropertyParserColour.cpp │ ├── PropertyParserColour.h │ ├── PropertyParserDecorator.cpp │ ├── PropertyParserDecorator.h │ ├── PropertyParserFilter.cpp │ ├── PropertyParserFilter.h │ ├── PropertyParserFontEffect.cpp │ ├── PropertyParserFontEffect.h │ ├── PropertyParserKeyword.cpp │ ├── PropertyParserKeyword.h │ ├── PropertyParserNumber.cpp │ ├── PropertyParserNumber.h │ ├── PropertyParserRatio.cpp │ ├── PropertyParserRatio.h │ ├── PropertyParserString.cpp │ ├── PropertyParserString.h │ ├── PropertyParserTransform.cpp │ ├── PropertyParserTransform.h │ ├── PropertyShorthandDefinition.h │ ├── PropertySpecification.cpp │ ├── RenderInterface.cpp │ ├── RenderInterfaceCompatibility.cpp │ ├── RenderManager.cpp │ ├── RenderManagerAccess.cpp │ ├── RenderManagerAccess.h │ ├── ScrollController.cpp │ ├── ScrollController.h │ ├── Spritesheet.cpp │ ├── Stream.cpp │ ├── StreamFile.cpp │ ├── StreamFile.h │ ├── StreamMemory.cpp │ ├── StringUtilities.cpp │ ├── StyleSheet.cpp │ ├── StyleSheetContainer.cpp │ ├── StyleSheetFactory.cpp │ ├── StyleSheetFactory.h │ ├── StyleSheetNode.cpp │ ├── StyleSheetNode.h │ ├── StyleSheetParser.cpp │ ├── StyleSheetParser.h │ ├── StyleSheetSelector.cpp │ ├── StyleSheetSelector.h │ ├── StyleSheetSpecification.cpp │ ├── SystemInterface.cpp │ ├── Template.cpp │ ├── Template.h │ ├── TemplateCache.cpp │ ├── TemplateCache.h │ ├── Texture.cpp │ ├── TextureDatabase.cpp │ ├── TextureDatabase.h │ ├── TextureLayout.cpp │ ├── TextureLayout.h │ ├── TextureLayoutRectangle.cpp │ ├── TextureLayoutRectangle.h │ ├── TextureLayoutRow.cpp │ ├── TextureLayoutRow.h │ ├── TextureLayoutTexture.cpp │ ├── TextureLayoutTexture.h │ ├── Traits.cpp │ ├── Transform.cpp │ ├── TransformPrimitive.cpp │ ├── TransformState.cpp │ ├── TransformState.h │ ├── TransformUtilities.cpp │ ├── TransformUtilities.h │ ├── Tween.cpp │ ├── TypeConverter.cpp │ ├── URL.cpp │ ├── Variant.cpp │ ├── WidgetScroll.cpp │ ├── WidgetScroll.h │ ├── XMLNodeHandler.cpp │ ├── XMLNodeHandlerBody.cpp │ ├── XMLNodeHandlerBody.h │ ├── XMLNodeHandlerDefault.cpp │ ├── XMLNodeHandlerDefault.h │ ├── XMLNodeHandlerHead.cpp │ ├── XMLNodeHandlerHead.h │ ├── XMLNodeHandlerTemplate.cpp │ ├── XMLNodeHandlerTemplate.h │ ├── XMLParseTools.cpp │ ├── XMLParseTools.h │ ├── XMLParser.cpp │ └── precompiled.h ├── Debugger │ ├── .clang-format │ ├── BeaconSource.h │ ├── CMakeLists.txt │ ├── CommonSource.h │ ├── Debugger.cpp │ ├── DebuggerPlugin.cpp │ ├── DebuggerPlugin.h │ ├── DebuggerSystemInterface.cpp │ ├── DebuggerSystemInterface.h │ ├── ElementContextHook.cpp │ ├── ElementContextHook.h │ ├── ElementDebugDocument.cpp │ ├── ElementDebugDocument.h │ ├── ElementInfo.cpp │ ├── ElementInfo.h │ ├── ElementLog.cpp │ ├── ElementLog.h │ ├── FontSource.h │ ├── Geometry.cpp │ ├── Geometry.h │ ├── InfoSource.h │ ├── LICENSE.txt │ ├── LogSource.h │ └── MenuSource.h ├── Lottie │ ├── CMakeLists.txt │ ├── ElementLottie.cpp │ ├── LottiePlugin.cpp │ └── LottiePlugin.h ├── Lua │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Colourb.cpp │ ├── Colourb.h │ ├── Colourf.cpp │ ├── Colourf.h │ ├── Context.cpp │ ├── Context.h │ ├── ContextDocumentsProxy.cpp │ ├── ContextDocumentsProxy.h │ ├── Document.cpp │ ├── Document.h │ ├── Element.cpp │ ├── Element.h │ ├── ElementAttributesProxy.cpp │ ├── ElementAttributesProxy.h │ ├── ElementChildNodesProxy.cpp │ ├── ElementChildNodesProxy.h │ ├── ElementInstancer.cpp │ ├── ElementInstancer.h │ ├── ElementStyleProxy.cpp │ ├── ElementStyleProxy.h │ ├── ElementText.cpp │ ├── ElementText.h │ ├── Elements │ │ ├── As.h │ │ ├── CMakeLists.txt │ │ ├── ElementForm.cpp │ │ ├── ElementForm.h │ │ ├── ElementFormControl.cpp │ │ ├── ElementFormControl.h │ │ ├── ElementFormControlInput.cpp │ │ ├── ElementFormControlInput.h │ │ ├── ElementFormControlSelect.cpp │ │ ├── ElementFormControlSelect.h │ │ ├── ElementFormControlTextArea.cpp │ │ ├── ElementFormControlTextArea.h │ │ ├── ElementTabSet.cpp │ │ ├── ElementTabSet.h │ │ ├── SelectOptionsProxy.cpp │ │ └── SelectOptionsProxy.h │ ├── Event.cpp │ ├── Event.h │ ├── EventParametersProxy.cpp │ ├── EventParametersProxy.h │ ├── GlobalLuaFunctions.cpp │ ├── GlobalLuaFunctions.h │ ├── Interpreter.cpp │ ├── Log.cpp │ ├── Log.h │ ├── Lua.cpp │ ├── LuaDataModel.cpp │ ├── LuaDataModel.h │ ├── LuaDocument.cpp │ ├── LuaDocument.h │ ├── LuaDocumentElementInstancer.cpp │ ├── LuaDocumentElementInstancer.h │ ├── LuaElementInstancer.cpp │ ├── LuaElementInstancer.h │ ├── LuaEventListener.cpp │ ├── LuaEventListener.h │ ├── LuaEventListenerInstancer.cpp │ ├── LuaEventListenerInstancer.h │ ├── LuaPlugin.cpp │ ├── LuaPlugin.h │ ├── LuaType.cpp │ ├── Pairs.h │ ├── RmlUi.cpp │ ├── RmlUi.h │ ├── RmlUiContextsProxy.cpp │ ├── RmlUiContextsProxy.h │ ├── Utilities.cpp │ ├── Vector2f.cpp │ ├── Vector2f.h │ ├── Vector2i.cpp │ └── Vector2i.h └── SVG │ ├── CMakeLists.txt │ ├── DecoratorSVG.cpp │ ├── DecoratorSVG.h │ ├── ElementSVG.cpp │ ├── SVGCache.cpp │ ├── SVGCache.h │ ├── SVGPlugin.cpp │ ├── SVGPlugin.h │ ├── XMLNodeHandlerSVG.cpp │ └── XMLNodeHandlerSVG.h ├── Tests ├── CMakeLists.txt ├── Data │ ├── UnitTests │ │ ├── Specificity_Basic.rcss │ │ ├── Specificity_MediaQuery.rcss │ │ ├── data-title.rml │ │ └── template_basic.rml │ ├── VisualTests │ │ ├── LICENSE.txt │ │ ├── acid1.rml │ │ ├── border_radius.rml │ │ ├── box_sizing.rml │ │ ├── clip_mask.rml │ │ ├── color_interpolation.rml │ │ ├── css1_clear.rml │ │ ├── display_block_inside_inline.rml │ │ ├── document_position.rml │ │ ├── drag.rml │ │ ├── element_label.rml │ │ ├── filter_backdrop_filter_box_shadow.rml │ │ ├── filter_blur_area.rml │ │ ├── filter_blur_orb.rml │ │ ├── filter_drop_shadow.rml │ │ ├── filter_overflow.rml │ │ ├── filter_with_backdrop.rml │ │ ├── flex_01.rml │ │ ├── flex_02.rml │ │ ├── flex_03_scroll.rml │ │ ├── flex_04.rml │ │ ├── flex_05.rml │ │ ├── flex_06.rml │ │ ├── flex_absolutely_positioned.rml │ │ ├── flex_direction.rml │ │ ├── flex_inline.rml │ │ ├── flex_nested.rml │ │ ├── flex_shrink_to_fit_01.rml │ │ ├── flex_shrink_to_fit_02.rml │ │ ├── flex_wrap_column_reverse.rml │ │ ├── float_basic.rml │ │ ├── float_excluded_by_flow_root.rml │ │ ├── float_overflow.rml │ │ ├── float_placement.rml │ │ ├── float_text_wrap.rml │ │ ├── fractional-dimensions-01.rml │ │ ├── fractional-dimensions-02.rml │ │ ├── fractional-dimensions-03.rml │ │ ├── gap-001.rml │ │ ├── gap-002.rml │ │ ├── gap-003.rml │ │ ├── gap-004.rml │ │ ├── gap-005.rml │ │ ├── gap-006.rml │ │ ├── gap-007.rml │ │ ├── gap-008.rml │ │ ├── gap-009.rml │ │ ├── handle_target_anchor.rml │ │ ├── image_ratio.rml │ │ ├── ink_overflow_bounding_box.rml │ │ ├── inline_block.rml │ │ ├── inline_formatting_01.rml │ │ ├── inline_formatting_02.rml │ │ ├── inline_formatting_03.rml │ │ ├── inline_formatting_04.rml │ │ ├── inline_formatting_05.rml │ │ ├── inline_formatting_06.rml │ │ ├── inline_formatting_07.rml │ │ ├── inline_formatting_aligned_subtree.rml │ │ ├── issue_143_overflow_in_absolutely_positioned_input.rml │ │ ├── issue_452_scrollbar_resets.rml │ │ ├── letter_spacing.rml │ │ ├── mask_image.rml │ │ ├── media_query_01.rml │ │ ├── media_query_02.rml │ │ ├── navigation_01.rml │ │ ├── navigation_02.rml │ │ ├── opacity.rml │ │ ├── overflow_clip_transform.rml │ │ ├── overflow_hidden.rml │ │ ├── overflow_nested.rml │ │ ├── position_01_normal_flow.rml │ │ ├── position_02_relative_positioning.rml │ │ ├── position_03_floating_a_box.rml │ │ ├── position_04_floating_a_box_sibling.rml │ │ ├── position_05_floating_a_box_clear.rml │ │ ├── position_06_absolute_positioning.rml │ │ ├── position_07_absolute_positioning_relative.rml │ │ ├── position_08_absolute_positioning_no_relative.rml │ │ ├── position_09_absolute_positioning_change_bars.rml │ │ ├── position_absolute_static_position.rml │ │ ├── position_absolute_transform.rml │ │ ├── position_relative.rml │ │ ├── reference │ │ │ ├── flex_05-ref.rml │ │ │ ├── flex_06-ref.rml │ │ │ ├── flex_direction-ref.rml │ │ │ ├── flex_nested-ref.rml │ │ │ ├── flex_wrap_column_reverse-ref.rml │ │ │ ├── fractional-dimensions-02-ref.rml │ │ │ ├── gap-001-ref.rml │ │ │ ├── gap-002-ref.rml │ │ │ ├── gap-003-ref.rml │ │ │ ├── gap-004-ref.rml │ │ │ ├── gap-005-ref.rml │ │ │ ├── gap-006-ref.rml │ │ │ ├── gap-007-ref.rml │ │ │ ├── gap-008-ref.rml │ │ │ ├── gap-009-ref.rml │ │ │ ├── overflow_hidden-ref.rml │ │ │ ├── position_absolute_static_position-ref.rml │ │ │ └── table_01-ref.rml │ │ ├── renderer_alpha_blending_01.rml │ │ ├── renderer_alpha_blending_02.rml │ │ ├── renderer_alpha_blending_03.rml │ │ ├── replaced_display.rml │ │ ├── replaced_elements.rml │ │ ├── shader_conic_gradient.rml │ │ ├── shader_linear_gradient.rml │ │ ├── shader_radial_gradient.rml │ │ ├── shrink_to_fit_01.rml │ │ ├── shrink_to_fit_02.rml │ │ ├── shrink_to_fit_03.rml │ │ ├── shrink_to_fit_04.rml │ │ ├── stacking_context_01.rml │ │ ├── stacking_context_02.rml │ │ ├── table_01.rml │ │ ├── table_02.rml │ │ ├── table_03.rml │ │ ├── table_04.rml │ │ ├── table_05.rml │ │ ├── table_inline.rml │ │ ├── text_alignment.rml │ │ ├── text_decorator.rml │ │ ├── text_input_overflow.rml │ │ ├── text_overflow_01.rml │ │ ├── text_overflow_02.rml │ │ ├── white_space.rml │ │ └── word_break.rml │ ├── description.rml │ ├── style.rcss │ ├── view_source.rml │ └── visual_tests_help.rml ├── Dependencies │ ├── LICENSE.txt │ ├── doctest │ │ ├── cmake │ │ │ ├── Config.cmake.in │ │ │ ├── assemble_single_header.cmake │ │ │ ├── common.cmake │ │ │ ├── doctest.cmake │ │ │ ├── doctestAddTests.cmake │ │ │ └── exec_test.cmake │ │ └── doctest.h │ ├── lodepng │ │ ├── lodepng.cpp │ │ └── lodepng.h │ ├── nanobench │ │ └── nanobench.h │ └── trompeloeil │ │ ├── doctest │ │ └── trompeloeil.hpp │ │ ├── trompeloeil.hpp │ │ └── trompeloeil │ │ ├── coro.hpp │ │ ├── cpp11_shenanigans.hpp │ │ ├── lifetime.hpp │ │ ├── matcher.hpp │ │ ├── matcher │ │ ├── any.hpp │ │ ├── compare.hpp │ │ ├── deref.hpp │ │ ├── not.hpp │ │ └── re.hpp │ │ ├── mock.hpp │ │ ├── sequence.hpp │ │ └── stream_tracer.hpp ├── Output │ └── .gitignore ├── Source │ ├── Benchmarks │ │ ├── BackgroundBorder.cpp │ │ ├── CMakeLists.txt │ │ ├── DataBinding.cpp │ │ ├── DataExpression.cpp │ │ ├── Element.cpp │ │ ├── ElementDocument.cpp │ │ ├── Flexbox.cpp │ │ ├── FontEffect.cpp │ │ ├── Selectors.cpp │ │ ├── Table.cpp │ │ ├── WidgetTextInput.cpp │ │ └── main.cpp │ ├── CMakeLists.txt │ ├── Common │ │ ├── CMakeLists.txt │ │ ├── Mocks.h │ │ ├── TestsInterface.cpp │ │ ├── TestsInterface.h │ │ ├── TestsShell.cpp │ │ ├── TestsShell.h │ │ └── TypesToString.h │ ├── UnitTests │ │ ├── Animation.cpp │ │ ├── CMakeLists.txt │ │ ├── Core.cpp │ │ ├── DataBinding.cpp │ │ ├── DataExpression.cpp │ │ ├── DataModel.cpp │ │ ├── Debugger.cpp │ │ ├── Decorator.cpp │ │ ├── Element.cpp │ │ ├── ElementBackgroundBorder.cpp │ │ ├── ElementDocument.cpp │ │ ├── ElementFormControlSelect.cpp │ │ ├── ElementHandle.cpp │ │ ├── ElementImage.cpp │ │ ├── ElementStyle.cpp │ │ ├── EventListener.cpp │ │ ├── Filter.cpp │ │ ├── FlexFormatting.cpp │ │ ├── Layout.cpp │ │ ├── Localization.cpp │ │ ├── Math.cpp │ │ ├── MediaQuery.cpp │ │ ├── Properties.cpp │ │ ├── PropertySpecification.cpp │ │ ├── Selectors.cpp │ │ ├── Specificity_Basic.cpp │ │ ├── Specificity_MediaQuery.cpp │ │ ├── StableVector.cpp │ │ ├── StringUtilities.cpp │ │ ├── StyleSheetParser.cpp │ │ ├── Template.cpp │ │ ├── URL.cpp │ │ ├── Variant.cpp │ │ ├── XMLParser.cpp │ │ └── main.cpp │ └── VisualTests │ │ ├── CMakeLists.txt │ │ ├── CaptureScreen.cpp │ │ ├── CaptureScreen.h │ │ ├── TestConfig.cpp │ │ ├── TestConfig.h │ │ ├── TestNavigator.cpp │ │ ├── TestNavigator.h │ │ ├── TestSuite.h │ │ ├── TestViewer.cpp │ │ ├── TestViewer.h │ │ ├── XmlNodeHandlers.cpp │ │ ├── XmlNodeHandlers.h │ │ └── main.cpp ├── Tools │ └── convert_css_test_suite_to_rml.py └── readme.md ├── Utilities └── natvis │ └── RmlUi.natvis ├── changelog.md ├── contributing.md └── readme.md /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/.gitignore -------------------------------------------------------------------------------- /Backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/CMakeLists.txt -------------------------------------------------------------------------------- /Backends/RmlUi_Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend.h -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_GLFW_GL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_GLFW_GL2.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_GLFW_GL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_GLFW_GL3.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_GLFW_VK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_GLFW_VK.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_SDL_GL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_SDL_GL2.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_SDL_GL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_SDL_GL3.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_SDL_GPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_SDL_GPU.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_SDL_SDLrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_SDL_SDLrenderer.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_SDL_VK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_SDL_VK.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_SFML_GL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_SFML_GL2.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_Win32_GL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_Win32_GL2.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_Win32_VK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_Win32_VK.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Backend_X11_GL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Backend_X11_GL2.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Include_GL3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Include_GL3.h -------------------------------------------------------------------------------- /Backends/RmlUi_Include_Vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Include_Vulkan.h -------------------------------------------------------------------------------- /Backends/RmlUi_Include_Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Include_Windows.h -------------------------------------------------------------------------------- /Backends/RmlUi_Include_Xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Include_Xlib.h -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_GLFW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_GLFW.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_GLFW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_GLFW.h -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_SDL.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_SDL.h -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_SFML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_SFML.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_SFML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_SFML.h -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_Win32.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_Win32.h -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_X11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_X11.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Platform_X11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Platform_X11.h -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_GL2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_GL2.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_GL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_GL2.h -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_GL3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_GL3.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_GL3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_GL3.h -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_SDL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_SDL.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_SDL.h -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_SDL_GPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_SDL_GPU.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_SDL_GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_SDL_GPU.h -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_VK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_VK.cpp -------------------------------------------------------------------------------- /Backends/RmlUi_Renderer_VK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Renderer_VK.h -------------------------------------------------------------------------------- /Backends/RmlUi_SDL_GPU/compile_shaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_SDL_GPU/compile_shaders.py -------------------------------------------------------------------------------- /Backends/RmlUi_SDL_GPU/shader_vert.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_SDL_GPU/shader_vert.vert -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: Never 3 | -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Vulkan/LICENSE.txt -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/ShadersCompiledSPV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Vulkan/ShadersCompiledSPV.h -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/compile_shaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Vulkan/compile_shaders.py -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/shader_vert.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Vulkan/shader_vert.vert -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/vk_mem_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Vulkan/vk_mem_alloc.h -------------------------------------------------------------------------------- /Backends/RmlUi_Vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Backends/RmlUi_Vulkan/vulkan.h -------------------------------------------------------------------------------- /CMake/BackendAutoSelection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/BackendAutoSelection.cmake -------------------------------------------------------------------------------- /CMake/Dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Dependencies.cmake -------------------------------------------------------------------------------- /CMake/DependenciesForBackends.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/DependenciesForBackends.cmake -------------------------------------------------------------------------------- /CMake/DependenciesForShell.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/DependenciesForShell.cmake -------------------------------------------------------------------------------- /CMake/DependenciesForTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/DependenciesForTests.cmake -------------------------------------------------------------------------------- /CMake/Modules/Emscripten/FindOpenGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/Emscripten/FindOpenGL.cmake -------------------------------------------------------------------------------- /CMake/Modules/Emscripten/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/Emscripten/FindSDL2.cmake -------------------------------------------------------------------------------- /CMake/Modules/Emscripten/Findglfw3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/Emscripten/Findglfw3.cmake -------------------------------------------------------------------------------- /CMake/Modules/FindHarfBuzz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/FindHarfBuzz.cmake -------------------------------------------------------------------------------- /CMake/Modules/FindLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/FindLuaJIT.cmake -------------------------------------------------------------------------------- /CMake/Modules/FindSDL2_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/FindSDL2_image.cmake -------------------------------------------------------------------------------- /CMake/Modules/Findlunasvg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Modules/Findlunasvg.cmake -------------------------------------------------------------------------------- /CMake/OptionsLists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/OptionsLists.cmake -------------------------------------------------------------------------------- /CMake/PackageUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/PackageUtilities.cmake -------------------------------------------------------------------------------- /CMake/RmlUiConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/RmlUiConfig.cmake.in -------------------------------------------------------------------------------- /CMake/RuntimeUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/RuntimeUtilities.cmake -------------------------------------------------------------------------------- /CMake/Utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMake/Utilities.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /Dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | include/ 2 | lib/ 3 | tracy/ 4 | */ 5 | -------------------------------------------------------------------------------- /Include/RmlUi/Config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Config/Config.h -------------------------------------------------------------------------------- /Include/RmlUi/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Animation.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/BaseXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/BaseXMLParser.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Box.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/CallbackTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/CallbackTexture.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Colour.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Colour.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Colour.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/CompiledFilterShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/CompiledFilterShader.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ComputedValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ComputedValues.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Containers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Containers/LICENSE.txt -------------------------------------------------------------------------------- /Include/RmlUi/Core/Containers/robin_hood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Containers/robin_hood.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Context.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ContextInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ContextInstancer.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ConvolutionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ConvolutionFilter.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Core.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/DataModelHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/DataModelHandle.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/DataStructHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/DataStructHandle.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/DataTypeRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/DataTypeRegister.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/DataTypes.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/DataVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/DataVariable.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Debug.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/DecorationTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/DecorationTypes.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Decorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Decorator.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Dictionary.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/EffectSpecification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/EffectSpecification.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Element.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Element.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Element.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/ElementDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ElementDocument.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ElementInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ElementInstancer.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ElementScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ElementScroll.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ElementText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ElementText.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ElementUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ElementUtilities.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Elements/ElementForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Elements/ElementForm.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Event.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/EventInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/EventInstancer.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/EventListener.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Factory.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/FileInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/FileInterface.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Filter.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/FontEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/FontEffect.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/FontEffectInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/FontEffectInstancer.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/FontEngineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/FontEngineInterface.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/FontGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/FontGlyph.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/FontMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/FontMetrics.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Geometry.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Header.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ID.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Input.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Log.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Math.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Matrix4.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Matrix4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Matrix4.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Mesh.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/MeshUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/MeshUtilities.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/NumericValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/NumericValue.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ObserverPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ObserverPtr.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Platform.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Plugin.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Profiling.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Property.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/PropertyDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/PropertyDefinition.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/PropertyDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/PropertyDictionary.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/PropertyIdSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/PropertyIdSet.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/PropertyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/PropertyParser.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/PropertySpecification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/PropertySpecification.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Rectangle.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/RenderBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/RenderBox.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/RenderInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/RenderInterface.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/RenderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/RenderManager.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ScriptInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ScriptInterface.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/ScrollTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/ScrollTypes.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Span.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Spritesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Spritesheet.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StableVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StableVector.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Stream.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StreamMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StreamMemory.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StringUtilities.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StyleSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StyleSheet.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StyleSheetContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StyleSheetContainer.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StyleSheetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StyleSheetTypes.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/StyleTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/StyleTypes.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/SystemInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/SystemInterface.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/TextInputContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/TextInputContext.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/TextInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/TextInputHandler.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/TextShapingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/TextShapingContext.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Texture.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Traits.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Transform.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/TransformPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/TransformPrimitive.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Tween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Tween.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/TypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/TypeConverter.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/TypeConverter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/TypeConverter.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Types.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/URL.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/UniqueRenderResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/UniqueRenderResource.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Unit.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Utilities.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Variant.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Variant.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Variant.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vector2.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vector2.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vector3.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vector3.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vector4.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vector4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vector4.inl -------------------------------------------------------------------------------- /Include/RmlUi/Core/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/Vertex.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/XMLNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/XMLNodeHandler.h -------------------------------------------------------------------------------- /Include/RmlUi/Core/XMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Core/XMLParser.h -------------------------------------------------------------------------------- /Include/RmlUi/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Debugger.h -------------------------------------------------------------------------------- /Include/RmlUi/Debugger/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Debugger/Debugger.h -------------------------------------------------------------------------------- /Include/RmlUi/Debugger/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Debugger/Header.h -------------------------------------------------------------------------------- /Include/RmlUi/Lottie/ElementLottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lottie/ElementLottie.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/Header.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua/IncludeLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/IncludeLua.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua/Interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/Interpreter.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua/Lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/Lua.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua/LuaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/LuaType.h -------------------------------------------------------------------------------- /Include/RmlUi/Lua/LuaType.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/LuaType.inl -------------------------------------------------------------------------------- /Include/RmlUi/Lua/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/Lua/Utilities.h -------------------------------------------------------------------------------- /Include/RmlUi/SVG/ElementSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Include/RmlUi/SVG/ElementSVG.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/assets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/LICENSE.txt -------------------------------------------------------------------------------- /Samples/assets/LatoLatin-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/LatoLatin-Bold.ttf -------------------------------------------------------------------------------- /Samples/assets/LatoLatin-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/LatoLatin-BoldItalic.ttf -------------------------------------------------------------------------------- /Samples/assets/LatoLatin-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/LatoLatin-Italic.ttf -------------------------------------------------------------------------------- /Samples/assets/LatoLatin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/LatoLatin-Regular.ttf -------------------------------------------------------------------------------- /Samples/assets/NotoEmoji-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/NotoEmoji-Regular.ttf -------------------------------------------------------------------------------- /Samples/assets/alien_small.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/alien_small.tga -------------------------------------------------------------------------------- /Samples/assets/demo.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/demo.rml -------------------------------------------------------------------------------- /Samples/assets/hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/hello_world.png -------------------------------------------------------------------------------- /Samples/assets/high_scores_alien_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/high_scores_alien_1.tga -------------------------------------------------------------------------------- /Samples/assets/high_scores_alien_2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/high_scores_alien_2.tga -------------------------------------------------------------------------------- /Samples/assets/high_scores_alien_3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/high_scores_alien_3.tga -------------------------------------------------------------------------------- /Samples/assets/high_scores_defender.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/high_scores_defender.tga -------------------------------------------------------------------------------- /Samples/assets/invader.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/invader.rcss -------------------------------------------------------------------------------- /Samples/assets/invader.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/invader.tga -------------------------------------------------------------------------------- /Samples/assets/present.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/present.tga -------------------------------------------------------------------------------- /Samples/assets/rml.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/rml.rcss -------------------------------------------------------------------------------- /Samples/assets/window.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/assets/window.rml -------------------------------------------------------------------------------- /Samples/basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/animation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/animation/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/animation/data/animation.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/animation/data/animation.rml -------------------------------------------------------------------------------- /Samples/basic/animation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/animation/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/benchmark/data/benchmark.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/benchmark/data/benchmark.rml -------------------------------------------------------------------------------- /Samples/basic/benchmark/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/benchmark/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/bitmap_font/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/bitmap_font/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/bitmap_font/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/bitmap_font/data/LICENSE.txt -------------------------------------------------------------------------------- /Samples/basic/bitmap_font/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/bitmap_font/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/custom_log/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/custom_log/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/custom_log/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/custom_log/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/data_binding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/data_binding/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/data_binding/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/data_binding/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/demo/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/demo/data/demo.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/demo/data/demo.rml -------------------------------------------------------------------------------- /Samples/basic/demo/src/DemoEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/demo/src/DemoEventListener.h -------------------------------------------------------------------------------- /Samples/basic/demo/src/DemoWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/demo/src/DemoWindow.cpp -------------------------------------------------------------------------------- /Samples/basic/demo/src/DemoWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/demo/src/DemoWindow.h -------------------------------------------------------------------------------- /Samples/basic/demo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/demo/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/drag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/drag/data/icon.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/data/icon.rcss -------------------------------------------------------------------------------- /Samples/basic/drag/data/inventory.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/data/inventory.rml -------------------------------------------------------------------------------- /Samples/basic/drag/src/DragListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/src/DragListener.cpp -------------------------------------------------------------------------------- /Samples/basic/drag/src/DragListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/src/DragListener.h -------------------------------------------------------------------------------- /Samples/basic/drag/src/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/src/Inventory.cpp -------------------------------------------------------------------------------- /Samples/basic/drag/src/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/src/Inventory.h -------------------------------------------------------------------------------- /Samples/basic/drag/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/drag/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/effects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/effects/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/effects/data/effects.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/effects/data/effects.rml -------------------------------------------------------------------------------- /Samples/basic/effects/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/effects/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/data/LICENSE.txt -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/data/harfbuzz.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/data/harfbuzz.rml -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontFace.cpp -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontFace.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontFaceLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontFaceLayer.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontFamily.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontFamily.cpp -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontFamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontFamily.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontGlyph.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/FontProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/FontProvider.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/LanguageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/LanguageData.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/TextureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/TextureLayout.h -------------------------------------------------------------------------------- /Samples/basic/harfbuzz/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/harfbuzz/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/ime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/ime/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/ime/data/ime.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/ime/data/ime.rml -------------------------------------------------------------------------------- /Samples/basic/ime/src/SystemFontWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/ime/src/SystemFontWin32.cpp -------------------------------------------------------------------------------- /Samples/basic/ime/src/SystemFontWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/ime/src/SystemFontWin32.h -------------------------------------------------------------------------------- /Samples/basic/ime/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/ime/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/load_document/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/load_document/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/load_document/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/load_document/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/lottie/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/lottie/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/lottie/data/LICENSE.txt -------------------------------------------------------------------------------- /Samples/basic/lottie/data/a_mountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/lottie/data/a_mountain.json -------------------------------------------------------------------------------- /Samples/basic/lottie/data/lottie.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/lottie/data/lottie.rml -------------------------------------------------------------------------------- /Samples/basic/lottie/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/lottie/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/svg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/svg/data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/data/LICENSE.txt -------------------------------------------------------------------------------- /Samples/basic/svg/data/svg_decorator.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/data/svg_decorator.rml -------------------------------------------------------------------------------- /Samples/basic/svg/data/svg_element.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/data/svg_element.rml -------------------------------------------------------------------------------- /Samples/basic/svg/data/svg_inline.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/data/svg_inline.rml -------------------------------------------------------------------------------- /Samples/basic/svg/data/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/data/tiger.svg -------------------------------------------------------------------------------- /Samples/basic/svg/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/svg/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/transform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/transform/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/transform/data/transform.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/transform/data/transform.rml -------------------------------------------------------------------------------- /Samples/basic/transform/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/transform/src/main.cpp -------------------------------------------------------------------------------- /Samples/basic/tree_view/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/tree_view/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/basic/tree_view/data/tree_view.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/tree_view/data/tree_view.rml -------------------------------------------------------------------------------- /Samples/basic/tree_view/src/FileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/tree_view/src/FileBrowser.h -------------------------------------------------------------------------------- /Samples/basic/tree_view/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/basic/tree_view/src/main.cpp -------------------------------------------------------------------------------- /Samples/invaders/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/invaders/data/background.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/background.rml -------------------------------------------------------------------------------- /Samples/invaders/data/background.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/background.tga -------------------------------------------------------------------------------- /Samples/invaders/data/game.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/game.rml -------------------------------------------------------------------------------- /Samples/invaders/data/help.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/help.rml -------------------------------------------------------------------------------- /Samples/invaders/data/help_defender.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/help_defender.tga -------------------------------------------------------------------------------- /Samples/invaders/data/high_score.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/high_score.rml -------------------------------------------------------------------------------- /Samples/invaders/data/invaders.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/invaders.tga -------------------------------------------------------------------------------- /Samples/invaders/data/logo.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/logo.rml -------------------------------------------------------------------------------- /Samples/invaders/data/logo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/logo.tga -------------------------------------------------------------------------------- /Samples/invaders/data/main_menu.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/main_menu.rml -------------------------------------------------------------------------------- /Samples/invaders/data/options.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/options.rml -------------------------------------------------------------------------------- /Samples/invaders/data/pause.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/pause.rml -------------------------------------------------------------------------------- /Samples/invaders/data/start_game.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/data/start_game.rml -------------------------------------------------------------------------------- /Samples/invaders/src/DecoratorDefender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/DecoratorDefender.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/DecoratorDefender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/DecoratorDefender.h -------------------------------------------------------------------------------- /Samples/invaders/src/DecoratorStarfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/DecoratorStarfield.h -------------------------------------------------------------------------------- /Samples/invaders/src/Defender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Defender.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/Defender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Defender.h -------------------------------------------------------------------------------- /Samples/invaders/src/ElementGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/ElementGame.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/ElementGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/ElementGame.h -------------------------------------------------------------------------------- /Samples/invaders/src/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventHandler.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventHandler.h -------------------------------------------------------------------------------- /Samples/invaders/src/EventHandlerOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventHandlerOptions.h -------------------------------------------------------------------------------- /Samples/invaders/src/EventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventListener.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventListener.h -------------------------------------------------------------------------------- /Samples/invaders/src/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventManager.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/EventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/EventManager.h -------------------------------------------------------------------------------- /Samples/invaders/src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Game.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Game.h -------------------------------------------------------------------------------- /Samples/invaders/src/GameDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/GameDetails.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/GameDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/GameDetails.h -------------------------------------------------------------------------------- /Samples/invaders/src/HighScores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/HighScores.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/HighScores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/HighScores.h -------------------------------------------------------------------------------- /Samples/invaders/src/Invader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Invader.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/Invader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Invader.h -------------------------------------------------------------------------------- /Samples/invaders/src/Mothership.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Mothership.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/Mothership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Mothership.h -------------------------------------------------------------------------------- /Samples/invaders/src/Shield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Shield.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/Shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Shield.h -------------------------------------------------------------------------------- /Samples/invaders/src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Sprite.cpp -------------------------------------------------------------------------------- /Samples/invaders/src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/Sprite.h -------------------------------------------------------------------------------- /Samples/invaders/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/invaders/src/main.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/lua_invaders/data/background.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/background.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/background.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/background.tga -------------------------------------------------------------------------------- /Samples/lua_invaders/data/game.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/game.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/help.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/help.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/high_score.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/high_score.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/invaders.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/invaders.tga -------------------------------------------------------------------------------- /Samples/lua_invaders/data/logo.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/logo.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/logo.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/logo.tga -------------------------------------------------------------------------------- /Samples/lua_invaders/data/main_menu.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/main_menu.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/options.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/options.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/pause.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/pause.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/start_game.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/start_game.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/data/window.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/data/window.rml -------------------------------------------------------------------------------- /Samples/lua_invaders/lua/start.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/lua/start.lua -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Defender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Defender.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Defender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Defender.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/ElementGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/ElementGame.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/ElementGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/ElementGame.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Game.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Game.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/GameDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/GameDetails.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/GameDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/GameDetails.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/HighScores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/HighScores.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/HighScores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/HighScores.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Invader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Invader.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Invader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Invader.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/LuaInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/LuaInterface.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/LuaInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/LuaInterface.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Mothership.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Mothership.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Mothership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Mothership.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Shield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Shield.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Shield.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Sprite.cpp -------------------------------------------------------------------------------- /Samples/lua_invaders/src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/Sprite.h -------------------------------------------------------------------------------- /Samples/lua_invaders/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/lua_invaders/src/main.cpp -------------------------------------------------------------------------------- /Samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/readme.md -------------------------------------------------------------------------------- /Samples/shell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/shell/include/PlatformExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/include/PlatformExtensions.h -------------------------------------------------------------------------------- /Samples/shell/include/RendererExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/include/RendererExtensions.h -------------------------------------------------------------------------------- /Samples/shell/include/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/include/Shell.h -------------------------------------------------------------------------------- /Samples/shell/include/ShellFileInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/include/ShellFileInterface.h -------------------------------------------------------------------------------- /Samples/shell/src/PlatformExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/src/PlatformExtensions.cpp -------------------------------------------------------------------------------- /Samples/shell/src/RendererExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/src/RendererExtensions.cpp -------------------------------------------------------------------------------- /Samples/shell/src/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/src/Shell.cpp -------------------------------------------------------------------------------- /Samples/shell/src/ShellFileInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/shell/src/ShellFileInterface.cpp -------------------------------------------------------------------------------- /Samples/tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/tutorial/drag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/drag/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/tutorial/drag/data/inventory.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/drag/data/inventory.rml -------------------------------------------------------------------------------- /Samples/tutorial/drag/data/tutorial.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/drag/data/tutorial.rcss -------------------------------------------------------------------------------- /Samples/tutorial/drag/src/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/drag/src/Inventory.cpp -------------------------------------------------------------------------------- /Samples/tutorial/drag/src/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/drag/src/Inventory.h -------------------------------------------------------------------------------- /Samples/tutorial/drag/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/drag/src/main.cpp -------------------------------------------------------------------------------- /Samples/tutorial/template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/template/CMakeLists.txt -------------------------------------------------------------------------------- /Samples/tutorial/template/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Samples/tutorial/template/src/main.cpp -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/BaseXMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/BaseXMLParser.cpp -------------------------------------------------------------------------------- /Source/Core/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Box.cpp -------------------------------------------------------------------------------- /Source/Core/BoxShadowCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/BoxShadowCache.cpp -------------------------------------------------------------------------------- /Source/Core/BoxShadowCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/BoxShadowCache.h -------------------------------------------------------------------------------- /Source/Core/BoxShadowHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/BoxShadowHash.h -------------------------------------------------------------------------------- /Source/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/CallbackTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/CallbackTexture.cpp -------------------------------------------------------------------------------- /Source/Core/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Clock.cpp -------------------------------------------------------------------------------- /Source/Core/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Clock.h -------------------------------------------------------------------------------- /Source/Core/CompiledFilterShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/CompiledFilterShader.cpp -------------------------------------------------------------------------------- /Source/Core/ComputeProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ComputeProperty.cpp -------------------------------------------------------------------------------- /Source/Core/ComputeProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ComputeProperty.h -------------------------------------------------------------------------------- /Source/Core/ComputedValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ComputedValues.cpp -------------------------------------------------------------------------------- /Source/Core/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Context.cpp -------------------------------------------------------------------------------- /Source/Core/ContextInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ContextInstancer.cpp -------------------------------------------------------------------------------- /Source/Core/ContextInstancerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ContextInstancerDefault.cpp -------------------------------------------------------------------------------- /Source/Core/ContextInstancerDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ContextInstancerDefault.h -------------------------------------------------------------------------------- /Source/Core/ControlledLifetimeResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ControlledLifetimeResource.h -------------------------------------------------------------------------------- /Source/Core/ConvolutionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ConvolutionFilter.cpp -------------------------------------------------------------------------------- /Source/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Core.cpp -------------------------------------------------------------------------------- /Source/Core/DataController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataController.cpp -------------------------------------------------------------------------------- /Source/Core/DataController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataController.h -------------------------------------------------------------------------------- /Source/Core/DataControllerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataControllerDefault.cpp -------------------------------------------------------------------------------- /Source/Core/DataControllerDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataControllerDefault.h -------------------------------------------------------------------------------- /Source/Core/DataExpression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataExpression.cpp -------------------------------------------------------------------------------- /Source/Core/DataExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataExpression.h -------------------------------------------------------------------------------- /Source/Core/DataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataModel.cpp -------------------------------------------------------------------------------- /Source/Core/DataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataModel.h -------------------------------------------------------------------------------- /Source/Core/DataModelHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataModelHandle.cpp -------------------------------------------------------------------------------- /Source/Core/DataTypeRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataTypeRegister.cpp -------------------------------------------------------------------------------- /Source/Core/DataVariable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataVariable.cpp -------------------------------------------------------------------------------- /Source/Core/DataView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataView.cpp -------------------------------------------------------------------------------- /Source/Core/DataView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataView.h -------------------------------------------------------------------------------- /Source/Core/DataViewDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataViewDefault.cpp -------------------------------------------------------------------------------- /Source/Core/DataViewDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DataViewDefault.h -------------------------------------------------------------------------------- /Source/Core/Decorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Decorator.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorGradient.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorGradient.h -------------------------------------------------------------------------------- /Source/Core/DecoratorNinePatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorNinePatch.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorNinePatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorNinePatch.h -------------------------------------------------------------------------------- /Source/Core/DecoratorShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorShader.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorShader.h -------------------------------------------------------------------------------- /Source/Core/DecoratorText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorText.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorText.h -------------------------------------------------------------------------------- /Source/Core/DecoratorTiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiled.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorTiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiled.h -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledBox.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledBox.h -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledHorizontal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledHorizontal.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledHorizontal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledHorizontal.h -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledImage.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledImage.h -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledVertical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledVertical.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorTiledVertical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorTiledVertical.h -------------------------------------------------------------------------------- /Source/Core/DecoratorUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorUtilities.cpp -------------------------------------------------------------------------------- /Source/Core/DecoratorUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DecoratorUtilities.h -------------------------------------------------------------------------------- /Source/Core/DocumentHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DocumentHeader.cpp -------------------------------------------------------------------------------- /Source/Core/DocumentHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/DocumentHeader.h -------------------------------------------------------------------------------- /Source/Core/EffectSpecification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EffectSpecification.cpp -------------------------------------------------------------------------------- /Source/Core/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Element.cpp -------------------------------------------------------------------------------- /Source/Core/ElementAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementAnimation.cpp -------------------------------------------------------------------------------- /Source/Core/ElementAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementAnimation.h -------------------------------------------------------------------------------- /Source/Core/ElementBackgroundBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementBackgroundBorder.cpp -------------------------------------------------------------------------------- /Source/Core/ElementBackgroundBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementBackgroundBorder.h -------------------------------------------------------------------------------- /Source/Core/ElementDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementDefinition.cpp -------------------------------------------------------------------------------- /Source/Core/ElementDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementDefinition.h -------------------------------------------------------------------------------- /Source/Core/ElementDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementDocument.cpp -------------------------------------------------------------------------------- /Source/Core/ElementEffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementEffects.cpp -------------------------------------------------------------------------------- /Source/Core/ElementEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementEffects.h -------------------------------------------------------------------------------- /Source/Core/ElementHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementHandle.cpp -------------------------------------------------------------------------------- /Source/Core/ElementHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementHandle.h -------------------------------------------------------------------------------- /Source/Core/ElementInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementInstancer.cpp -------------------------------------------------------------------------------- /Source/Core/ElementMeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementMeta.cpp -------------------------------------------------------------------------------- /Source/Core/ElementMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementMeta.h -------------------------------------------------------------------------------- /Source/Core/ElementScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementScroll.cpp -------------------------------------------------------------------------------- /Source/Core/ElementStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementStyle.cpp -------------------------------------------------------------------------------- /Source/Core/ElementStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementStyle.h -------------------------------------------------------------------------------- /Source/Core/ElementText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementText.cpp -------------------------------------------------------------------------------- /Source/Core/ElementUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ElementUtilities.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/Elements/ElementForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementForm.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/ElementImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementImage.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/ElementImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementImage.h -------------------------------------------------------------------------------- /Source/Core/Elements/ElementLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementLabel.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/ElementLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementLabel.h -------------------------------------------------------------------------------- /Source/Core/Elements/ElementProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementProgress.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/ElementTabSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/ElementTabSet.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputType.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputType.h -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeButton.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeButton.h -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeCheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeCheckbox.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeCheckbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeCheckbox.h -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeRadio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeRadio.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeRadio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeRadio.h -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeRange.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeRange.h -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeSubmit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeSubmit.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeSubmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeSubmit.h -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeText.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/InputTypeText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/InputTypeText.h -------------------------------------------------------------------------------- /Source/Core/Elements/WidgetDropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/WidgetDropDown.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/WidgetDropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/WidgetDropDown.h -------------------------------------------------------------------------------- /Source/Core/Elements/WidgetSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/WidgetSlider.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/WidgetSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/WidgetSlider.h -------------------------------------------------------------------------------- /Source/Core/Elements/WidgetTextInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/WidgetTextInput.cpp -------------------------------------------------------------------------------- /Source/Core/Elements/WidgetTextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Elements/WidgetTextInput.h -------------------------------------------------------------------------------- /Source/Core/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Event.cpp -------------------------------------------------------------------------------- /Source/Core/EventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventDispatcher.cpp -------------------------------------------------------------------------------- /Source/Core/EventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventDispatcher.h -------------------------------------------------------------------------------- /Source/Core/EventInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventInstancer.cpp -------------------------------------------------------------------------------- /Source/Core/EventInstancerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventInstancerDefault.cpp -------------------------------------------------------------------------------- /Source/Core/EventInstancerDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventInstancerDefault.h -------------------------------------------------------------------------------- /Source/Core/EventListenerInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventListenerInstancer.cpp -------------------------------------------------------------------------------- /Source/Core/EventSpecification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventSpecification.cpp -------------------------------------------------------------------------------- /Source/Core/EventSpecification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/EventSpecification.h -------------------------------------------------------------------------------- /Source/Core/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Factory.cpp -------------------------------------------------------------------------------- /Source/Core/FileInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FileInterface.cpp -------------------------------------------------------------------------------- /Source/Core/FileInterfaceDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FileInterfaceDefault.cpp -------------------------------------------------------------------------------- /Source/Core/FileInterfaceDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FileInterfaceDefault.h -------------------------------------------------------------------------------- /Source/Core/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Filter.cpp -------------------------------------------------------------------------------- /Source/Core/FilterBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FilterBasic.cpp -------------------------------------------------------------------------------- /Source/Core/FilterBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FilterBasic.h -------------------------------------------------------------------------------- /Source/Core/FilterBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FilterBlur.cpp -------------------------------------------------------------------------------- /Source/Core/FilterBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FilterBlur.h -------------------------------------------------------------------------------- /Source/Core/FilterDropShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FilterDropShadow.cpp -------------------------------------------------------------------------------- /Source/Core/FilterDropShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FilterDropShadow.h -------------------------------------------------------------------------------- /Source/Core/FontEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffect.cpp -------------------------------------------------------------------------------- /Source/Core/FontEffectBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectBlur.cpp -------------------------------------------------------------------------------- /Source/Core/FontEffectBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectBlur.h -------------------------------------------------------------------------------- /Source/Core/FontEffectGlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectGlow.cpp -------------------------------------------------------------------------------- /Source/Core/FontEffectGlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectGlow.h -------------------------------------------------------------------------------- /Source/Core/FontEffectInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectInstancer.cpp -------------------------------------------------------------------------------- /Source/Core/FontEffectOutline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectOutline.cpp -------------------------------------------------------------------------------- /Source/Core/FontEffectOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectOutline.h -------------------------------------------------------------------------------- /Source/Core/FontEffectShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectShadow.cpp -------------------------------------------------------------------------------- /Source/Core/FontEffectShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEffectShadow.h -------------------------------------------------------------------------------- /Source/Core/FontEngineDefault/FontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEngineDefault/FontFace.cpp -------------------------------------------------------------------------------- /Source/Core/FontEngineDefault/FontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEngineDefault/FontFace.h -------------------------------------------------------------------------------- /Source/Core/FontEngineDefault/FontFamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEngineDefault/FontFamily.h -------------------------------------------------------------------------------- /Source/Core/FontEngineDefault/FontTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEngineDefault/FontTypes.h -------------------------------------------------------------------------------- /Source/Core/FontEngineInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/FontEngineInterface.cpp -------------------------------------------------------------------------------- /Source/Core/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Geometry.cpp -------------------------------------------------------------------------------- /Source/Core/GeometryBackgroundBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/GeometryBackgroundBorder.cpp -------------------------------------------------------------------------------- /Source/Core/GeometryBackgroundBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/GeometryBackgroundBorder.h -------------------------------------------------------------------------------- /Source/Core/GeometryBoxShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/GeometryBoxShadow.cpp -------------------------------------------------------------------------------- /Source/Core/GeometryBoxShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/GeometryBoxShadow.h -------------------------------------------------------------------------------- /Source/Core/IdNameMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/IdNameMap.h -------------------------------------------------------------------------------- /Source/Core/Layout/BlockContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/BlockContainer.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/BlockContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/BlockContainer.h -------------------------------------------------------------------------------- /Source/Core/Layout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/Layout/ContainerBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/ContainerBox.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/ContainerBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/ContainerBox.h -------------------------------------------------------------------------------- /Source/Core/Layout/FlexFormattingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/FlexFormattingContext.h -------------------------------------------------------------------------------- /Source/Core/Layout/FloatedBoxSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/FloatedBoxSpace.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/FloatedBoxSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/FloatedBoxSpace.h -------------------------------------------------------------------------------- /Source/Core/Layout/FormattingContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/FormattingContext.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/FormattingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/FormattingContext.h -------------------------------------------------------------------------------- /Source/Core/Layout/InlineBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineBox.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/InlineBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineBox.h -------------------------------------------------------------------------------- /Source/Core/Layout/InlineContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineContainer.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/InlineContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineContainer.h -------------------------------------------------------------------------------- /Source/Core/Layout/InlineLevelBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineLevelBox.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/InlineLevelBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineLevelBox.h -------------------------------------------------------------------------------- /Source/Core/Layout/InlineTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/InlineTypes.h -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutBox.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutBox.h -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutDetails.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutDetails.h -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutEngine.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutEngine.h -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutPools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutPools.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/LayoutPools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LayoutPools.h -------------------------------------------------------------------------------- /Source/Core/Layout/LineBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LineBox.cpp -------------------------------------------------------------------------------- /Source/Core/Layout/LineBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Layout/LineBox.h -------------------------------------------------------------------------------- /Source/Core/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Log.cpp -------------------------------------------------------------------------------- /Source/Core/LogDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/LogDefault.cpp -------------------------------------------------------------------------------- /Source/Core/LogDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/LogDefault.h -------------------------------------------------------------------------------- /Source/Core/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Math.cpp -------------------------------------------------------------------------------- /Source/Core/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Memory.cpp -------------------------------------------------------------------------------- /Source/Core/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Memory.h -------------------------------------------------------------------------------- /Source/Core/MeshUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/MeshUtilities.cpp -------------------------------------------------------------------------------- /Source/Core/ObserverPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ObserverPtr.cpp -------------------------------------------------------------------------------- /Source/Core/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Plugin.cpp -------------------------------------------------------------------------------- /Source/Core/PluginRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PluginRegistry.cpp -------------------------------------------------------------------------------- /Source/Core/PluginRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PluginRegistry.h -------------------------------------------------------------------------------- /Source/Core/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Pool.h -------------------------------------------------------------------------------- /Source/Core/Pool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Pool.inl -------------------------------------------------------------------------------- /Source/Core/Profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Profiling.cpp -------------------------------------------------------------------------------- /Source/Core/PropertiesIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertiesIterator.h -------------------------------------------------------------------------------- /Source/Core/PropertiesIteratorView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertiesIteratorView.cpp -------------------------------------------------------------------------------- /Source/Core/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Property.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyDefinition.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyDictionary.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserAnimation.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserAnimation.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserBoxShadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserBoxShadow.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserBoxShadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserBoxShadow.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserColorStopList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserColorStopList.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserColour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserColour.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserColour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserColour.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserDecorator.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserDecorator.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserFilter.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserFilter.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserFontEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserFontEffect.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserFontEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserFontEffect.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserKeyword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserKeyword.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserKeyword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserKeyword.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserNumber.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserNumber.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserRatio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserRatio.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserRatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserRatio.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserString.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserString.h -------------------------------------------------------------------------------- /Source/Core/PropertyParserTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserTransform.cpp -------------------------------------------------------------------------------- /Source/Core/PropertyParserTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyParserTransform.h -------------------------------------------------------------------------------- /Source/Core/PropertyShorthandDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertyShorthandDefinition.h -------------------------------------------------------------------------------- /Source/Core/PropertySpecification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/PropertySpecification.cpp -------------------------------------------------------------------------------- /Source/Core/RenderInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/RenderInterface.cpp -------------------------------------------------------------------------------- /Source/Core/RenderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/RenderManager.cpp -------------------------------------------------------------------------------- /Source/Core/RenderManagerAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/RenderManagerAccess.cpp -------------------------------------------------------------------------------- /Source/Core/RenderManagerAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/RenderManagerAccess.h -------------------------------------------------------------------------------- /Source/Core/ScrollController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ScrollController.cpp -------------------------------------------------------------------------------- /Source/Core/ScrollController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/ScrollController.h -------------------------------------------------------------------------------- /Source/Core/Spritesheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Spritesheet.cpp -------------------------------------------------------------------------------- /Source/Core/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Stream.cpp -------------------------------------------------------------------------------- /Source/Core/StreamFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StreamFile.cpp -------------------------------------------------------------------------------- /Source/Core/StreamFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StreamFile.h -------------------------------------------------------------------------------- /Source/Core/StreamMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StreamMemory.cpp -------------------------------------------------------------------------------- /Source/Core/StringUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StringUtilities.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheet.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheetContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetContainer.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheetFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetFactory.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheetFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetFactory.h -------------------------------------------------------------------------------- /Source/Core/StyleSheetNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetNode.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetNode.h -------------------------------------------------------------------------------- /Source/Core/StyleSheetParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetParser.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetParser.h -------------------------------------------------------------------------------- /Source/Core/StyleSheetSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetSelector.cpp -------------------------------------------------------------------------------- /Source/Core/StyleSheetSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetSelector.h -------------------------------------------------------------------------------- /Source/Core/StyleSheetSpecification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/StyleSheetSpecification.cpp -------------------------------------------------------------------------------- /Source/Core/SystemInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/SystemInterface.cpp -------------------------------------------------------------------------------- /Source/Core/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Template.cpp -------------------------------------------------------------------------------- /Source/Core/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Template.h -------------------------------------------------------------------------------- /Source/Core/TemplateCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TemplateCache.cpp -------------------------------------------------------------------------------- /Source/Core/TemplateCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TemplateCache.h -------------------------------------------------------------------------------- /Source/Core/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Texture.cpp -------------------------------------------------------------------------------- /Source/Core/TextureDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureDatabase.cpp -------------------------------------------------------------------------------- /Source/Core/TextureDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureDatabase.h -------------------------------------------------------------------------------- /Source/Core/TextureLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayout.cpp -------------------------------------------------------------------------------- /Source/Core/TextureLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayout.h -------------------------------------------------------------------------------- /Source/Core/TextureLayoutRectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayoutRectangle.cpp -------------------------------------------------------------------------------- /Source/Core/TextureLayoutRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayoutRectangle.h -------------------------------------------------------------------------------- /Source/Core/TextureLayoutRow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayoutRow.cpp -------------------------------------------------------------------------------- /Source/Core/TextureLayoutRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayoutRow.h -------------------------------------------------------------------------------- /Source/Core/TextureLayoutTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayoutTexture.cpp -------------------------------------------------------------------------------- /Source/Core/TextureLayoutTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TextureLayoutTexture.h -------------------------------------------------------------------------------- /Source/Core/Traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Traits.cpp -------------------------------------------------------------------------------- /Source/Core/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Transform.cpp -------------------------------------------------------------------------------- /Source/Core/TransformPrimitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TransformPrimitive.cpp -------------------------------------------------------------------------------- /Source/Core/TransformState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TransformState.cpp -------------------------------------------------------------------------------- /Source/Core/TransformState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TransformState.h -------------------------------------------------------------------------------- /Source/Core/TransformUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TransformUtilities.cpp -------------------------------------------------------------------------------- /Source/Core/TransformUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TransformUtilities.h -------------------------------------------------------------------------------- /Source/Core/Tween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Tween.cpp -------------------------------------------------------------------------------- /Source/Core/TypeConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/TypeConverter.cpp -------------------------------------------------------------------------------- /Source/Core/URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/URL.cpp -------------------------------------------------------------------------------- /Source/Core/Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/Variant.cpp -------------------------------------------------------------------------------- /Source/Core/WidgetScroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/WidgetScroll.cpp -------------------------------------------------------------------------------- /Source/Core/WidgetScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/WidgetScroll.h -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandler.cpp -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerBody.cpp -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerBody.h -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerDefault.cpp -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerDefault.h -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerHead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerHead.cpp -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerHead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerHead.h -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerTemplate.cpp -------------------------------------------------------------------------------- /Source/Core/XMLNodeHandlerTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLNodeHandlerTemplate.h -------------------------------------------------------------------------------- /Source/Core/XMLParseTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLParseTools.cpp -------------------------------------------------------------------------------- /Source/Core/XMLParseTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLParseTools.h -------------------------------------------------------------------------------- /Source/Core/XMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/XMLParser.cpp -------------------------------------------------------------------------------- /Source/Core/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Core/precompiled.h -------------------------------------------------------------------------------- /Source/Debugger/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: InheritParentConfig 2 | NamespaceIndentation: None 3 | -------------------------------------------------------------------------------- /Source/Debugger/BeaconSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/BeaconSource.h -------------------------------------------------------------------------------- /Source/Debugger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Debugger/CommonSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/CommonSource.h -------------------------------------------------------------------------------- /Source/Debugger/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/Debugger.cpp -------------------------------------------------------------------------------- /Source/Debugger/DebuggerPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/DebuggerPlugin.cpp -------------------------------------------------------------------------------- /Source/Debugger/DebuggerPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/DebuggerPlugin.h -------------------------------------------------------------------------------- /Source/Debugger/DebuggerSystemInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/DebuggerSystemInterface.h -------------------------------------------------------------------------------- /Source/Debugger/ElementContextHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementContextHook.cpp -------------------------------------------------------------------------------- /Source/Debugger/ElementContextHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementContextHook.h -------------------------------------------------------------------------------- /Source/Debugger/ElementDebugDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementDebugDocument.cpp -------------------------------------------------------------------------------- /Source/Debugger/ElementDebugDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementDebugDocument.h -------------------------------------------------------------------------------- /Source/Debugger/ElementInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementInfo.cpp -------------------------------------------------------------------------------- /Source/Debugger/ElementInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementInfo.h -------------------------------------------------------------------------------- /Source/Debugger/ElementLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementLog.cpp -------------------------------------------------------------------------------- /Source/Debugger/ElementLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/ElementLog.h -------------------------------------------------------------------------------- /Source/Debugger/FontSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/FontSource.h -------------------------------------------------------------------------------- /Source/Debugger/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/Geometry.cpp -------------------------------------------------------------------------------- /Source/Debugger/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/Geometry.h -------------------------------------------------------------------------------- /Source/Debugger/InfoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/InfoSource.h -------------------------------------------------------------------------------- /Source/Debugger/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/LICENSE.txt -------------------------------------------------------------------------------- /Source/Debugger/LogSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/LogSource.h -------------------------------------------------------------------------------- /Source/Debugger/MenuSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Debugger/MenuSource.h -------------------------------------------------------------------------------- /Source/Lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lottie/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Lottie/ElementLottie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lottie/ElementLottie.cpp -------------------------------------------------------------------------------- /Source/Lottie/LottiePlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lottie/LottiePlugin.cpp -------------------------------------------------------------------------------- /Source/Lottie/LottiePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lottie/LottiePlugin.h -------------------------------------------------------------------------------- /Source/Lua/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: InheritParentConfig 2 | NamespaceIndentation: None 3 | -------------------------------------------------------------------------------- /Source/Lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Lua/Colourb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Colourb.cpp -------------------------------------------------------------------------------- /Source/Lua/Colourb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Colourb.h -------------------------------------------------------------------------------- /Source/Lua/Colourf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Colourf.cpp -------------------------------------------------------------------------------- /Source/Lua/Colourf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Colourf.h -------------------------------------------------------------------------------- /Source/Lua/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Context.cpp -------------------------------------------------------------------------------- /Source/Lua/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Context.h -------------------------------------------------------------------------------- /Source/Lua/ContextDocumentsProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ContextDocumentsProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/ContextDocumentsProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ContextDocumentsProxy.h -------------------------------------------------------------------------------- /Source/Lua/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Document.cpp -------------------------------------------------------------------------------- /Source/Lua/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Document.h -------------------------------------------------------------------------------- /Source/Lua/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Element.cpp -------------------------------------------------------------------------------- /Source/Lua/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Element.h -------------------------------------------------------------------------------- /Source/Lua/ElementAttributesProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementAttributesProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/ElementAttributesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementAttributesProxy.h -------------------------------------------------------------------------------- /Source/Lua/ElementChildNodesProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementChildNodesProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/ElementChildNodesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementChildNodesProxy.h -------------------------------------------------------------------------------- /Source/Lua/ElementInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementInstancer.cpp -------------------------------------------------------------------------------- /Source/Lua/ElementInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementInstancer.h -------------------------------------------------------------------------------- /Source/Lua/ElementStyleProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementStyleProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/ElementStyleProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementStyleProxy.h -------------------------------------------------------------------------------- /Source/Lua/ElementText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementText.cpp -------------------------------------------------------------------------------- /Source/Lua/ElementText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/ElementText.h -------------------------------------------------------------------------------- /Source/Lua/Elements/As.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/As.h -------------------------------------------------------------------------------- /Source/Lua/Elements/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Lua/Elements/ElementForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/ElementForm.cpp -------------------------------------------------------------------------------- /Source/Lua/Elements/ElementForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/ElementForm.h -------------------------------------------------------------------------------- /Source/Lua/Elements/ElementFormControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/ElementFormControl.cpp -------------------------------------------------------------------------------- /Source/Lua/Elements/ElementFormControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/ElementFormControl.h -------------------------------------------------------------------------------- /Source/Lua/Elements/ElementTabSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/ElementTabSet.cpp -------------------------------------------------------------------------------- /Source/Lua/Elements/ElementTabSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/ElementTabSet.h -------------------------------------------------------------------------------- /Source/Lua/Elements/SelectOptionsProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/SelectOptionsProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/Elements/SelectOptionsProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Elements/SelectOptionsProxy.h -------------------------------------------------------------------------------- /Source/Lua/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Event.cpp -------------------------------------------------------------------------------- /Source/Lua/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Event.h -------------------------------------------------------------------------------- /Source/Lua/EventParametersProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/EventParametersProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/EventParametersProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/EventParametersProxy.h -------------------------------------------------------------------------------- /Source/Lua/GlobalLuaFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/GlobalLuaFunctions.cpp -------------------------------------------------------------------------------- /Source/Lua/GlobalLuaFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/GlobalLuaFunctions.h -------------------------------------------------------------------------------- /Source/Lua/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Interpreter.cpp -------------------------------------------------------------------------------- /Source/Lua/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Log.cpp -------------------------------------------------------------------------------- /Source/Lua/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Log.h -------------------------------------------------------------------------------- /Source/Lua/Lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Lua.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaDataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaDataModel.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaDataModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaDataModel.h -------------------------------------------------------------------------------- /Source/Lua/LuaDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaDocument.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaDocument.h -------------------------------------------------------------------------------- /Source/Lua/LuaDocumentElementInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaDocumentElementInstancer.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaElementInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaElementInstancer.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaElementInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaElementInstancer.h -------------------------------------------------------------------------------- /Source/Lua/LuaEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaEventListener.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaEventListener.h -------------------------------------------------------------------------------- /Source/Lua/LuaEventListenerInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaEventListenerInstancer.h -------------------------------------------------------------------------------- /Source/Lua/LuaPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaPlugin.cpp -------------------------------------------------------------------------------- /Source/Lua/LuaPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaPlugin.h -------------------------------------------------------------------------------- /Source/Lua/LuaType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/LuaType.cpp -------------------------------------------------------------------------------- /Source/Lua/Pairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Pairs.h -------------------------------------------------------------------------------- /Source/Lua/RmlUi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/RmlUi.cpp -------------------------------------------------------------------------------- /Source/Lua/RmlUi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/RmlUi.h -------------------------------------------------------------------------------- /Source/Lua/RmlUiContextsProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/RmlUiContextsProxy.cpp -------------------------------------------------------------------------------- /Source/Lua/RmlUiContextsProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/RmlUiContextsProxy.h -------------------------------------------------------------------------------- /Source/Lua/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Utilities.cpp -------------------------------------------------------------------------------- /Source/Lua/Vector2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Vector2f.cpp -------------------------------------------------------------------------------- /Source/Lua/Vector2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Vector2f.h -------------------------------------------------------------------------------- /Source/Lua/Vector2i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Vector2i.cpp -------------------------------------------------------------------------------- /Source/Lua/Vector2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/Lua/Vector2i.h -------------------------------------------------------------------------------- /Source/SVG/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SVG/DecoratorSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/DecoratorSVG.cpp -------------------------------------------------------------------------------- /Source/SVG/DecoratorSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/DecoratorSVG.h -------------------------------------------------------------------------------- /Source/SVG/ElementSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/ElementSVG.cpp -------------------------------------------------------------------------------- /Source/SVG/SVGCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/SVGCache.cpp -------------------------------------------------------------------------------- /Source/SVG/SVGCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/SVGCache.h -------------------------------------------------------------------------------- /Source/SVG/SVGPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/SVGPlugin.cpp -------------------------------------------------------------------------------- /Source/SVG/SVGPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/SVGPlugin.h -------------------------------------------------------------------------------- /Source/SVG/XMLNodeHandlerSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/XMLNodeHandlerSVG.cpp -------------------------------------------------------------------------------- /Source/SVG/XMLNodeHandlerSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Source/SVG/XMLNodeHandlerSVG.h -------------------------------------------------------------------------------- /Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Data/UnitTests/data-title.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/UnitTests/data-title.rml -------------------------------------------------------------------------------- /Tests/Data/UnitTests/template_basic.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/UnitTests/template_basic.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/LICENSE.txt -------------------------------------------------------------------------------- /Tests/Data/VisualTests/acid1.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/acid1.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/box_sizing.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/box_sizing.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/clip_mask.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/clip_mask.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/css1_clear.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/css1_clear.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/drag.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/drag.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_01.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_01.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_02.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_02.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_04.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_04.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_05.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_05.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_06.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_06.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_inline.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_inline.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/flex_nested.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/flex_nested.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/float_basic.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/float_basic.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-001.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-001.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-002.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-002.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-003.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-003.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-004.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-004.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-005.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-005.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-006.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-006.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-007.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-007.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-008.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-008.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/gap-009.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/gap-009.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/image_ratio.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/image_ratio.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/inline_block.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/inline_block.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/mask_image.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/mask_image.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/opacity.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/opacity.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/table_01.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/table_01.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/table_02.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/table_02.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/table_03.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/table_03.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/table_04.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/table_04.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/table_05.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/table_05.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/table_inline.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/table_inline.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/white_space.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/white_space.rml -------------------------------------------------------------------------------- /Tests/Data/VisualTests/word_break.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/VisualTests/word_break.rml -------------------------------------------------------------------------------- /Tests/Data/description.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/description.rml -------------------------------------------------------------------------------- /Tests/Data/style.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/style.rcss -------------------------------------------------------------------------------- /Tests/Data/view_source.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/view_source.rml -------------------------------------------------------------------------------- /Tests/Data/visual_tests_help.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Data/visual_tests_help.rml -------------------------------------------------------------------------------- /Tests/Dependencies/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Dependencies/LICENSE.txt -------------------------------------------------------------------------------- /Tests/Dependencies/doctest/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Dependencies/doctest/doctest.h -------------------------------------------------------------------------------- /Tests/Dependencies/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Dependencies/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /Tests/Dependencies/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Dependencies/lodepng/lodepng.h -------------------------------------------------------------------------------- /Tests/Output/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.log 3 | -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/DataBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/DataBinding.cpp -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/Element.cpp -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/Flexbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/Flexbox.cpp -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/FontEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/FontEffect.cpp -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/Selectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/Selectors.cpp -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/Table.cpp -------------------------------------------------------------------------------- /Tests/Source/Benchmarks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Benchmarks/main.cpp -------------------------------------------------------------------------------- /Tests/Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Source/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Source/Common/Mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/Mocks.h -------------------------------------------------------------------------------- /Tests/Source/Common/TestsInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/TestsInterface.cpp -------------------------------------------------------------------------------- /Tests/Source/Common/TestsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/TestsInterface.h -------------------------------------------------------------------------------- /Tests/Source/Common/TestsShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/TestsShell.cpp -------------------------------------------------------------------------------- /Tests/Source/Common/TestsShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/TestsShell.h -------------------------------------------------------------------------------- /Tests/Source/Common/TypesToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/Common/TypesToString.h -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Animation.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Core.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/DataBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/DataBinding.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/DataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/DataModel.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Debugger.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Decorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Decorator.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Element.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/ElementImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/ElementImage.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/ElementStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/ElementStyle.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Filter.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Layout.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Localization.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Math.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/MediaQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/MediaQuery.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Properties.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Selectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Selectors.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/StableVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/StableVector.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Template.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/URL.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/Variant.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/XMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/XMLParser.cpp -------------------------------------------------------------------------------- /Tests/Source/UnitTests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/UnitTests/main.cpp -------------------------------------------------------------------------------- /Tests/Source/VisualTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/Source/VisualTests/TestConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/TestConfig.cpp -------------------------------------------------------------------------------- /Tests/Source/VisualTests/TestConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/TestConfig.h -------------------------------------------------------------------------------- /Tests/Source/VisualTests/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/TestSuite.h -------------------------------------------------------------------------------- /Tests/Source/VisualTests/TestViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/TestViewer.cpp -------------------------------------------------------------------------------- /Tests/Source/VisualTests/TestViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/TestViewer.h -------------------------------------------------------------------------------- /Tests/Source/VisualTests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/Source/VisualTests/main.cpp -------------------------------------------------------------------------------- /Tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Tests/readme.md -------------------------------------------------------------------------------- /Utilities/natvis/RmlUi.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/Utilities/natvis/RmlUi.natvis -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/changelog.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/contributing.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikke89/RmlUi/HEAD/readme.md --------------------------------------------------------------------------------