-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic implementation of SVG plugin using the lunasvg library
- Loading branch information
Showing
18 changed files
with
2,051 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Try to find LunaSVG | ||
|
||
find_path(LUNASVG_INCLUDE_DIR document.h | ||
HINTS $ENV{LUNASVG_DIR} | ||
PATH_SUFFIXES lunasvg lunasvg/include include ) | ||
|
||
find_library(LUNASVG_LIBRARY_DEBUG NAMES lunasvg liblunasvg | ||
HINTS $ENV{LUNASVG_DIR} $ENV{LUNASVG_DIR}/build | ||
PATH_SUFFIXES debug Debug) | ||
|
||
find_library(LUNASVG_LIBRARY_RELEASE NAMES lunasvg liblunasvg | ||
HINTS $ENV{LUNASVG_DIR} $ENV{LUNASVG_DIR}/build | ||
PATH_SUFFIXES release Release) | ||
|
||
set(LUNASVG_LIBRARY | ||
debug ${LUNASVG_LIBRARY_DEBUG} | ||
optimized ${LUNASVG_LIBRARY_RELEASE} | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(lunasvg DEFAULT_MSG | ||
LUNASVG_LIBRARY LUNASVG_INCLUDE_DIR) | ||
|
||
mark_as_advanced(LUNASVG_INCLUDE_DIR LUNASVG_LIBRARY_DEBUG LUNASVG_LIBRARY_RELEASE ) | ||
|
||
set(LUNASVG_LIBRARIES ${LUNASVG_LIBRARY} ) | ||
set(LUNASVG_INCLUDE_DIRS ${LUNASVG_INCLUDE_DIR} ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,4 +75,6 @@ printpluginfiles "Lua" | |
|
||
printpluginfiles "Lottie" | ||
|
||
printpluginfiles "SVG" | ||
|
||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* | ||
* This source file is part of RmlUi, the HTML/CSS Interface Middleware | ||
* | ||
* For the latest information, see http://github.com/mikke89/RmlUi | ||
* | ||
* Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd | ||
* Copyright (c) 2019 The RmlUi Team, and contributors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
* | ||
*/ | ||
|
||
#ifndef RMLUI_SVG_ELEMENT_SVG_H | ||
#define RMLUI_SVG_ELEMENT_SVG_H | ||
|
||
#include "../Core/Header.h" | ||
#include "../Core/Element.h" | ||
#include "../Core/Geometry.h" | ||
#include "../Core/Texture.h" | ||
|
||
namespace lunasvg { class Document; } | ||
|
||
namespace Rml { | ||
|
||
class RMLUICORE_API ElementSVG : public Element | ||
{ | ||
public: | ||
RMLUI_RTTI_DefineWithParent(ElementSVG, Element) | ||
|
||
ElementSVG(const String& tag); | ||
virtual ~ElementSVG(); | ||
|
||
/// Returns the element's inherent size. | ||
bool GetIntrinsicDimensions(Vector2f& dimensions, float& ratio) override; | ||
|
||
protected: | ||
/// Renders the image. | ||
void OnRender() override; | ||
|
||
/// Regenerates the element's geometry. | ||
void OnResize() override; | ||
|
||
/// Checks for changes to the image's source or dimensions. | ||
/// @param[in] changed_attributes A list of attributes changed on the element. | ||
void OnAttributeChange(const ElementAttributes& changed_attributes) override; | ||
|
||
/// Called when properties on the element are changed. | ||
/// @param[in] changed_properties The properties changed on the element. | ||
void OnPropertyChange(const PropertyIdSet& changed_properties) override; | ||
|
||
private: | ||
// Generates the element's geometry. | ||
void GenerateGeometry(); | ||
// Loads the SVG document specified by the 'src' attribute. | ||
bool LoadSource(); | ||
// Update the texture when necessary. | ||
void UpdateTexture(); | ||
|
||
bool source_dirty = false; | ||
bool geometry_dirty = false; | ||
bool texture_size_dirty = false; | ||
|
||
// The texture this element is rendering from. | ||
Texture texture; | ||
|
||
// The image's intrinsic dimensions. | ||
Vector2f intrinsic_dimensions; | ||
// The element's size for rendering. | ||
Vector2i render_dimensions; | ||
|
||
// The geometry used to render this element. | ||
Geometry geometry; | ||
|
||
UniquePtr<lunasvg::Document> svg_document; | ||
}; | ||
|
||
} // namespace Rml | ||
|
||
#endif |
Oops, something went wrong.