Files
core/ASCImageStudio3/ASCGraphics/Interfaces/XmlConst.h

46 lines
2.3 KiB
C

#pragma once
#include "../../../Common/XmlUtils.h"
static _bstr_t g_cpszXML_Font_Family = L"font-family";
static _bstr_t g_cpszXML_Font_Family_EA = L"font-family-ea";
static _bstr_t g_cpszXML_Font_Family_CS = L"font-family-cs";
static _bstr_t g_cpszXML_Font_Size = L"font-size";
static _bstr_t g_cpszXML_Font_Weight = L"font-weight";
static _bstr_t g_cpszXML_Font_Style = L"font-style";
static _bstr_t g_cpszXML_Font_Underline = L"underline";
static _bstr_t g_cpszXML_Font_Strike = L"strike";
static _bstr_t g_cpszXML_Font_Letter_Spacing = L"letter-spacing";
static _bstr_t g_cpszXML_Brush_Color = L"color";
static _bstr_t g_cpszXML_Pen_Color = L"pen-color";
static _bstr_t g_cpszXML_Pen_Alpha = L"pen-alpha";
static _bstr_t g_cpszXML_Pen_Size = L"pen-size";
static _bstr_t g_cpszXML_Pen_Alignment = L"pen-alignment";
static _bstr_t g_cpszXML_Pen_Style = L"pen-style";
static _bstr_t g_cpszXML_Pen_Line_Join = L"pen-line-join";
static _bstr_t g_cpszXML_Pen_Line_Start_Cap = L"pen-line-start-cap";
static _bstr_t g_cpszXML_Pen_Line_End_Cap = L"pen-line-end-cap";
static _bstr_t g_cpszXML_Pen_Dash_Pattern_Count = L"pen-dash-pattern-count";
static _bstr_t g_cpszXML_Pen_Pattern = L"dash-pattern";
static _bstr_t g_cpszXML_Pen_Dash_Offset = L"pen-dash-offset";
static _bstr_t g_cpszXML_Shadow_Visible = L"shadow-visible";
static _bstr_t g_cpszXML_Shadow_Color = L"shadow-color";
static _bstr_t g_cpszXML_Shadow_Alpha = L"shadow-alpha";
static _bstr_t g_cpszXML_Shadow_Distance_X = L"shadow-distancex";
static _bstr_t g_cpszXML_Shadow_Distance_Y = L"shadow-distancey";
static _bstr_t g_cpszXML_Shadow_Blur_Size = L"shadow-blursize";
static _bstr_t g_cpszXML_Background_Color = L"background-color";
static _bstr_t g_cpszXML_Edge_Visible = L"edge-visible";
static _bstr_t g_cpszXML_Edge_Alpha = L"shadow-alpha";
static _bstr_t g_cpszXML_Edge_Color = L"edge-color";
static _bstr_t g_cpszXML_Edge_Dist = L"edge-dist";
static _bstr_t g_cpszXML_Text_Align = L"text-align";
static _bstr_t g_cpszXML_Text_BaselineShift = L"baseline-shift";
static _bstr_t g_cpszXML_Text_Transform = L"text-transform";