-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from NuiCpp/devel
Inline SVG Support
- Loading branch information
Showing
431 changed files
with
2,149 additions
and
219 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,73 @@ | ||
name: Build_and_Test | ||
|
||
on: | ||
push: | ||
branches: ["main", "devel"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | ||
BUILD_TYPE: Release | ||
|
||
jobs: | ||
ubuntu: | ||
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | ||
# You can convert this to a matrix build if you need cross-platform coverage. | ||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: awalsh128/[email protected] | ||
with: | ||
packages: libwebkit2gtk-4.0-dev libcurl4-openssl-dev libcrypto++-dev ninja-build | ||
|
||
- name: Install boost | ||
uses: MarkusJx/[email protected] | ||
id: install-boost | ||
with: | ||
# REQUIRED: Specify the required boost version | ||
# A list of supported versions can be found here: | ||
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json | ||
boost_version: 1.81.0 | ||
# OPTIONAL: Specify a platform version | ||
platform_version: 22.04 | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build/clang_${{env.BUILD_TYPE}} -G"Ninja" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DNUI_BUILD_EXAMPLES=off -DCMAKE_CXX_EXTENSIONS=on -DCMAKE_CXX_FLAGS="-fuse-ld=lld" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_LINKER=lld -DCMAKE_CXX_STANDARD=20 | ||
env: | ||
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }} | ||
|
||
- name: Build | ||
run: cmake --build ${{github.workspace}}/build/clang_${{env.BUILD_TYPE}} --config ${{env.BUILD_TYPE}} | ||
|
||
# TODO: | ||
#- name: Test | ||
# working-directory: ${{github.workspace}}/build/clang_${{env.BUILD_TYPE}} | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
# run: ctest -C ${{env.BUILD_TYPE}} | ||
|
||
windows-msys2: | ||
runs-on: windows-2022 | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: clang64 | ||
release: true | ||
install: mingw-w64-clang-x86_64-clang make unzip mingw-w64-clang-x86_64-cmake mingw-w64-clang-x86_64-boost mingw-w64-clang-x86_64-crypto++ libcurl mingw-w64-clang-x86_64-ninja mingw-w64-clang-x86_64-python | ||
|
||
- name: Workspace Path Fixup | ||
run: echo "WSPACE=$(cygpath '${{github.workspace}}')" >> $GITHUB_ENV | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{env.WSPACE}}/build/clang_${{env.BUILD_TYPE}} -G"Ninja" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DNUI_BUILD_EXAMPLES=off -DCMAKE_CXX_EXTENSIONS=on -DCMAKE_CXX_FLAGS="-fuse-ld=lld" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_LINKER=lld -DCMAKE_CXX_STANDARD=20 | ||
|
||
- name: Build | ||
run: cmake --build ${{env.WSPACE}}/build/clang_${{env.BUILD_TYPE}} --config ${{env.BUILD_TYPE}} | ||
name: Build_and_Test | ||
|
||
on: | ||
push: | ||
branches: ["main", "devel"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | ||
BUILD_TYPE: Release | ||
|
||
jobs: | ||
ubuntu: | ||
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | ||
# You can convert this to a matrix build if you need cross-platform coverage. | ||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: awalsh128/[email protected] | ||
with: | ||
packages: libwebkit2gtk-4.0-dev libcurl4-openssl-dev libcrypto++-dev ninja-build | ||
|
||
- name: Install boost | ||
uses: MarkusJx/[email protected] | ||
id: install-boost | ||
with: | ||
# REQUIRED: Specify the required boost version | ||
# A list of supported versions can be found here: | ||
# https://github.com/MarkusJx/prebuilt-boost/blob/main/versions-manifest.json | ||
boost_version: 1.81.0 | ||
# OPTIONAL: Specify a platform version | ||
platform_version: 22.04 | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{github.workspace}}/build/clang_${{env.BUILD_TYPE}} -G"Ninja" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DNUI_BUILD_EXAMPLES=off -DCMAKE_CXX_EXTENSIONS=on -DCMAKE_CXX_FLAGS="-fuse-ld=lld" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_LINKER=lld -DCMAKE_CXX_STANDARD=20 | ||
env: | ||
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }} | ||
|
||
- name: Build | ||
run: cmake --build ${{github.workspace}}/build/clang_${{env.BUILD_TYPE}} --config ${{env.BUILD_TYPE}} | ||
|
||
# TODO: | ||
#- name: Test | ||
# working-directory: ${{github.workspace}}/build/clang_${{env.BUILD_TYPE}} | ||
# Execute tests defined by the CMake configuration. | ||
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | ||
# run: ctest -C ${{env.BUILD_TYPE}} | ||
|
||
windows-msys2: | ||
runs-on: windows-2022 | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: clang64 | ||
release: true | ||
install: mingw-w64-clang-x86_64-clang make unzip mingw-w64-clang-x86_64-cmake mingw-w64-clang-x86_64-boost mingw-w64-clang-x86_64-crypto++ libcurl mingw-w64-clang-x86_64-ninja mingw-w64-clang-x86_64-python | ||
|
||
- name: Workspace Path Fixup | ||
run: echo "WSPACE=$(cygpath '${{github.workspace}}')" >> $GITHUB_ENV | ||
|
||
- name: Configure CMake | ||
run: cmake -B ${{env.WSPACE}}/build/clang_${{env.BUILD_TYPE}} -G"Ninja" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DNUI_BUILD_EXAMPLES=off -DCMAKE_CXX_EXTENSIONS=on -DCMAKE_CXX_FLAGS="-fuse-ld=lld" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_LINKER=lld -DCMAKE_CXX_STANDARD=20 | ||
|
||
- name: Build | ||
run: cmake --build ${{env.WSPACE}}/build/clang_${{env.BUILD_TYPE}} --config ${{env.BUILD_TYPE}} |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(accentHeight, "accent-height") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(accumulate) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(additive) |
5 changes: 5 additions & 0 deletions
5
nui/include/nui/frontend/attributes/svg/alignment_baseline.hpp
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(alignmentBaseline, "alignment-baseline") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(alphabetic) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(amplitude) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(arabicForm, "arabic-form") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(ascent) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(attributeName) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(attributeType) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(azimuth) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(baseFrequency) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(baseProfile) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(baselineShift, "baseline-shift") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(bbox) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(begin) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(bias) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(by) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(calcMode) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(capHeight, "cap-height") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(class_, "class") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(clip) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(clipPath, "clip-path") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(clipPathUnits) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(clipRule, "clip-rule") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(color) |
5 changes: 5 additions & 0 deletions
5
nui/include/nui/frontend/attributes/svg/color_interpolation.hpp
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(colorInterpolation, "color-interpolation") |
5 changes: 5 additions & 0 deletions
5
nui/include/nui/frontend/attributes/svg/color_interpolation_filters.hpp
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(colorInterpolationFilters, "color-interpolation-filters") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(colorProfile, "color-profile") |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE_RENAME(colorRendering, "color-rendering") |
5 changes: 5 additions & 0 deletions
5
nui/include/nui/frontend/attributes/svg/content_script_type.hpp
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(contentScriptType) |
5 changes: 5 additions & 0 deletions
5
nui/include/nui/frontend/attributes/svg/content_style_type.hpp
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(contentStyleType) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(crossorigin) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(cursor) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(cx) |
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,5 @@ | ||
#pragma once | ||
|
||
#include <nui/frontend/attributes/svg/impl/svg_attribute_factory.hpp> | ||
|
||
MAKE_SVG_VALUE_ATTRIBUTE(cy) |
Oops, something went wrong.