forked from vczh-libraries/Release
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create GacUI_Controls/TextEditor demo
- Loading branch information
Showing
11 changed files
with
369 additions
and
0 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
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,23 @@ | ||
#include "UI/Source/Demo.h" | ||
#include <Windows.h> | ||
|
||
using namespace vl::collections; | ||
using namespace vl::stream; | ||
|
||
int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int CmdShow) | ||
{ | ||
return SetupWindowsDirect2DRenderer(); | ||
} | ||
|
||
void GuiMain() | ||
{ | ||
{ | ||
List<WString> errors; | ||
FileStream fileStream(L"../UIRes/TextEditor.bin", FileStream::ReadOnly); | ||
auto resource = GuiResource::LoadPrecompiledBinary(fileStream, errors); | ||
GetInstanceLoaderManager()->SetResource(L"Resource", resource); | ||
} | ||
demo::MainWindow window; | ||
window.MoveToScreenCenter(); | ||
GetApplication()->Run(&window); | ||
} |
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,101 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Label="ProjectConfigurations"> | ||
<ProjectConfiguration Include="Debug|Win32"> | ||
<Configuration>Debug</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
<ProjectConfiguration Include="Release|Win32"> | ||
<Configuration>Release</Configuration> | ||
<Platform>Win32</Platform> | ||
</ProjectConfiguration> | ||
</ItemGroup> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>{66069A5E-F697-42E2-8D9E-7D6E82019838}</ProjectGuid> | ||
<Keyword>Win32Proj</Keyword> | ||
<RootNamespace>TextEditor</RootNamespace> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||
<ConfigurationType>Application</ConfigurationType> | ||
<UseDebugLibraries>true</UseDebugLibraries> | ||
<PlatformToolset>v120</PlatformToolset> | ||
<CharacterSet>Unicode</CharacterSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | ||
<ConfigurationType>Application</ConfigurationType> | ||
<UseDebugLibraries>false</UseDebugLibraries> | ||
<PlatformToolset>v120</PlatformToolset> | ||
<WholeProgramOptimization>true</WholeProgramOptimization> | ||
<CharacterSet>Unicode</CharacterSet> | ||
</PropertyGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
<ImportGroup Label="ExtensionSettings"> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||
</ImportGroup> | ||
<PropertyGroup Label="UserMacros" /> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<LinkIncremental>true</LinkIncremental> | ||
<IncludePath>$(ProjectDir)..\..\..\Import;$(IncludePath)</IncludePath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<LinkIncremental>false</LinkIncremental> | ||
<IncludePath>$(ProjectDir)..\..\..\Import;$(IncludePath)</IncludePath> | ||
</PropertyGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | ||
<ClCompile> | ||
<PrecompiledHeader> | ||
</PrecompiledHeader> | ||
<WarningLevel>Level3</WarningLevel> | ||
<Optimization>Disabled</Optimization> | ||
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
<SDLCheck>true</SDLCheck> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Windows</SubSystem> | ||
<GenerateDebugInformation>true</GenerateDebugInformation> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<ClCompile> | ||
<WarningLevel>Level3</WarningLevel> | ||
<PrecompiledHeader> | ||
</PrecompiledHeader> | ||
<Optimization>MaxSpeed</Optimization> | ||
<FunctionLevelLinking>true</FunctionLevelLinking> | ||
<IntrinsicFunctions>true</IntrinsicFunctions> | ||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
<SDLCheck>true</SDLCheck> | ||
</ClCompile> | ||
<Link> | ||
<SubSystem>Windows</SubSystem> | ||
<GenerateDebugInformation>true</GenerateDebugInformation> | ||
<EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
<OptimizeReferences>true</OptimizeReferences> | ||
</Link> | ||
</ItemDefinitionGroup> | ||
<ItemGroup> | ||
<ClCompile Include="Main.cpp" /> | ||
<ClCompile Include="UI\Source\DemoPartialClasses.cpp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\Lib\GacUI\GacUI.vcxproj"> | ||
<Project>{8018d622-66ba-4e65-9d03-bdac37ea9a54}</Project> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Xml Include="UI\Resource.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="UI\Source\Demo.h" /> | ||
<ClInclude Include="UI\Source\DemoPartialClasses.h" /> | ||
</ItemGroup> | ||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
<ImportGroup Label="ExtensionTargets"> | ||
</ImportGroup> | ||
</Project> |
41 changes: 41 additions & 0 deletions
41
Tutorial/GacUI_Controls/TextEditor/TextEditor.vcxproj.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,41 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Filter Include="Source Files"> | ||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> | ||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> | ||
</Filter> | ||
<Filter Include="Header Files"> | ||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> | ||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions> | ||
</Filter> | ||
<Filter Include="Resource Files"> | ||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> | ||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> | ||
</Filter> | ||
<Filter Include="UI"> | ||
<UniqueIdentifier>{da083a3e-40d5-4084-9b00-ea95886358e4}</UniqueIdentifier> | ||
</Filter> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClCompile Include="Main.cpp"> | ||
<Filter>Source Files</Filter> | ||
</ClCompile> | ||
<ClCompile Include="UI\Source\DemoPartialClasses.cpp"> | ||
<Filter>UI</Filter> | ||
</ClCompile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Xml Include="UI\Resource.xml"> | ||
<Filter>Resource Files</Filter> | ||
</Xml> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ClInclude Include="UI\Source\DemoPartialClasses.h"> | ||
<Filter>UI</Filter> | ||
</ClInclude> | ||
<ClInclude Include="UI\Source\Demo.h"> | ||
<Filter>UI</Filter> | ||
</ClInclude> | ||
</ItemGroup> | ||
</Project> |
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 @@ | ||
..\..\..\..\Tools\GacGen.exe Resource.xml |
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,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Resource> | ||
<Folder name="GacGenConfig"> | ||
<Folder name="Cpp"> | ||
<Text name="Output">Source</Text> | ||
<Text name="Include">GacUIReflection.h</Text> | ||
<Text name="Name">Demo</Text> | ||
<Text name="Prefix"></Text> | ||
</Folder> | ||
<Folder name="Res"> | ||
<Text name="Output">..\..\UIRes</Text> | ||
<Text name="PrecompiledBinary">TextEditor.bin</Text> | ||
</Folder> | ||
</Folder> | ||
<Folder name="MainWindow"> | ||
<Instance name="MainWindowResource"> | ||
<Instance ref.CodeBehind="false" ref.Class="demo::MainWindow"> | ||
<Window Text="TextEditor" ClientSize="x:480 y:320"> | ||
<att.BoundsComposition-set PreferredMinSize="x:480 y:320"/> | ||
</Window> | ||
</Instance> | ||
</Instance> | ||
</Folder> | ||
</Resource> |
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,16 @@ | ||
/*********************************************************************** | ||
Vczh Library++ 3.0 | ||
Developer: Zihan Chen(vczh) | ||
GacUI::Demo | ||
This file is generated by: Vczh GacUI Resource Code Generator | ||
************************************************************************ | ||
DO NOT MODIFY | ||
***********************************************************************/ | ||
|
||
#ifndef VCZH_GACUI_RESOURCE_CODE_GENERATOR_Demo | ||
#define VCZH_GACUI_RESOURCE_CODE_GENERATOR_Demo | ||
|
||
#include "DemoPartialClasses.h" | ||
|
||
#endif |
80 changes: 80 additions & 0 deletions
80
Tutorial/GacUI_Controls/TextEditor/UI/Source/DemoPartialClasses.cpp
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,80 @@ | ||
/*********************************************************************** | ||
Vczh Library++ 3.0 | ||
Developer: Zihan Chen(vczh) | ||
GacUI::Partial Classes | ||
This file is generated by: Vczh GacUI Resource Code Generator | ||
************************************************************************ | ||
DO NOT MODIFY | ||
***********************************************************************/ | ||
|
||
#include "Demo.h" | ||
|
||
namespace demo | ||
{ | ||
// #region CLASS_MEMBER_GUIEVENT_HANDLER (DO NOT PUT OTHER CONTENT IN THIS #region.) | ||
|
||
// #endregion CLASS_MEMBER_GUIEVENT_HANDLER | ||
|
||
MainWindow::MainWindow() | ||
{ | ||
InitializeComponents(); | ||
} | ||
|
||
MainWindow::~MainWindow() | ||
{ | ||
ClearSubscriptions(); | ||
} | ||
} | ||
|
||
|
||
namespace vl | ||
{ | ||
namespace reflection | ||
{ | ||
namespace description | ||
{ | ||
#define _ , | ||
IMPL_CPP_TYPE_INFO(demo::MainWindow) | ||
|
||
BEGIN_CLASS_MEMBER(demo::MainWindow) | ||
CLASS_MEMBER_BASE(vl::presentation::controls::GuiWindow) | ||
CLASS_MEMBER_CONSTRUCTOR(demo::MainWindow*(), NO_PARAMETER) | ||
END_CLASS_MEMBER(demo::MainWindow) | ||
|
||
#undef _ | ||
|
||
class DemoResourceLoader : public Object, public ITypeLoader | ||
{ | ||
public: | ||
void Load(ITypeManager* manager) | ||
{ | ||
ADD_TYPE_INFO(demo::MainWindow) | ||
} | ||
|
||
void Unload(ITypeManager* manager) | ||
{ | ||
} | ||
}; | ||
|
||
class DemoResourcePlugin : public Object, public vl::presentation::controls::IGuiPlugin | ||
{ | ||
public: | ||
void Load()override | ||
{ | ||
GetGlobalTypeManager()->AddTypeLoader(new DemoResourceLoader); | ||
} | ||
|
||
void AfterLoad()override | ||
{ | ||
} | ||
|
||
void Unload()override | ||
{ | ||
} | ||
}; | ||
GUI_REGISTER_PLUGIN(DemoResourcePlugin) | ||
} | ||
} | ||
} | ||
|
Oops, something went wrong.