├── .gitignore ├── OutlineText ├── AquarionMFC │ ├── AquarionMFC.cpp │ ├── AquarionMFC.h │ ├── AquarionMFC.rc │ ├── AquarionMFC.vcxproj │ ├── AquarionMFCDlg.cpp │ ├── AquarionMFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── AquarionMFC.ico │ │ └── AquarionMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── AquarionWinForm │ ├── AquarionWinForm.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── AquarionWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── AquarionWpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── resources │ │ └── Ruzicka TypeK.ttf ├── BeHappyMFC │ ├── BeHappyMFC.cpp │ ├── BeHappyMFC.h │ ├── BeHappyMFC.rc │ ├── BeHappyMFC.vcxproj │ ├── BeHappyMFCDlg.cpp │ ├── BeHappyMFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── BeHappyMFC.ico │ │ └── BeHappyMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── BeHappyWinForm │ ├── BeHappyWinForm.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── BeHappyWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── BeHappyWpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── resources │ │ └── ALBA____.TTF ├── CommonFonts │ ├── ALBA____.TTF │ ├── Airbus Special.ttf │ ├── Ruzicka TypeK.ttf │ └── Segoe Print.ttf ├── CommonImages │ ├── dirty-texture.png │ └── texture_blue.jpg ├── DirtyMFC │ ├── DirtyMFC.cpp │ ├── DirtyMFC.h │ ├── DirtyMFC.rc │ ├── DirtyMFC.vcxproj │ ├── DirtyMFCDlg.cpp │ ├── DirtyMFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── DirtyMFC.ico │ │ └── DirtyMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── DirtyWinForm │ ├── DirtyWinForm.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── DirtyWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── DirtyWpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Fake3D2MFC │ ├── Fake3D2MFC.cpp │ ├── Fake3D2MFC.h │ ├── Fake3D2MFC.rc │ ├── Fake3D2MFC.vcxproj │ ├── Fake3D2MFCDlg.cpp │ ├── Fake3D2MFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── Fake3D2MFC.ico │ │ └── Fake3D2MFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Fake3D2WinForm │ ├── Fake3D2WinForm.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Fake3D2Wpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── Fake3D2Wpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── resources │ │ └── Airbus Special.ttf ├── Fake3DMFC │ ├── Fake3DMFC.cpp │ ├── Fake3DMFC.h │ ├── Fake3DMFC.rc │ ├── Fake3DMFC.vcxproj │ ├── Fake3DMFCDlg.cpp │ ├── Fake3DMFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── Fake3DMFC.ico │ │ └── Fake3DMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Fake3DWinForm │ ├── Fake3DWinForm.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Fake3DWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── Fake3DWpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── FakeBeveledMFC │ ├── FakeBeveledMFC.cpp │ ├── FakeBeveledMFC.h │ ├── FakeBeveledMFC.rc │ ├── FakeBeveledMFC.vcxproj │ ├── FakeBeveledMFCDlg.cpp │ ├── FakeBeveledMFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── FakeBeveledMFC.ico │ │ └── FakeBeveledMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── FakeBeveledWinForm │ ├── FakeBeveledWinForm.csproj │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── FakeBeveledWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── FakeBeveledWpf.csproj │ ├── FakeBeveledWpf.csproj.user │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── resources │ │ └── Segoe Print.ttf ├── HollowTextMFC │ ├── HollowTextMFC.cpp │ ├── HollowTextMFC.h │ ├── HollowTextMFC.rc │ ├── HollowTextMFC.vcxproj │ ├── HollowTextMFCDlg.cpp │ ├── HollowTextMFCDlg.h │ ├── ReadMe.txt │ ├── Resource.h │ ├── res │ │ ├── HollowTextMFC.ico │ │ └── HollowTextMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── HollowTextWinForm │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HollowTextWinForm.csproj │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── HollowTextWpf │ ├── App.xaml │ ├── App.xaml.cs │ ├── HollowTextWpf.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── InnerOutlineMFC │ ├── InnerOutlineMFC.cpp │ ├── InnerOutlineMFC.h │ ├── InnerOutlineMFC.rc │ ├── InnerOutlineMFC.vcxproj │ ├── InnerOutlineMFCDlg.cpp │ ├── InnerOutlineMFCDlg.h │ ├── Resource.h │ ├── res │ │ ├── InnerOutlineMFC.ico │ │ └── InnerOutlineMFC.rc2 │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── InnerOutlineWinForm │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── InnerOutlineWinForm.csproj │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── License.html ├── OpenGLDemo │ ├── OpenGLDemo.cpp │ ├── OpenGLDemo_vs2010.vcxproj │ └── res │ │ ├── Bitmaps │ │ ├── GreenRect.bmp │ │ ├── OrangeRect.bmp │ │ ├── bkgnd1.bmp │ │ ├── bkgnd2.bmp │ │ ├── invstarquad.bmp │ │ └── starquad.bmp │ │ └── Images │ │ ├── 10.JPG │ │ ├── 11.JPG │ │ ├── 3.JPG │ │ └── 9.JPG ├── ScratchPad │ ├── Resource.h │ ├── ScratchPad.cpp │ ├── ScratchPad.h │ ├── ScratchPad.rc │ ├── ScratchPadDlg.cpp │ ├── ScratchPadDlg.h │ ├── ScratchPad_vs2010.vcxproj │ ├── res │ │ ├── PaintSky.jpg │ │ ├── ScratchPad.ico │ │ └── ScratchPad.rc2 │ ├── stdafx.cpp │ └── stdafx.h ├── TestOutlineText │ ├── ColorButton.cpp │ ├── ColorButton.h │ ├── MyButton.cpp │ ├── MyButton.h │ ├── MyScrollView.cpp │ ├── MyScrollView.h │ ├── ReflectSettingDlg.cpp │ ├── ReflectSettingDlg.h │ ├── TestOutlineText.cpp │ ├── TestOutlineText.h │ ├── TestOutlineText.rc │ ├── TestOutlineTextDlg.cpp │ ├── TestOutlineTextDlg.h │ ├── TestOutlineText_vs2010.vcxproj │ ├── res │ │ ├── TestOutlineText.ico │ │ └── TestOutlineText.rc2 │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── TestOutlineTextForm │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resource.Designer.cs │ ├── Resource.resx │ ├── Resource │ │ └── PaintSky.jpg │ └── TestOutlineTextForm_vs2010.csproj ├── TestOutlineText_vs2010.sln ├── TextDesigner │ ├── BmpOutlineText.cpp │ ├── BmpOutlineText.h │ ├── CanvasHelper.cpp │ ├── CanvasHelper.h │ ├── DiffusedShadowStrategy.cpp │ ├── DiffusedShadowStrategy.h │ ├── DrawGradient.cpp │ ├── DrawGradient.h │ ├── ExtrudeStrategy.cpp │ ├── ExtrudeStrategy.h │ ├── GDIPath.cpp │ ├── GDIPath.h │ ├── IOutlineText.cpp │ ├── IOutlineText.h │ ├── ITextStrategy.cpp │ ├── ITextStrategy.h │ ├── MaskColor.cpp │ ├── MaskColor.h │ ├── NonSystemFontLoader.cpp │ ├── NonSystemFontLoader.h │ ├── OutlineText.cpp │ ├── OutlineText.h │ ├── PngOutlineText.cpp │ ├── PngOutlineText.h │ ├── TextDblGlowStrategy.cpp │ ├── TextDblGlowStrategy.h │ ├── TextDblOutlineStrategy.cpp │ ├── TextDblOutlineStrategy.h │ ├── TextDesigner_vs2010.vcxproj │ ├── TextGlowStrategy.cpp │ ├── TextGlowStrategy.h │ ├── TextGradOutlineLastStrategy.cpp │ ├── TextGradOutlineLastStrategy.h │ ├── TextGradOutlineStrategy.cpp │ ├── TextGradOutlineStrategy.h │ ├── TextImplGetHeight.cpp │ ├── TextImplGetHeight.h │ ├── TextNoOutlineStrategy.cpp │ ├── TextNoOutlineStrategy.h │ ├── TextOnlyOutlineStrategy.cpp │ ├── TextOnlyOutlineStrategy.h │ ├── TextOutlineStrategy.cpp │ ├── TextOutlineStrategy.h │ ├── stdafx.cpp │ └── stdafx.h ├── TextDesignerCSLibrary │ ├── BmpOutlineText.cs │ ├── CanvasHelper.cs │ ├── DiffusedShadowStrategy.cs │ ├── DrawGradient.cs │ ├── ExtrudeStrategy.cs │ ├── GDIPath.cs │ ├── IOutlineText.cs │ ├── ITextStrategy.cs │ ├── MaskColor.cs │ ├── OutlineText.cs │ ├── PngOutlineText.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TextDblGlowStrategy.cs │ ├── TextDblOutlineStrategy.cs │ ├── TextDesignerCSLibrary_vs2010.csproj │ ├── TextGlowStrategy.cs │ ├── TextGradOutlineLastStrategy.cs │ ├── TextGradOutlineStrategy.cs │ ├── TextImplGetHeight.cs │ ├── TextNoOutlineStrategy.cs │ ├── TextOnlyOutlineStrategy.cs │ └── TextOutlineStrategy.cs ├── TextDesignerWpf │ ├── CanvasHelper.cs │ ├── DiffusedShadowStrategy.cs │ ├── DrawGradient.cs │ ├── ExtrudeStrategy.cs │ ├── GDIPath.cs │ ├── ITextStrategy.cs │ ├── MaskColor.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TextDblGlowStrategy.cs │ ├── TextDblOutlineStrategy.cs │ ├── TextDesignerWpf.csproj │ ├── TextGlowStrategy.cs │ ├── TextGradOutlineStrategy.cs │ ├── TextNoOutlineStrategy.cs │ ├── TextOnlyOutlineStrategy.cs │ └── TextOutlineStrategy.cs └── Version.txt ├── README.md └── images ├── CppGradient.png ├── DiffusedShadowSetting2.jpg ├── Extrude.png ├── ExtrudeSettings.png ├── GenericCppGradient.png ├── Real3DText.png ├── animescreenshot.jpg ├── century_gothic_3d1.png ├── century_gothic_text_glow1.png ├── comic_sans_bold1.png ├── doubleoutline.png ├── doubleoutline1.png ├── doubleoutlinesettings.png ├── enablepngsettings3_small.jpg ├── engravers_double_outline1.png ├── fake3dtextsettings.png ├── gdi_textdesigner.png ├── gdiandgdiplus.png ├── impact_italic1.png ├── matisse_double_outline1.png ├── openglscreenshot1.jpg ├── openglscreenshot2.jpg ├── pngineditor.png ├── rotatedtext.png ├── rotatedtext2.png ├── rotatedtextsettings.png ├── samplescreenshot.jpg ├── shadowcombined1.png ├── shadowproper.png ├── shadowtextbody1.png ├── shadowtextoutline1.png ├── singleoutline.png ├── singleoutline1.png ├── singleoutline1problematic.png ├── singleoutline1solved.png ├── singleoutlinesettings.png ├── textglow.png ├── textglow1.png ├── textglowsettings.png └── textglowwithshadow.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/.gitignore -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/AquarionMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/AquarionMFC.cpp -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/AquarionMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/AquarionMFC.h -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/AquarionMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/AquarionMFC.rc -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/AquarionMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/AquarionMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/AquarionMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/AquarionMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/AquarionMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/AquarionMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/res/AquarionMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/res/AquarionMFC.ico -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/res/AquarionMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/res/AquarionMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/AquarionMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/AquarionWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/AquarionWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/AquarionWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/AquarionWpf.csproj -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/AquarionWpf/resources/Ruzicka TypeK.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/AquarionWpf/resources/Ruzicka TypeK.ttf -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/BeHappyMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/BeHappyMFC.cpp -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/BeHappyMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/BeHappyMFC.h -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/BeHappyMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/BeHappyMFC.rc -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/BeHappyMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/BeHappyMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/BeHappyMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/BeHappyMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/BeHappyMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/BeHappyMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/res/BeHappyMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/res/BeHappyMFC.ico -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/res/BeHappyMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/res/BeHappyMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/BeHappyMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/BeHappyWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/BeHappyWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/BeHappyWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/BeHappyWpf.csproj -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/BeHappyWpf/resources/ALBA____.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/BeHappyWpf/resources/ALBA____.TTF -------------------------------------------------------------------------------- /OutlineText/CommonFonts/ALBA____.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/CommonFonts/ALBA____.TTF -------------------------------------------------------------------------------- /OutlineText/CommonFonts/Airbus Special.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/CommonFonts/Airbus Special.ttf -------------------------------------------------------------------------------- /OutlineText/CommonFonts/Ruzicka TypeK.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/CommonFonts/Ruzicka TypeK.ttf -------------------------------------------------------------------------------- /OutlineText/CommonFonts/Segoe Print.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/CommonFonts/Segoe Print.ttf -------------------------------------------------------------------------------- /OutlineText/CommonImages/dirty-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/CommonImages/dirty-texture.png -------------------------------------------------------------------------------- /OutlineText/CommonImages/texture_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/CommonImages/texture_blue.jpg -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/DirtyMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/DirtyMFC.cpp -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/DirtyMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/DirtyMFC.h -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/DirtyMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/DirtyMFC.rc -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/DirtyMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/DirtyMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/DirtyMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/DirtyMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/DirtyMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/DirtyMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/res/DirtyMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/res/DirtyMFC.ico -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/res/DirtyMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/res/DirtyMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/DirtyMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/DirtyWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/DirtyWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/DirtyWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/DirtyWpf.csproj -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/DirtyWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/DirtyWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Fake3D2MFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Fake3D2MFC.cpp -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Fake3D2MFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Fake3D2MFC.h -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Fake3D2MFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Fake3D2MFC.rc -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Fake3D2MFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Fake3D2MFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Fake3D2MFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Fake3D2MFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Fake3D2MFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Fake3D2MFCDlg.h -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/res/Fake3D2MFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/res/Fake3D2MFC.ico -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/res/Fake3D2MFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/res/Fake3D2MFC.rc2 -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/Fake3D2MFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2MFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Fake3D2WinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Fake3D2WinForm.csproj -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2WinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2WinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/Fake3D2Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/Fake3D2Wpf.csproj -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/Fake3D2Wpf/resources/Airbus Special.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3D2Wpf/resources/Airbus Special.ttf -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Fake3DMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Fake3DMFC.cpp -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Fake3DMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Fake3DMFC.h -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Fake3DMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Fake3DMFC.rc -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Fake3DMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Fake3DMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Fake3DMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Fake3DMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Fake3DMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Fake3DMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/res/Fake3DMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/res/Fake3DMFC.ico -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/res/Fake3DMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/res/Fake3DMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/Fake3DMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Fake3DWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Fake3DWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/Fake3DWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/Fake3DWpf.csproj -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/Fake3DWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Fake3DWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/FakeBeveledMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/FakeBeveledMFC.cpp -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/FakeBeveledMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/FakeBeveledMFC.h -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/FakeBeveledMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/FakeBeveledMFC.rc -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/FakeBeveledMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/FakeBeveledMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/FakeBeveledMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/FakeBeveledMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/FakeBeveledMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/FakeBeveledMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/res/FakeBeveledMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/res/FakeBeveledMFC.ico -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/res/FakeBeveledMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/res/FakeBeveledMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/FakeBeveledMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/FakeBeveledWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/FakeBeveledWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/FakeBeveledWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/FakeBeveledWpf.csproj -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/FakeBeveledWpf.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/FakeBeveledWpf.csproj.user -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/FakeBeveledWpf/resources/Segoe Print.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/FakeBeveledWpf/resources/Segoe Print.ttf -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/HollowTextMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/HollowTextMFC.cpp -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/HollowTextMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/HollowTextMFC.h -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/HollowTextMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/HollowTextMFC.rc -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/HollowTextMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/HollowTextMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/HollowTextMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/HollowTextMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/HollowTextMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/HollowTextMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/ReadMe.txt -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/res/HollowTextMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/res/HollowTextMFC.ico -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/res/HollowTextMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/res/HollowTextMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/HollowTextMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/HollowTextWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/HollowTextWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/App.xaml -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/App.xaml.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/HollowTextWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/HollowTextWpf.csproj -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/MainWindow.xaml -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/HollowTextWpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/HollowTextWpf/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/InnerOutlineMFC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/InnerOutlineMFC.cpp -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/InnerOutlineMFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/InnerOutlineMFC.h -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/InnerOutlineMFC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/InnerOutlineMFC.rc -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/InnerOutlineMFC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/InnerOutlineMFC.vcxproj -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/InnerOutlineMFCDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/InnerOutlineMFCDlg.cpp -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/InnerOutlineMFCDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/InnerOutlineMFCDlg.h -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/Resource.h -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/res/InnerOutlineMFC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/res/InnerOutlineMFC.ico -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/res/InnerOutlineMFC.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/res/InnerOutlineMFC.rc2 -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/stdafx.h -------------------------------------------------------------------------------- /OutlineText/InnerOutlineMFC/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineMFC/targetver.h -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/InnerOutlineWinForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/InnerOutlineWinForm.csproj -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/InnerOutlineWinForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/InnerOutlineWinForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/License.html -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/OpenGLDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/OpenGLDemo.cpp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/OpenGLDemo_vs2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/OpenGLDemo_vs2010.vcxproj -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Bitmaps/GreenRect.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Bitmaps/GreenRect.bmp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Bitmaps/OrangeRect.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Bitmaps/OrangeRect.bmp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Bitmaps/bkgnd1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Bitmaps/bkgnd1.bmp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Bitmaps/bkgnd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Bitmaps/bkgnd2.bmp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Bitmaps/invstarquad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Bitmaps/invstarquad.bmp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Bitmaps/starquad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Bitmaps/starquad.bmp -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Images/10.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Images/10.JPG -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Images/11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Images/11.JPG -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Images/3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Images/3.JPG -------------------------------------------------------------------------------- /OutlineText/OpenGLDemo/res/Images/9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/OpenGLDemo/res/Images/9.JPG -------------------------------------------------------------------------------- /OutlineText/ScratchPad/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/Resource.h -------------------------------------------------------------------------------- /OutlineText/ScratchPad/ScratchPad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/ScratchPad.cpp -------------------------------------------------------------------------------- /OutlineText/ScratchPad/ScratchPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/ScratchPad.h -------------------------------------------------------------------------------- /OutlineText/ScratchPad/ScratchPad.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/ScratchPad.rc -------------------------------------------------------------------------------- /OutlineText/ScratchPad/ScratchPadDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/ScratchPadDlg.cpp -------------------------------------------------------------------------------- /OutlineText/ScratchPad/ScratchPadDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/ScratchPadDlg.h -------------------------------------------------------------------------------- /OutlineText/ScratchPad/ScratchPad_vs2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/ScratchPad_vs2010.vcxproj -------------------------------------------------------------------------------- /OutlineText/ScratchPad/res/PaintSky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/res/PaintSky.jpg -------------------------------------------------------------------------------- /OutlineText/ScratchPad/res/ScratchPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/res/ScratchPad.ico -------------------------------------------------------------------------------- /OutlineText/ScratchPad/res/ScratchPad.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/res/ScratchPad.rc2 -------------------------------------------------------------------------------- /OutlineText/ScratchPad/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/ScratchPad/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/ScratchPad/stdafx.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/ColorButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/ColorButton.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/ColorButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/ColorButton.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/MyButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/MyButton.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/MyButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/MyButton.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/MyScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/MyScrollView.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/MyScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/MyScrollView.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/ReflectSettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/ReflectSettingDlg.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/ReflectSettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/ReflectSettingDlg.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/TestOutlineText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/TestOutlineText.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/TestOutlineText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/TestOutlineText.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/TestOutlineText.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/TestOutlineText.rc -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/TestOutlineTextDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/TestOutlineTextDlg.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/TestOutlineTextDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/TestOutlineTextDlg.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/TestOutlineText_vs2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/TestOutlineText_vs2010.vcxproj -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/res/TestOutlineText.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/res/TestOutlineText.ico -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/res/TestOutlineText.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/res/TestOutlineText.rc2 -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/resource.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/TestOutlineText/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText/stdafx.h -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Form1.Designer.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Form1.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Form1.resx -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Program.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Properties/Resources.resx -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Properties/Settings.settings -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Resource.Designer.cs -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Resource.resx -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/Resource/PaintSky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/Resource/PaintSky.jpg -------------------------------------------------------------------------------- /OutlineText/TestOutlineTextForm/TestOutlineTextForm_vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineTextForm/TestOutlineTextForm_vs2010.csproj -------------------------------------------------------------------------------- /OutlineText/TestOutlineText_vs2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TestOutlineText_vs2010.sln -------------------------------------------------------------------------------- /OutlineText/TextDesigner/BmpOutlineText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/BmpOutlineText.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/BmpOutlineText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/BmpOutlineText.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/CanvasHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/CanvasHelper.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/CanvasHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/CanvasHelper.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/DiffusedShadowStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/DiffusedShadowStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/DiffusedShadowStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/DiffusedShadowStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/DrawGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/DrawGradient.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/DrawGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/DrawGradient.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/ExtrudeStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/ExtrudeStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/ExtrudeStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/ExtrudeStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/GDIPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/GDIPath.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/GDIPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/GDIPath.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/IOutlineText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/IOutlineText.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/IOutlineText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/IOutlineText.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/ITextStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/ITextStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/ITextStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/ITextStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/MaskColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/MaskColor.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/MaskColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/MaskColor.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/NonSystemFontLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/NonSystemFontLoader.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/NonSystemFontLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/NonSystemFontLoader.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/OutlineText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/OutlineText.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/OutlineText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/OutlineText.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/PngOutlineText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/PngOutlineText.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/PngOutlineText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/PngOutlineText.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextDblGlowStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextDblGlowStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextDblGlowStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextDblGlowStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextDblOutlineStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextDblOutlineStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextDblOutlineStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextDblOutlineStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextDesigner_vs2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextDesigner_vs2010.vcxproj -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextGlowStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextGlowStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextGlowStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextGlowStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextGradOutlineLastStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextGradOutlineLastStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextGradOutlineLastStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextGradOutlineLastStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextGradOutlineStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextGradOutlineStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextGradOutlineStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextGradOutlineStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextImplGetHeight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextImplGetHeight.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextImplGetHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextImplGetHeight.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextNoOutlineStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextNoOutlineStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextNoOutlineStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextNoOutlineStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextOnlyOutlineStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextOnlyOutlineStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextOnlyOutlineStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextOnlyOutlineStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextOutlineStrategy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextOutlineStrategy.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/TextOutlineStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/TextOutlineStrategy.h -------------------------------------------------------------------------------- /OutlineText/TextDesigner/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/stdafx.cpp -------------------------------------------------------------------------------- /OutlineText/TextDesigner/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesigner/stdafx.h -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/BmpOutlineText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/BmpOutlineText.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/CanvasHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/CanvasHelper.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/DiffusedShadowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/DiffusedShadowStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/DrawGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/DrawGradient.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/ExtrudeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/ExtrudeStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/GDIPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/GDIPath.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/IOutlineText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/IOutlineText.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/ITextStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/ITextStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/MaskColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/MaskColor.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/OutlineText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/OutlineText.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/PngOutlineText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/PngOutlineText.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextDblGlowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextDblGlowStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextDblOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextDblOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextDesignerCSLibrary_vs2010.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextDesignerCSLibrary_vs2010.csproj -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextGlowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextGlowStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextGradOutlineLastStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextGradOutlineLastStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextGradOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextGradOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextImplGetHeight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextImplGetHeight.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextNoOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextNoOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextOnlyOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextOnlyOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerCSLibrary/TextOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerCSLibrary/TextOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/CanvasHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/CanvasHelper.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/DiffusedShadowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/DiffusedShadowStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/DrawGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/DrawGradient.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/ExtrudeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/ExtrudeStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/GDIPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/GDIPath.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/ITextStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/ITextStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/MaskColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/MaskColor.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextDblGlowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextDblGlowStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextDblOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextDblOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextDesignerWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextDesignerWpf.csproj -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextGlowStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextGlowStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextGradOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextGradOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextNoOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextNoOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextOnlyOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextOnlyOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/TextDesignerWpf/TextOutlineStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/TextDesignerWpf/TextOutlineStrategy.cs -------------------------------------------------------------------------------- /OutlineText/Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/OutlineText/Version.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/README.md -------------------------------------------------------------------------------- /images/CppGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/CppGradient.png -------------------------------------------------------------------------------- /images/DiffusedShadowSetting2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/DiffusedShadowSetting2.jpg -------------------------------------------------------------------------------- /images/Extrude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/Extrude.png -------------------------------------------------------------------------------- /images/ExtrudeSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/ExtrudeSettings.png -------------------------------------------------------------------------------- /images/GenericCppGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/GenericCppGradient.png -------------------------------------------------------------------------------- /images/Real3DText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/Real3DText.png -------------------------------------------------------------------------------- /images/animescreenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/animescreenshot.jpg -------------------------------------------------------------------------------- /images/century_gothic_3d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/century_gothic_3d1.png -------------------------------------------------------------------------------- /images/century_gothic_text_glow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/century_gothic_text_glow1.png -------------------------------------------------------------------------------- /images/comic_sans_bold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/comic_sans_bold1.png -------------------------------------------------------------------------------- /images/doubleoutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/doubleoutline.png -------------------------------------------------------------------------------- /images/doubleoutline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/doubleoutline1.png -------------------------------------------------------------------------------- /images/doubleoutlinesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/doubleoutlinesettings.png -------------------------------------------------------------------------------- /images/enablepngsettings3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/enablepngsettings3_small.jpg -------------------------------------------------------------------------------- /images/engravers_double_outline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/engravers_double_outline1.png -------------------------------------------------------------------------------- /images/fake3dtextsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/fake3dtextsettings.png -------------------------------------------------------------------------------- /images/gdi_textdesigner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/gdi_textdesigner.png -------------------------------------------------------------------------------- /images/gdiandgdiplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/gdiandgdiplus.png -------------------------------------------------------------------------------- /images/impact_italic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/impact_italic1.png -------------------------------------------------------------------------------- /images/matisse_double_outline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/matisse_double_outline1.png -------------------------------------------------------------------------------- /images/openglscreenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/openglscreenshot1.jpg -------------------------------------------------------------------------------- /images/openglscreenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/openglscreenshot2.jpg -------------------------------------------------------------------------------- /images/pngineditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/pngineditor.png -------------------------------------------------------------------------------- /images/rotatedtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/rotatedtext.png -------------------------------------------------------------------------------- /images/rotatedtext2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/rotatedtext2.png -------------------------------------------------------------------------------- /images/rotatedtextsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/rotatedtextsettings.png -------------------------------------------------------------------------------- /images/samplescreenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/samplescreenshot.jpg -------------------------------------------------------------------------------- /images/shadowcombined1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/shadowcombined1.png -------------------------------------------------------------------------------- /images/shadowproper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/shadowproper.png -------------------------------------------------------------------------------- /images/shadowtextbody1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/shadowtextbody1.png -------------------------------------------------------------------------------- /images/shadowtextoutline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/shadowtextoutline1.png -------------------------------------------------------------------------------- /images/singleoutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/singleoutline.png -------------------------------------------------------------------------------- /images/singleoutline1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/singleoutline1.png -------------------------------------------------------------------------------- /images/singleoutline1problematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/singleoutline1problematic.png -------------------------------------------------------------------------------- /images/singleoutline1solved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/singleoutline1solved.png -------------------------------------------------------------------------------- /images/singleoutlinesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/singleoutlinesettings.png -------------------------------------------------------------------------------- /images/textglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/textglow.png -------------------------------------------------------------------------------- /images/textglow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/textglow1.png -------------------------------------------------------------------------------- /images/textglowsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/textglowsettings.png -------------------------------------------------------------------------------- /images/textglowwithshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/outline-text/HEAD/images/textglowwithshadow.png --------------------------------------------------------------------------------