├── About these folders.txt ├── README.md ├── help ├── Readme.TXT └── Win32++.chm ├── include ├── changes.txt ├── copyright.txt ├── default_resource.h ├── default_resource.rc ├── info.txt ├── release notes.txt ├── wxx_appcore.h ├── wxx_appcore0.h ├── wxx_archive.h ├── wxx_commondlg.h ├── wxx_controls.h ├── wxx_criticalsection.h ├── wxx_cstring.h ├── wxx_ddx.h ├── wxx_dialog.h ├── wxx_dockframe.h ├── wxx_docking.h ├── wxx_exception.h ├── wxx_file.h ├── wxx_filefind.h ├── wxx_folderdialog.h ├── wxx_folderdialogex.h ├── wxx_frame.h ├── wxx_gdi.h ├── wxx_hglobal.h ├── wxx_imagelist.h ├── wxx_listview.h ├── wxx_mdi.h ├── wxx_menu.h ├── wxx_menubar.h ├── wxx_menumetrics.h ├── wxx_messagepump.h ├── wxx_messagepump0.h ├── wxx_metafile.h ├── wxx_mutex.h ├── wxx_preview.h ├── wxx_printdialogex.h ├── wxx_printdialogs.h ├── wxx_propertysheet.h ├── wxx_rebar.h ├── wxx_rect.h ├── wxx_regkey.h ├── wxx_ribbon.h ├── wxx_richedit.h ├── wxx_scrollview.h ├── wxx_setup.h ├── wxx_socket.h ├── wxx_statusbar.h ├── wxx_stdcontrols.h ├── wxx_tab.h ├── wxx_taskdialog.h ├── wxx_textconv.h ├── wxx_themes.h ├── wxx_thread.h ├── wxx_time.h ├── wxx_toolbar.h ├── wxx_treeview.h ├── wxx_webbrowser.h ├── wxx_wincore.h └── wxx_wincore0.h ├── samples ├── Animation │ ├── ProjectFiles │ │ ├── Animation.cbp │ │ ├── Animation.cbproj │ │ ├── Animation_2015.sln │ │ ├── Animation_2015.vcxproj │ │ ├── Animation_2015.vcxproj.filters │ │ ├── Animation_2019.sln │ │ ├── Animation_2019.vcxproj │ │ ├── Animation_2019.vcxproj.filters │ │ ├── Animation_2022.sln │ │ ├── Animation_2022.vcxproj │ │ ├── Animation_2022.vcxproj.filters │ │ ├── Animation_DEBUG.dev │ │ └── Animation_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Play.ico │ │ ├── SystemDPI.manifest │ │ └── upload.avi │ │ ├── resource.h │ │ └── stdafx.h ├── Browser │ ├── ProjectFiles │ │ ├── Browser.cbp │ │ ├── Browser.cbproj │ │ ├── Browser_2015.sln │ │ ├── Browser_2015.vcxproj │ │ ├── Browser_2015.vcxproj.filters │ │ ├── Browser_2019.sln │ │ ├── Browser_2019.vcxproj │ │ ├── Browser_2019.vcxproj.filters │ │ ├── Browser_2022.sln │ │ ├── Browser_2022.vcxproj │ │ ├── Browser_2022.vcxproj.filters │ │ ├── Browser_DEBUG.dev │ │ └── Browser_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── BrowserApp.cpp │ │ ├── BrowserApp.h │ │ ├── EventSink.cpp │ │ ├── EventSink.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyCombo.cpp │ │ ├── MyCombo.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Browser_d.bmp │ │ ├── Browser_h.bmp │ │ ├── Browser_n.bmp │ │ ├── Globe.ico │ │ ├── Internet24_d.bmp │ │ ├── Internet24_h.bmp │ │ ├── Internet24_n.bmp │ │ ├── MenuIcons16.bmp │ │ ├── MenuIcons24.bmp │ │ └── SystemDPI.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── BrowserATL │ ├── ProjectFiles │ │ ├── BrowserATL_2015.sln │ │ ├── BrowserATL_2015.vcxproj │ │ ├── BrowserATL_2015.vcxproj.filters │ │ ├── BrowserATL_2019.sln │ │ ├── BrowserATL_2019.vcxproj │ │ ├── BrowserATL_2019.vcxproj.filters │ │ ├── BrowserATL_2022.sln │ │ ├── BrowserATL_2022.vcxproj │ │ └── BrowserATL_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── BrowserApp.cpp │ │ ├── BrowserApp.h │ │ ├── DispatchSink.cpp │ │ ├── DispatchSink.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyCombo.cpp │ │ ├── MyCombo.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Browser_d.bmp │ │ ├── Browser_h.bmp │ │ ├── Browser_n.bmp │ │ ├── Globe.ico │ │ ├── Internet24_d.bmp │ │ ├── Internet24_h.bmp │ │ ├── Internet24_n.bmp │ │ ├── MenuIcons16.bmp │ │ ├── MenuIcons24.bmp │ │ └── SystemDPI.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── CommonDialogs │ ├── ProjectFiles │ │ ├── CommonDialogs.cbp │ │ ├── CommonDialogs.cbproj │ │ ├── CommonDialogs_2015.sln │ │ ├── CommonDialogs_2015.vcxproj │ │ ├── CommonDialogs_2015.vcxproj.filters │ │ ├── CommonDialogs_2019.sln │ │ ├── CommonDialogs_2019.vcxproj │ │ ├── CommonDialogs_2019.vcxproj.filters │ │ ├── CommonDialogs_2022.sln │ │ ├── CommonDialogs_2022.vcxproj │ │ ├── CommonDialogs_2022.vcxproj.filters │ │ ├── CommonDialogs_DEBUG.dev │ │ └── CommonDialogs_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── AboutBox.cpp │ │ ├── AboutBox.h │ │ ├── App.cpp │ │ ├── App.h │ │ ├── ColorChoice.cpp │ │ ├── ColorChoice.h │ │ ├── ColorDefs.h │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── ListBoxDlg.cpp │ │ ├── ListBoxDlg.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyFileDlg.h │ │ ├── MyFindReplaceDlg.cpp │ │ ├── MyFindReplaceDlg.h │ │ ├── MyFontDlg.cpp │ │ ├── MyFontDlg.h │ │ ├── MyPrintDialog.cpp │ │ ├── MyPrintDialog.h │ │ ├── PrintInfo.cpp │ │ ├── PrintInfo.h │ │ ├── Resource.rc │ │ ├── RichEditView.cpp │ │ ├── RichEditView.h │ │ ├── StdAfx.cpp │ │ ├── StdApp.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Smile.ico │ │ └── Toolbar.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── Console │ ├── ProjectFiles │ │ ├── Console.cbp │ │ ├── Console.cbproj │ │ ├── Console_2015.sln │ │ ├── Console_2015.vcxproj │ │ ├── Console_2019.sln │ │ ├── Console_2019.vcxproj │ │ ├── Console_2019.vcxproj.filters │ │ ├── Console_2022.sln │ │ ├── Console_2022.vcxproj │ │ └── Console_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── main.cpp │ │ └── stdafx.h ├── ContextHelp │ ├── ProjectFiles │ │ ├── ContextHelp.cbp │ │ ├── ContextHelp.cbproj │ │ ├── ContextHelp_2015.sln │ │ ├── ContextHelp_2015.vcxproj │ │ ├── ContextHelp_2015.vcxproj.filters │ │ ├── ContextHelp_2019.sln │ │ ├── ContextHelp_2019.vcxproj │ │ ├── ContextHelp_2019.vcxproj.filters │ │ ├── ContextHelp_2022.sln │ │ ├── ContextHelp_2022.vcxproj │ │ ├── ContextHelp_2022.vcxproj.filters │ │ ├── ContextHelp_DEBUG.dev │ │ └── ContextHelp_RELEASE.dev │ ├── Readme.txt │ ├── Setup │ │ ├── ContextHelp.chm │ │ ├── Install.bat │ │ └── Readme.txt │ ├── help │ │ ├── Adding HTML Help to MinGW.html │ │ ├── AppHelpUsage.htm │ │ ├── AppTitleBar.htm │ │ ├── BitmapContent.htm │ │ ├── Button1Usage.htm │ │ ├── CheckBoxUsage.htm │ │ ├── ContextHelp.chm │ │ ├── ContextHelp.hhp │ │ ├── FeatureNotDescribed.htm │ │ ├── FileDialogNewHelp.htm │ │ ├── Index.hhk │ │ ├── RadioButtonUsage.htm │ │ ├── ResizeGripper.htm │ │ ├── RichEditBoxUsage.htm │ │ ├── StatusBoxContent.htm │ │ ├── SystemMenu.htm │ │ ├── TitleBarQuestionBox.htm │ │ ├── aboutthisprogram.htm │ │ ├── clientwindowcontrols.htm │ │ ├── closecurrentdocument.htm │ │ ├── colorchoicefunction.htm │ │ ├── colordialoghelp.htm │ │ ├── contentdescriptionandusagecondit.htm │ │ ├── copyfunction.htm │ │ ├── creatinghelpfiles.htm │ │ ├── css │ │ │ ├── base.css │ │ │ ├── hnd.css │ │ │ ├── ielte8.css │ │ │ └── reset.css │ │ ├── cutfunction.htm │ │ ├── deletefunction.htm │ │ ├── dialoghelpbuttons.htm │ │ ├── editboxusage.htm │ │ ├── exitterminateprogram.htm │ │ ├── filedialogopenhelp.htm │ │ ├── filedialogsaveashelp.htm │ │ ├── findindocument.htm │ │ ├── findtextdialoghelp.htm │ │ ├── fontchoicedialoghelp.htm │ │ ├── fontchoicefunction.htm │ │ ├── framebuttonresponses.htm │ │ ├── gettinghelp.htm │ │ ├── gettingstarted.htm │ │ ├── img │ │ │ ├── arrow_left.png │ │ │ ├── arrow_right.png │ │ │ ├── arrow_up.png │ │ │ ├── footer-bg.png │ │ │ └── header-bg.png │ │ ├── introduction.htm │ │ ├── js │ │ │ └── chmRelative.js │ │ ├── keywords.hhk │ │ ├── lib │ │ │ ├── imgarrow_left.png │ │ │ ├── imgarrow_left1.png │ │ │ ├── imgarrow_left2.png │ │ │ ├── imgarrow_left3.png │ │ │ ├── imgarrow_left4.png │ │ │ ├── imgarrow_right.png │ │ │ ├── imgarrow_right1.png │ │ │ ├── imgarrow_right2.png │ │ │ ├── imgarrow_right3.png │ │ │ ├── imgarrow_right4.png │ │ │ ├── imgarrow_right5.png │ │ │ ├── imgarrow_up.png │ │ │ ├── imgarrow_up1.png │ │ │ ├── imgarrow_up2.png │ │ │ └── imgarrow_up3.png │ │ ├── listboxdialoghelp.htm │ │ ├── maximizewindow.htm │ │ ├── minimizewindow.htm │ │ ├── mostrecentlyusedlist.htm │ │ ├── newdocument.htm │ │ ├── okbuttonusage.htm │ │ ├── openexistingdocument.htm │ │ ├── pagesetupdialoghelp.htm │ │ ├── pagesetupforprintout.htm │ │ ├── pastefunction.htm │ │ ├── previewprintout.htm │ │ ├── printdocument.htm │ │ ├── printerdialoghelp.htm │ │ ├── redofunction.htm │ │ ├── replaceindocument.htm │ │ ├── replacetextdialoghelp.htm │ │ ├── restorewindow.htm │ │ ├── saveasanotherdocument.htm │ │ ├── savecurrentdocument.htm │ │ ├── statusbartopics.htm │ │ ├── systemrequirements.htm │ │ ├── toc.hhc │ │ ├── toolbarandmenuitems.htm │ │ ├── toolbartopics.htm │ │ ├── undofunction.htm │ │ ├── welcome.htm │ │ ├── whatsnew.htm │ │ └── ~~TypicalTopic.htm │ └── src │ │ ├── App.cpp │ │ ├── App.h │ │ ├── AppHelp.cpp │ │ ├── AppHelp.h │ │ ├── ContextHelp.cpp │ │ ├── ContextHelp.h │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── HelpAbout.cpp │ │ ├── HelpAbout.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── ContextHelp.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ └── Zapotec.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── CustomControl │ ├── ProjectFiles │ │ ├── CustomControl.cbp │ │ ├── CustomControl.cbproj │ │ ├── CustomControl_2015.sln │ │ ├── CustomControl_2015.vcxproj │ │ ├── CustomControl_2015.vcxproj.filters │ │ ├── CustomControl_2019.sln │ │ ├── CustomControl_2019.vcxproj │ │ ├── CustomControl_2019.vcxproj.filters │ │ ├── CustomControl_2022.sln │ │ ├── CustomControl_2022.vcxproj │ │ ├── CustomControl_2022.vcxproj.filters │ │ ├── CustomControl_DEBUG.dev │ │ └── CustomControl_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── CustomControlApp.cpp │ │ ├── CustomControlApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── MyWebControl.cpp │ │ ├── MyWebControl.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── CustomPrintDlg │ ├── ProjectFiles │ │ ├── CustomPrintDlg.cbp │ │ ├── CustomPrintDlg.cbproj │ │ ├── CustomPrintDlg_2015.sln │ │ ├── CustomPrintDlg_2015.vcxproj │ │ ├── CustomPrintDlg_2015.vcxproj.filters │ │ ├── CustomPrintDlg_2019.sln │ │ ├── CustomPrintDlg_2019.vcxproj │ │ ├── CustomPrintDlg_2019.vcxproj.filters │ │ ├── CustomPrintDlg_2022.sln │ │ ├── CustomPrintDlg_2022.vcxproj │ │ ├── CustomPrintDlg_2022.vcxproj.filters │ │ ├── CustomPrintDlg_DEBUG.dev │ │ └── CustomPrintDlg_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── CustomPrintDlg.cpp │ │ ├── CustomPrintDlg.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── RichView.cpp │ │ ├── RichView.h │ │ ├── StdAfx.cpp │ │ ├── TextApp.cpp │ │ ├── TextApp.h │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Notepad.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── DDXDemo │ ├── ProjectFiles │ │ ├── DDXDemo.cbp │ │ ├── DDXDemo.cbproj │ │ ├── DDXDemo_2015.sln │ │ ├── DDXDemo_2015.vcxproj │ │ ├── DDXDemo_2015.vcxproj.filters │ │ ├── DDXDemo_2019.sln │ │ ├── DDXDemo_2019.vcxproj │ │ ├── DDXDemo_2019.vcxproj.filters │ │ ├── DDXDemo_2022.sln │ │ ├── DDXDemo_2022.vcxproj │ │ ├── DDXDemo_2022.vcxproj.filters │ │ ├── DDXDemo_DEBUG.dev │ │ └── DDXDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyButton.cpp │ │ ├── MyButton.h │ │ ├── MyScrollbar.cpp │ │ ├── MyScrollbar.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── res │ │ ├── Form.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ └── moondance.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── DarkModeFrame │ ├── ProjectFiles │ │ ├── DarkModeFrame_2022.sln │ │ ├── DarkModeFrame_2022.vcxproj │ │ └── DarkModeFrame_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── DarkAbout.cpp │ │ ├── DarkAbout.h │ │ ├── DarkMode.cpp │ │ ├── DarkMode.h │ │ ├── DarkPreview.h │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── SunGlasses.ico │ │ └── Toolbar.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── DateTime │ ├── ProjectFiles │ │ ├── DateTime.cbp │ │ ├── DateTime.cbproj │ │ ├── DateTime_2015.sln │ │ ├── DateTime_2015.vcxproj │ │ ├── DateTime_2015.vcxproj.filters │ │ ├── DateTime_2019.sln │ │ ├── DateTime_2019.vcxproj │ │ ├── DateTime_2019.vcxproj.filters │ │ ├── DateTime_2022.sln │ │ ├── DateTime_2022.vcxproj │ │ ├── DateTime_2022.vcxproj.filters │ │ ├── DateTime_DEBUG.dev │ │ └── DateTime_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── DateTime.ico │ │ ├── PerMonitorV2.manifest │ │ └── Zapotec.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── Dialog │ ├── ProjectFiles │ │ ├── Dialog.cbp │ │ ├── Dialog.cbproj │ │ ├── Dialog_2015.sln │ │ ├── Dialog_2015.vcxproj │ │ ├── Dialog_2015.vcxproj.filters │ │ ├── Dialog_2019.sln │ │ ├── Dialog_2019.vcxproj │ │ ├── Dialog_2019.vcxproj.filters │ │ ├── Dialog_2022.sln │ │ ├── Dialog_2022.vcxproj │ │ ├── Dialog_2022.vcxproj.filters │ │ ├── Dialog_DEBUG.dev │ │ └── Dialog_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ ├── PerMonitorV2.manifest │ │ └── Zapotec.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── DialogBars │ ├── ProjectFiles │ │ ├── DialogBars.cbp │ │ ├── DialogBars.cbproj │ │ ├── DialogBars_2015.sln │ │ ├── DialogBars_2015.vcxproj │ │ ├── DialogBars_2015.vcxproj.filters │ │ ├── DialogBars_2019.sln │ │ ├── DialogBars_2019.vcxproj │ │ ├── DialogBars_2019.vcxproj.filters │ │ ├── DialogBars_2022.sln │ │ ├── DialogBars_2022.vcxproj │ │ ├── DialogBars_2022.vcxproj.filters │ │ ├── DialogBars_DEBUG.dev │ │ └── DialogBars_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── Scrollbar.cpp │ │ ├── Scrollbar.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── DialogDemo │ ├── ProjectFiles │ │ ├── DialogDemo.cbp │ │ ├── DialogDemo.cbproj │ │ ├── DialogDemo_2015.sln │ │ ├── DialogDemo_2015.vcxproj │ │ ├── DialogDemo_2015.vcxproj.filters │ │ ├── DialogDemo_2019.sln │ │ ├── DialogDemo_2019.vcxproj │ │ ├── DialogDemo_2019.vcxproj.filters │ │ ├── DialogDemo_2022.sln │ │ ├── DialogDemo_2022.vcxproj │ │ ├── DialogDemo_2022.vcxproj.filters │ │ ├── DialogDemo_DEBUG.dev │ │ └── DialogDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogDemoApp.cpp │ │ ├── DialogDemoApp.h │ │ ├── Hyperlink.cpp │ │ ├── Hyperlink.h │ │ ├── MyButton.cpp │ │ ├── MyButton.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── DialogResizing │ ├── ProjectFiles │ │ ├── DialogResizing.cbp │ │ ├── DialogResizing.cbproj │ │ ├── DialogResizing_2015.sln │ │ ├── DialogResizing_2015.vcxproj │ │ ├── DialogResizing_2015.vcxproj.filters │ │ ├── DialogResizing_2019.sln │ │ ├── DialogResizing_2019.vcxproj │ │ ├── DialogResizing_2019.vcxproj.filters │ │ ├── DialogResizing_2022.sln │ │ ├── DialogResizing_2022.vcxproj │ │ ├── DialogResizing_2022.vcxproj.filters │ │ ├── DialogResizing_DEBUG.dev │ │ └── DialogResizing_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── DialogTab │ ├── ProjectFiles │ │ ├── DialogTab.cbp │ │ ├── DialogTab.cbproj │ │ ├── DialogTab_2015.sln │ │ ├── DialogTab_2015.vcxproj │ │ ├── DialogTab_2015.vcxproj.filters │ │ ├── DialogTab_2019.sln │ │ ├── DialogTab_2019.vcxproj │ │ ├── DialogTab_2019.vcxproj.filters │ │ ├── DialogTab_2022.sln │ │ ├── DialogTab_2022.vcxproj │ │ ├── DialogTab_2022.vcxproj.filters │ │ ├── DialogTab_DEBUG.dev │ │ └── DialogTab_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Tab.ico │ │ ├── resource.h │ │ └── stdafx.h ├── DialogTemplate │ ├── ProjectFiles │ │ ├── DialogTemplate.cbp │ │ ├── DialogTemplate.cbproj │ │ ├── DialogTemplate_2015.sln │ │ ├── DialogTemplate_2015.vcxproj │ │ ├── DialogTemplate_2015.vcxproj.filters │ │ ├── DialogTemplate_2019.sln │ │ ├── DialogTemplate_2019.vcxproj │ │ ├── DialogTemplate_2019.vcxproj.filters │ │ ├── DialogTemplate_2022.sln │ │ ├── DialogTemplate_2022.vcxproj │ │ ├── DialogTemplate_2022.vcxproj.filters │ │ ├── DialogTemplate_DEBUG.dev │ │ └── DialogTemplate_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogHolder.cpp │ │ ├── DialogHolder.h │ │ ├── DialogsTree.cpp │ │ ├── DialogsTree.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── ResourceFinder.cpp │ │ ├── ResourceFinder.h │ │ ├── RichView.cpp │ │ ├── RichView.h │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Magnifier.ico │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Toolbar.bmp │ │ └── Windows.ico │ │ ├── resource.h │ │ └── stdafx.h ├── Direct2D │ ├── ProjectFiles │ │ ├── Direct2D_2015.sln │ │ ├── Direct2D_2015.vcxproj │ │ ├── Direct2D_2015.vcxproj.filters │ │ ├── Direct2D_2019.sln │ │ ├── Direct2D_2019.vcxproj │ │ ├── Direct2D_2019.vcxproj.filters │ │ ├── Direct2D_2022.sln │ │ ├── Direct2D_2022.vcxproj │ │ └── Direct2D_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── D2DApp.cpp │ │ ├── D2DApp.h │ │ ├── D2DView.cpp │ │ ├── D2DView.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── directx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── DirectX11 │ ├── ProjectFiles │ │ ├── DirectX11.fx │ │ ├── DirectX11_2015.sln │ │ ├── DirectX11_2015.vcxproj │ │ ├── DirectX11_2015.vcxproj.filters │ │ ├── DirectX11_2019.sln │ │ ├── DirectX11_2019.vcxproj │ │ ├── DirectX11_2019.vcxproj.filters │ │ ├── DirectX11_2022.sln │ │ ├── DirectX11_2022.vcxproj │ │ ├── DirectX11_2022.vcxproj.filters │ │ ├── DirectX11_PS.hlsl │ │ └── DirectX11_VS.hlsl │ ├── Readme.txt │ └── src │ │ ├── DXApp.cpp │ │ ├── DXApp.h │ │ ├── DXView.cpp │ │ ├── DXView.h │ │ ├── Resource.rc │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── directx.ico │ │ └── resource.h ├── DirectX9 │ ├── ProjectFiles │ │ ├── DirectX9_2015.sln │ │ ├── DirectX9_2015.vcxproj │ │ ├── DirectX9_2015.vcxproj.filters │ │ ├── DirectX9_2019.sln │ │ ├── DirectX9_2019.vcxproj │ │ ├── DirectX9_2019.vcxproj.filters │ │ ├── DirectX9_2022.sln │ │ ├── DirectX9_2022.vcxproj │ │ └── DirectX9_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── DXApp.cpp │ │ ├── DXApp.h │ │ ├── DXThread.cpp │ │ ├── DXThread.h │ │ ├── DXView.cpp │ │ ├── DXView.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons16.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ └── directx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── Dock │ ├── ProjectFiles │ │ ├── Dock.cbp │ │ ├── Dock.cbproj │ │ ├── Dock_2015.sln │ │ ├── Dock_2015.vcxproj │ │ ├── Dock_2015.vcxproj.filters │ │ ├── Dock_2019.sln │ │ ├── Dock_2019.vcxproj │ │ ├── Dock_2019.vcxproj.filters │ │ ├── Dock_2022.sln │ │ ├── Dock_2022.vcxproj │ │ ├── Dock_2022.vcxproj.filters │ │ ├── Docking_DEBUG.dev │ │ └── Docking_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Dockers.cpp │ │ ├── Dockers.h │ │ ├── DockingApp.cpp │ │ ├── DockingApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── Views.cpp │ │ ├── Views.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Docking.ico │ │ ├── PerMonitorV2.manifest │ │ ├── SDbottom.bmp │ │ ├── SDcenter.bmp │ │ ├── SDleft.bmp │ │ ├── SDmiddle.bmp │ │ ├── SDright.bmp │ │ ├── SDtop.bmp │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── View.ico │ │ ├── classview.bmp │ │ └── fileview.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── DockContainer │ ├── ProjectFiles │ │ ├── DockContainer.cbp │ │ ├── DockContainer.cbproj │ │ ├── DockContainer_2015.sln │ │ ├── DockContainer_2015.vcxproj │ │ ├── DockContainer_2015.vcxproj.filters │ │ ├── DockContainer_2019.sln │ │ ├── DockContainer_2019.vcxproj │ │ ├── DockContainer_2019.vcxproj.filters │ │ ├── DockContainer_2022.sln │ │ ├── DockContainer_2022.vcxproj │ │ ├── DockContainer_2022.vcxproj.filters │ │ ├── DockContainer_DEBUG.dev │ │ └── DockContainer_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Classes.cpp │ │ ├── Classes.h │ │ ├── ContainerApp.cpp │ │ ├── ContainerApp.h │ │ ├── Files.cpp │ │ ├── Files.h │ │ ├── MainContainer.cpp │ │ ├── MainContainer.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Output.cpp │ │ ├── Output.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── Text.cpp │ │ ├── Text.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Docking.ico │ │ ├── PerMonitorV2.manifest │ │ ├── SDbottom.bmp │ │ ├── SDcenter.bmp │ │ ├── SDleft.bmp │ │ ├── SDmiddle.bmp │ │ ├── SDright.bmp │ │ ├── SDtop.bmp │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Text.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── classview.bmp │ │ ├── classview.ico │ │ ├── fileview.bmp │ │ └── fileview.ico │ │ ├── resource.h │ │ └── stdafx.h ├── DockTabbedMDI │ ├── ProjectFiles │ │ ├── DockTabbedMDI.cbp │ │ ├── DockTabbedMDI.cbproj │ │ ├── DockTabbedMDI_2015.sln │ │ ├── DockTabbedMDI_2015.vcxproj │ │ ├── DockTabbedMDI_2015.vcxproj.filters │ │ ├── DockTabbedMDI_2019.sln │ │ ├── DockTabbedMDI_2019.vcxproj │ │ ├── DockTabbedMDI_2019.vcxproj.filters │ │ ├── DockTabbedMDI_2022.sln │ │ ├── DockTabbedMDI_2022.vcxproj │ │ ├── DockTabbedMDI_2022.vcxproj.filters │ │ ├── TabbedMDI_DEBUG.dev │ │ └── TabbedMDI_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Browser.cpp │ │ ├── Browser.h │ │ ├── Classes.cpp │ │ ├── Classes.h │ │ ├── Files.cpp │ │ ├── Files.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── MyTabbedMDI.cpp │ │ ├── MyTabbedMDI.h │ │ ├── Output.cpp │ │ ├── Output.h │ │ ├── Rect.cpp │ │ ├── Rect.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── TabbedMDIApp.cpp │ │ ├── TabbedMDIApp.h │ │ ├── Text.cpp │ │ ├── Text.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ ├── Docking.ico │ │ ├── Globe.ico │ │ ├── PerMonitorV2.manifest │ │ ├── SDbottom.bmp │ │ ├── SDcenter.bmp │ │ ├── SDleft.bmp │ │ ├── SDmiddle.bmp │ │ ├── SDright.bmp │ │ ├── SDtop.bmp │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Text.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── classview.bmp │ │ ├── classview.ico │ │ ├── fileview.bmp │ │ ├── fileview.ico │ │ └── rect.ico │ │ ├── resource.h │ │ └── stdafx.h ├── DoubleBuffer │ ├── ProjectFiles │ │ ├── DoubleBuffer.cbp │ │ ├── DoubleBuffer.cbproj │ │ ├── DoubleBuffer_2015.sln │ │ ├── DoubleBuffer_2015.vcxproj │ │ ├── DoubleBuffer_2015.vcxproj.filters │ │ ├── DoubleBuffer_2019.sln │ │ ├── DoubleBuffer_2019.vcxproj │ │ ├── DoubleBuffer_2019.vcxproj.filters │ │ ├── DoubleBuffer_2022.sln │ │ ├── DoubleBuffer_2022.vcxproj │ │ ├── DoubleBuffer_2022.vcxproj.filters │ │ ├── DoubleBuffer_DEBUG.dev │ │ └── DoubleBuffer_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DoubleBufferApp.cpp │ │ ├── DoubleBufferApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Blue.bmp │ │ ├── Blue.ico │ │ ├── MenuIcons.bmp │ │ ├── Orange.bmp │ │ ├── PerMonitorV2.manifest │ │ └── Toolbar.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── EdgeBrowser │ ├── ProjectFiles │ │ ├── EdgeBrowser_2019.sln │ │ ├── EdgeBrowser_2019.vcxproj │ │ ├── EdgeBrowser_2019.vcxproj.filters │ │ ├── EdgeBrowser_2022.sln │ │ ├── EdgeBrowser_2022.vcxproj │ │ └── EdgeBrowser_2022.vcxproj.filters │ ├── Readme.txt │ ├── packages │ │ ├── Microsoft.Web.WebView2.1.0.902.49 │ │ │ ├── .signature.p7s │ │ │ ├── LICENSE.txt │ │ │ ├── Microsoft.Web.WebView2.1.0.902.49.nupkg │ │ │ ├── WebView2.idl │ │ │ ├── WebView2.tlb │ │ │ ├── build │ │ │ │ ├── Common.targets │ │ │ │ ├── Microsoft.Web.WebView2.targets │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Web.WebView2.targets │ │ │ │ │ ├── arm64 │ │ │ │ │ ├── WebView2Loader.dll │ │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ │ │ ├── include │ │ │ │ │ ├── WebView2.h │ │ │ │ │ └── WebView2EnvironmentOptions.h │ │ │ │ │ ├── x64 │ │ │ │ │ ├── WebView2Loader.dll │ │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ │ │ └── x86 │ │ │ │ │ ├── WebView2Loader.dll │ │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ ├── lib │ │ │ │ ├── net45 │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ │ │ │ └── Microsoft.Web.WebView2.Wpf.xml │ │ │ │ └── netcoreapp3.0 │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ │ │ │ └── Microsoft.Web.WebView2.Wpf.xml │ │ │ ├── runtimes │ │ │ │ ├── win-arm64 │ │ │ │ │ └── native │ │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ ├── win-x64 │ │ │ │ │ └── native │ │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ └── win-x86 │ │ │ │ │ └── native │ │ │ │ │ └── WebView2Loader.dll │ │ │ └── tools │ │ │ │ └── VisualStudioToolsManifest.xml │ │ └── Microsoft.Windows.ImplementationLibrary.1.0.191107.2 │ │ │ ├── .signature.p7s │ │ │ ├── LICENSE │ │ │ ├── Microsoft.Windows.ImplementationLibrary.1.0.191107.2.nupkg │ │ │ ├── ThirdPartyNotices.txt │ │ │ ├── build │ │ │ └── native │ │ │ │ └── Microsoft.Windows.ImplementationLibrary.targets │ │ │ └── include │ │ │ └── wil │ │ │ ├── com.h │ │ │ ├── common.h │ │ │ ├── cppwinrt.h │ │ │ ├── filesystem.h │ │ │ ├── registry.h │ │ │ ├── resource.h │ │ │ ├── result.h │ │ │ ├── result_macros.h │ │ │ ├── result_originate.h │ │ │ ├── rpc_helpers.h │ │ │ ├── safecast.h │ │ │ ├── stl.h │ │ │ ├── token_helpers.h │ │ │ ├── win32_helpers.h │ │ │ ├── winrt.h │ │ │ ├── wistd_config.h │ │ │ ├── wistd_functional.h │ │ │ ├── wistd_memory.h │ │ │ ├── wistd_type_traits.h │ │ │ └── wrl.h │ └── src │ │ ├── EdgeView.cpp │ │ ├── EdgeView.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Globe.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── EdgeBrowserEx │ ├── ProjectFiles │ │ ├── EdgeBrowserEx_2019.sln │ │ ├── EdgeBrowserEx_2019.vcxproj │ │ ├── EdgeBrowserEx_2019.vcxproj.filters │ │ ├── EdgeBrowserEx_2022.sln │ │ ├── EdgeBrowserEx_2022.vcxproj │ │ └── EdgeBrowserEx_2022.vcxproj.filters │ ├── Readme.txt │ ├── packages │ │ ├── Microsoft.Web.WebView2.1.0.961.33 │ │ │ ├── .signature.p7s │ │ │ ├── LICENSE.txt │ │ │ ├── Microsoft.Web.WebView2.1.0.961.33.nupkg │ │ │ ├── WebView2.idl │ │ │ ├── WebView2.tlb │ │ │ ├── build │ │ │ │ ├── Common.targets │ │ │ │ ├── Microsoft.Web.WebView2.targets │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Web.WebView2.targets │ │ │ │ │ ├── arm64 │ │ │ │ │ ├── WebView2Loader.dll │ │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ │ │ ├── include │ │ │ │ │ ├── WebView2.h │ │ │ │ │ └── WebView2EnvironmentOptions.h │ │ │ │ │ ├── x64 │ │ │ │ │ ├── WebView2Loader.dll │ │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ │ │ └── x86 │ │ │ │ │ ├── WebView2Loader.dll │ │ │ │ │ ├── WebView2Loader.dll.lib │ │ │ │ │ └── WebView2LoaderStatic.lib │ │ │ ├── lib │ │ │ │ ├── Microsoft.Web.WebView2.Core.winmd │ │ │ │ ├── net45 │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ │ │ │ └── Microsoft.Web.WebView2.Wpf.xml │ │ │ │ └── netcoreapp3.0 │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ │ │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ │ │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ │ │ │ └── Microsoft.Web.WebView2.Wpf.xml │ │ │ ├── runtimes │ │ │ │ ├── win-arm64 │ │ │ │ │ ├── native │ │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ │ └── native_uap │ │ │ │ │ │ └── Microsoft.Web.WebView2.Core.dll │ │ │ │ ├── win-x64 │ │ │ │ │ ├── native │ │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ │ └── native_uap │ │ │ │ │ │ └── Microsoft.Web.WebView2.Core.dll │ │ │ │ └── win-x86 │ │ │ │ │ ├── native │ │ │ │ │ └── WebView2Loader.dll │ │ │ │ │ └── native_uap │ │ │ │ │ └── Microsoft.Web.WebView2.Core.dll │ │ │ └── tools │ │ │ │ └── VisualStudioToolsManifest.xml │ │ └── Microsoft.Windows.ImplementationLibrary.1.0.191107.2 │ │ │ ├── .signature.p7s │ │ │ ├── LICENSE │ │ │ ├── Microsoft.Windows.ImplementationLibrary.1.0.191107.2.nupkg │ │ │ ├── ThirdPartyNotices.txt │ │ │ ├── build │ │ │ └── native │ │ │ │ └── Microsoft.Windows.ImplementationLibrary.targets │ │ │ └── include │ │ │ └── wil │ │ │ ├── com.h │ │ │ ├── common.h │ │ │ ├── cppwinrt.h │ │ │ ├── filesystem.h │ │ │ ├── registry.h │ │ │ ├── resource.h │ │ │ ├── result.h │ │ │ ├── result_macros.h │ │ │ ├── result_originate.h │ │ │ ├── rpc_helpers.h │ │ │ ├── safecast.h │ │ │ ├── stl.h │ │ │ ├── token_helpers.h │ │ │ ├── win32_helpers.h │ │ │ ├── winrt.h │ │ │ ├── wistd_config.h │ │ │ ├── wistd_functional.h │ │ │ ├── wistd_memory.h │ │ │ ├── wistd_type_traits.h │ │ │ └── wrl.h │ └── src │ │ ├── BrowserWindow.cpp │ │ ├── BrowserWindow.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resource.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── Tab.cpp │ │ ├── Tab.h │ │ ├── framework.h │ │ ├── main.cpp │ │ ├── nlohmann │ │ ├── json.hpp │ │ └── json_fwd.hpp │ │ ├── res │ │ ├── Globe.ico │ │ └── PerMonitorV2.manifest │ │ ├── stdafx.h │ │ └── wvbrowser_ui │ │ ├── commands.js │ │ ├── content_ui │ │ ├── favorites.html │ │ ├── favorites.js │ │ ├── history.css │ │ ├── history.html │ │ ├── history.js │ │ ├── img │ │ │ ├── close.png │ │ │ ├── favorites.png │ │ │ ├── history.png │ │ │ └── settings.png │ │ ├── items.css │ │ ├── settings.css │ │ ├── settings.html │ │ ├── settings.js │ │ └── styles.css │ │ └── controls_ui │ │ ├── address-bar.css │ │ ├── controls.css │ │ ├── default.css │ │ ├── default.html │ │ ├── default.js │ │ ├── favorites.js │ │ ├── history.js │ │ ├── img │ │ ├── cancel.png │ │ ├── favicon.png │ │ ├── favorite.png │ │ ├── favorited.png │ │ ├── goBack.png │ │ ├── goBack_disabled.png │ │ ├── goForward.png │ │ ├── goForward_disabled.png │ │ ├── insecure.png │ │ ├── neutral.png │ │ ├── options.png │ │ ├── reload.png │ │ ├── secure.png │ │ └── unknown.png │ │ ├── options.css │ │ ├── options.html │ │ ├── options.js │ │ ├── storage.js │ │ ├── strip.css │ │ ├── styles.css │ │ └── tabs.js ├── Explorer │ ├── ProjectFiles │ │ ├── Explorer.cbp │ │ ├── Explorer.cbproj │ │ ├── Explorer_2015.sln │ │ ├── Explorer_2015.vcxproj │ │ ├── Explorer_2015.vcxproj.filters │ │ ├── Explorer_2019.sln │ │ ├── Explorer_2019.vcxproj │ │ ├── Explorer_2019.vcxproj.filters │ │ ├── Explorer_2022.sln │ │ ├── Explorer_2022.vcxproj │ │ ├── Explorer_2022.vcxproj.filters │ │ ├── Explorer_DEBUG.dev │ │ └── Explorer_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── ExplorerApp.cpp │ │ ├── ExplorerApp.h │ │ ├── LeftPane.cpp │ │ ├── LeftPane.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyListView.cpp │ │ ├── MyListView.h │ │ ├── MyTreeView.cpp │ │ ├── MyTreeView.h │ │ ├── Resource.rc │ │ ├── RightPane.cpp │ │ ├── RightPane.h │ │ ├── ShellWrapper.cpp │ │ ├── ShellWrapper.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Explorer.ico │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── SystemDPI.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ └── Toolbar24_h.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── FastGDI │ ├── ProjectFiles │ │ ├── FastGDI.cbp │ │ ├── FastGDI.cbproj │ │ ├── FastGDI_2015.sln │ │ ├── FastGDI_2015.vcxproj │ │ ├── FastGDI_2015.vcxproj.filters │ │ ├── FastGDI_2019.sln │ │ ├── FastGDI_2019.vcxproj │ │ ├── FastGDI_2019.vcxproj.filters │ │ ├── FastGDI_2022.sln │ │ ├── FastGDI_2022.vcxproj │ │ ├── FastGDI_2022.vcxproj.filters │ │ ├── FastGDI_DEBUG.dev │ │ └── FastGDI_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── ColourAdjust.cpp │ │ ├── ColourAdjust.h │ │ ├── FastGDIApp.cpp │ │ ├── FastGDIApp.h │ │ ├── ImageView.cpp │ │ ├── ImageView.h │ │ ├── MainView.cpp │ │ ├── MainView.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Color.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ ├── resource.rc │ │ └── stdafx.h ├── FilePrintPreview │ ├── ProjectFiles │ │ ├── FilePrintPreview.cbp │ │ ├── FilePrintPreview.cbproj │ │ ├── FilePrintPreview_2015.sln │ │ ├── FilePrintPreview_2015.vcxproj │ │ ├── FilePrintPreview_2015.vcxproj.filters │ │ ├── FilePrintPreview_2019.sln │ │ ├── FilePrintPreview_2019.vcxproj │ │ ├── FilePrintPreview_2019.vcxproj.filters │ │ ├── FilePrintPreview_2022.sln │ │ ├── FilePrintPreview_2022.vcxproj │ │ ├── FilePrintPreview_2022.vcxproj.filters │ │ ├── FilePrintPreview_DEBUG.dev │ │ └── FilePrintPreview_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── PrintPreview.cpp │ │ ├── PrintPreview.h │ │ ├── PrintUtil.cpp │ │ ├── PrintUtil.h │ │ ├── Resource.rc │ │ ├── RichView.cpp │ │ ├── RichView.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── CheckBoxOff.ico │ │ ├── Print Preview.ico │ │ ├── Print Settings.ico │ │ ├── Print.ico │ │ ├── PrintPreview.ico │ │ ├── Quick Print.ico │ │ ├── RADIOBtnOff.ico │ │ ├── RecFirst.bmp │ │ ├── RecLast.bmp │ │ ├── RecNext.bmp │ │ ├── RecPrev.bmp │ │ ├── SystemDPI.manifest │ │ ├── Toolbar.bmp │ │ └── fontsS.ico │ │ ├── resource.h │ │ └── stdafx.h ├── FormDocView │ ├── ProjectFiles │ │ ├── FormDemo.cbp │ │ ├── FormDemo.cbproj │ │ ├── FormDemo_2015.sln │ │ ├── FormDemo_2015.vcxproj │ │ ├── FormDemo_2015.vcxproj.filters │ │ ├── FormDemo_2019.sln │ │ ├── FormDemo_2019.vcxproj │ │ ├── FormDemo_2019.vcxproj.filters │ │ ├── FormDemo_2022.sln │ │ ├── FormDemo_2022.vcxproj │ │ ├── FormDemo_2022.vcxproj.filters │ │ ├── FormDemo_DEBUG.dev │ │ └── FormDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── FormApp.cpp │ │ ├── FormApp.h │ │ ├── FormDoc.cpp │ │ ├── FormDoc.h │ │ ├── FormView.cpp │ │ ├── FormView.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StaticImage.cpp │ │ ├── StaticImage.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Form.ico │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ └── Zapotec.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── Frame │ ├── ProjectFiles │ │ ├── Frame.cbp │ │ ├── Frame.cbproj │ │ ├── Frame_2015.sln │ │ ├── Frame_2015.vcxproj │ │ ├── Frame_2015.vcxproj.filters │ │ ├── Frame_2019.sln │ │ ├── Frame_2019.vcxproj │ │ ├── Frame_2019.vcxproj.filters │ │ ├── Frame_2022.sln │ │ ├── Frame_2022.vcxproj │ │ ├── Frame_2022.vcxproj.filters │ │ ├── Frame_DEBUG.dev │ │ └── Frame_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── FrameEx │ ├── ProjectFiles │ │ ├── FrameEx.cbp │ │ ├── FrameEx.cbproj │ │ ├── FrameEx_2015.sln │ │ ├── FrameEx_2015.vcxproj │ │ ├── FrameEx_2015.vcxproj.filters │ │ ├── FrameEx_2019.sln │ │ ├── FrameEx_2019.vcxproj │ │ ├── FrameEx_2019.vcxproj.filters │ │ ├── FrameEx_2022.sln │ │ ├── FrameEx_2022.vcxproj │ │ ├── FrameEx_2022.vcxproj.filters │ │ ├── FrameEx_DEBUG.dev │ │ └── FrameEx_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── About.png │ │ ├── AboutDisabled.png │ │ ├── Copy.png │ │ ├── CopyDisabled.png │ │ ├── Cut.png │ │ ├── CutDisabled.png │ │ ├── New.png │ │ ├── NewDisabled.png │ │ ├── Open.png │ │ ├── OpenDisabled.png │ │ ├── Paste.png │ │ ├── PasteDisabled.png │ │ ├── PerMonitorV2.manifest │ │ ├── Preview.png │ │ ├── PreviewDisabled.png │ │ ├── Print.png │ │ ├── PrintDisabled.png │ │ ├── Save.png │ │ ├── SaveDisabled.png │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── GDIPlus │ ├── ProjectFiles │ │ ├── GDIPlus.cbp │ │ ├── GDIPlus.cbproj │ │ ├── GDIPlus_2015.sln │ │ ├── GDIPlus_2015.vcxproj │ │ ├── GDIPlus_2015.vcxproj.filters │ │ ├── GDIPlus_2019.sln │ │ ├── GDIPlus_2019.vcxproj │ │ ├── GDIPlus_2019.vcxproj.filters │ │ ├── GDIPlus_2022.sln │ │ ├── GDIPlus_2022.vcxproj │ │ ├── GDIPlus_2022.vcxproj.filters │ │ ├── GDIPlus_DEBUG.dev │ │ └── GDIPlus_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── GDIPlusView.cpp │ │ ├── GDIPlusView.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ ├── Shapes.ico │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── IFileDialog │ ├── ProjectFiles │ │ ├── IFileDialog.cbp │ │ ├── IFileDialog_2019.sln │ │ ├── IFileDialog_2019.vcxproj │ │ ├── IFileDialog_2019.vcxproj.filters │ │ ├── IFileDialog_2022.sln │ │ ├── IFileDialog_2022.vcxproj │ │ └── IFileDialog_2022.vcxproj.filters │ ├── readme.txt │ └── src │ │ ├── DialogEventHandler.cpp │ │ ├── DialogEventHandler.h │ │ ├── IFileDialog.cpp │ │ ├── IFileDialog.h │ │ ├── IFileDialogApp.cpp │ │ ├── IFileDialogApp.h │ │ ├── MyTaskDialog.cpp │ │ ├── MyTaskDialog.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Win32xx.ico │ │ ├── resource.h │ │ ├── resource.rc │ │ ├── stdAfx.cpp │ │ └── stdafx.h ├── INIFrame │ ├── ProjectFiles │ │ ├── INIFrame.cbp │ │ ├── INIFrame.cbproj │ │ ├── INIFrame_2015.sln │ │ ├── INIFrame_2015.vcxproj │ │ ├── INIFrame_2015.vcxproj.filters │ │ ├── INIFrame_2019.sln │ │ ├── INIFrame_2019.vcxproj │ │ ├── INIFrame_2019.vcxproj.filters │ │ ├── INIFrame_2022.sln │ │ ├── INIFrame_2022.vcxproj │ │ ├── INIFrame_2022.vcxproj.filters │ │ ├── INIFrame_DEBUG.dev │ │ └── INIFrame_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── ListView │ ├── ProjectFiles │ │ ├── ListView.cbp │ │ ├── ListView.cbproj │ │ ├── ListView_2015.sln │ │ ├── ListView_2015.vcxproj │ │ ├── ListView_2015.vcxproj.filters │ │ ├── ListView_2019.sln │ │ ├── ListView_2019.vcxproj │ │ ├── ListView_2019.vcxproj.filters │ │ ├── ListView_2022.sln │ │ ├── ListView_2022.vcxproj │ │ ├── ListView_2022.vcxproj.filters │ │ ├── ListView_DEBUG.dev │ │ └── ListView_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Edit.cpp │ │ ├── Edit.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ └── list.ico │ │ ├── resource.h │ │ └── stdafx.h ├── MDIDockFrame │ ├── ProjectFiles │ │ ├── MDIDockFrame.cbp │ │ ├── MDIDockFrame.cbproj │ │ ├── MDIDockFrame_2015.sln │ │ ├── MDIDockFrame_2015.vcxproj │ │ ├── MDIDockFrame_2015.vcxproj.filters │ │ ├── MDIDockFrame_2019.sln │ │ ├── MDIDockFrame_2019.vcxproj │ │ ├── MDIDockFrame_2019.vcxproj.filters │ │ ├── MDIDockFrame_2022.sln │ │ ├── MDIDockFrame_2022.vcxproj │ │ ├── MDIDockFrame_2022.vcxproj.filters │ │ ├── MDIDockFrame_DEBUG.dev │ │ └── MDIDockFrame_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Files.cpp │ │ ├── Files.h │ │ ├── MDIFrameApp.cpp │ │ ├── MDIFrameApp.h │ │ ├── MainMDIfrm.cpp │ │ ├── MainMDIfrm.h │ │ ├── Resource.rc │ │ ├── SimpleMDIChild.cpp │ │ ├── SimpleMDIChild.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── MDI.ico │ │ ├── Max.ico │ │ ├── Rect.ico │ │ ├── SDbottom.bmp │ │ ├── SDcenter.bmp │ │ ├── SDleft.bmp │ │ ├── SDmiddle.bmp │ │ ├── SDright.bmp │ │ ├── SDtop.bmp │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── SystemDPI.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ ├── View.ico │ │ ├── classview.bmp │ │ ├── dock.ico │ │ ├── fileview.bmp │ │ └── fileview.ico │ │ ├── resource.h │ │ └── stdafx.h ├── MDIFrame │ ├── ProjectFiles │ │ ├── MDIFrame.cbp │ │ ├── MDIFrame.cbproj │ │ ├── MDIFrame_2015.sln │ │ ├── MDIFrame_2015.vcxproj │ │ ├── MDIFrame_2015.vcxproj.filters │ │ ├── MDIFrame_2019.sln │ │ ├── MDIFrame_2019.vcxproj │ │ ├── MDIFrame_2019.vcxproj.filters │ │ ├── MDIFrame_2022.sln │ │ ├── MDIFrame_2022.vcxproj │ │ ├── MDIFrame_2022.vcxproj.filters │ │ ├── MDIFrame_DEBUG.dev │ │ └── MDIFrame_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── MDIFrameApp.cpp │ │ ├── MDIFrameApp.h │ │ ├── MainMDIfrm.cpp │ │ ├── MainMDIfrm.h │ │ ├── Resource.rc │ │ ├── SimpleMDIChild.cpp │ │ ├── SimpleMDIChild.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── MDI.ico │ │ ├── Max.ico │ │ ├── Rect.ico │ │ ├── SystemDPI.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ └── View.ico │ │ ├── resource.h │ │ └── stdafx.h ├── MDIFrameDemo │ ├── ProjectFiles │ │ ├── MDIFrameDemo.cbp │ │ ├── MDIFrameDemo.cbproj │ │ ├── MDIFrameDemo_2015.sln │ │ ├── MDIFrameDemo_2015.vcxproj │ │ ├── MDIFrameDemo_2015.vcxproj.filters │ │ ├── MDIFrameDemo_2019.sln │ │ ├── MDIFrameDemo_2019.vcxproj │ │ ├── MDIFrameDemo_2019.vcxproj.filters │ │ ├── MDIFrameDemo_2022.sln │ │ ├── MDIFrameDemo_2022.vcxproj │ │ ├── MDIFrameDemo_2022.vcxproj.filters │ │ ├── MDIFrameDemo_DEBUG.dev │ │ └── MDIFrameDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── MDIChildListView.cpp │ │ ├── MDIChildListView.h │ │ ├── MDIChildMax.cpp │ │ ├── MDIChildMax.h │ │ ├── MDIChildRect.cpp │ │ ├── MDIChildRect.h │ │ ├── MDIChildSimple.cpp │ │ ├── MDIChildSimple.h │ │ ├── MDIChildText.cpp │ │ ├── MDIChildText.h │ │ ├── MDIChildTreeView.cpp │ │ ├── MDIChildTreeView.h │ │ ├── MDIDemoApp.cpp │ │ ├── MDIDemoApp.h │ │ ├── MainMDIfrm.cpp │ │ ├── MainMDIfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── MDI.ico │ │ ├── Max.ico │ │ ├── Rect.ico │ │ ├── SystemDPI.manifest │ │ ├── Text.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ ├── View.ico │ │ ├── classview.bmp │ │ ├── classview.ico │ │ ├── fileview.bmp │ │ └── fileview.ico │ │ ├── resource.h │ │ └── stdafx.h ├── MDIFrameSplitter │ ├── ProjectFiles │ │ ├── MDIFrameSplitter.cbp │ │ ├── MDIFrameSplitter.cbproj │ │ ├── MDIFrameSplitter_2015.sln │ │ ├── MDIFrameSplitter_2015.vcxproj │ │ ├── MDIFrameSplitter_2015.vcxproj.filters │ │ ├── MDIFrameSplitter_2019.sln │ │ ├── MDIFrameSplitter_2019.vcxproj │ │ ├── MDIFrameSplitter_2019.vcxproj.filters │ │ ├── MDIFrameSplitter_2022.sln │ │ ├── MDIFrameSplitter_2022.vcxproj │ │ ├── MDIFrameSplitter_2022.vcxproj.filters │ │ ├── MDIFrameSplitter_DEBUG.dev │ │ └── MDIFrameSplitter_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Files.cpp │ │ ├── Files.h │ │ ├── MDIFrameSplitterApp.cpp │ │ ├── MDIFrameSplitterApp.h │ │ ├── MainMDIfrm.cpp │ │ ├── MainMDIfrm.h │ │ ├── Output.cpp │ │ ├── Output.h │ │ ├── Resource.rc │ │ ├── SplitterMDIChild.cpp │ │ ├── SplitterMDIChild.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── MDI.ico │ │ ├── Max.ico │ │ ├── Rect.ico │ │ ├── SDbottom.bmp │ │ ├── SDcenter.bmp │ │ ├── SDleft.bmp │ │ ├── SDmiddle.bmp │ │ ├── SDright.bmp │ │ ├── SDtop.bmp │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── SystemDPI.manifest │ │ ├── Text.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ ├── View.ico │ │ ├── fileview.bmp │ │ └── fileview.ico │ │ ├── resource.h │ │ └── stdafx.h ├── MakeDLL │ ├── ProjectFiles │ │ ├── Export.def │ │ ├── MakeDLL.cbp │ │ ├── MakeDLL_2015.sln │ │ ├── MakeDLL_2015.vcxproj │ │ ├── MakeDLL_2015.vcxproj.filters │ │ ├── MakeDLL_2019.sln │ │ ├── MakeDLL_2019.vcxproj │ │ ├── MakeDLL_2019.vcxproj.filters │ │ ├── MakeDLL_2022.sln │ │ ├── MakeDLL_2022.vcxproj │ │ ├── MakeDLL_2022.vcxproj.filters │ │ ├── MakeDLL_DEBUG.dev │ │ └── MakeDLL_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── MakeDLL.cpp │ │ ├── MakeDLL.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── MyWinThread.cpp │ │ ├── MyWinThread.h │ │ ├── ResourceDLL.rc │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ ├── Dialog.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Simple.ico │ │ └── Zapotec.bmp │ │ └── resource.h ├── MetaFile │ ├── ProjectFiles │ │ ├── MetaFile.cbp │ │ ├── MetaFile.cbproj │ │ ├── MetaFile_2015.sln │ │ ├── MetaFile_2015.vcxproj │ │ ├── MetaFile_2015.vcxproj.filters │ │ ├── MetaFile_2019.sln │ │ ├── MetaFile_2019.vcxproj │ │ ├── MetaFile_2019.vcxproj.filters │ │ ├── MetaFile_2022.sln │ │ ├── MetaFile_2022.vcxproj │ │ ├── MetaFile_2022.vcxproj.filters │ │ ├── MetaFile_DEBUG.dev │ │ └── MetaFile_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── MetaView.cpp │ │ ├── MetaView.h │ │ ├── Resource.rc │ │ ├── main.cpp │ │ ├── res │ │ ├── MetaFile.ico │ │ └── PerMonitorV2.manifest │ │ └── resource.h ├── MovieShow │ ├── DLLs │ │ ├── MediaInfo_DLL_25.07_Windows_i386_WithoutInstaller.zip │ │ ├── MediaInfo_DLL_25.07_Windows_x64_WithoutInstaller.zip │ │ ├── Readme.txt │ │ ├── x64 │ │ │ └── MediaInfo.dll │ │ └── x86 │ │ │ └── MediaInfo.dll │ ├── ProjectFiles │ │ ├── MovieShow.cbp │ │ ├── MovieShow.cbproj │ │ ├── MovieShow_2015.sln │ │ ├── MovieShow_2015.vcxproj │ │ ├── MovieShow_2015.vcxproj.filters │ │ ├── MovieShow_2019.sln │ │ ├── MovieShow_2019.vcxproj │ │ ├── MovieShow_2019.vcxproj.filters │ │ ├── MovieShow_2022.sln │ │ ├── MovieShow_2022.vcxproj │ │ └── MovieShow_2022.vcxproj.filters │ ├── Readme.txt │ ├── install │ │ ├── Instructions.txt │ │ ├── MovieShow.nsi │ │ ├── SetupMovieShow.exe │ │ └── files │ │ │ ├── MediaInfo.dll │ │ │ └── MovieShow.exe │ └── src │ │ ├── AboutDialog.h │ │ ├── CoverImage.cpp │ │ ├── CoverImage.h │ │ ├── List.cpp │ │ ├── List.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MediaInfoDLL.h │ │ ├── MovieInfo.h │ │ ├── MovieShowApp.cpp │ │ ├── MovieShowApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── SearchDialog.cpp │ │ ├── SearchDialog.h │ │ ├── Splash.cpp │ │ ├── Splash.h │ │ ├── SplashThread.cpp │ │ ├── SplashThread.h │ │ ├── StdAfx.cpp │ │ ├── Tree.cpp │ │ ├── Tree.h │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Add BoxSet.ico │ │ ├── Add Folder.ico │ │ ├── BoxSet.ico │ │ ├── Calendar.ico │ │ ├── Curtains.ico │ │ ├── Edit BoxSet.ico │ │ ├── FRSCRIPT.TTF │ │ ├── Help.ico │ │ ├── Library.ico │ │ ├── Mask.ico │ │ ├── MoveDown.ico │ │ ├── MoveUp.ico │ │ ├── Movies.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Play.ico │ │ ├── Remove.ico │ │ ├── Search.ico │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Star.ico │ │ ├── Violin.ico │ │ └── eye.ico │ │ ├── resource.h │ │ └── stdafx.h ├── NetClient │ ├── ProjectFiles │ │ ├── NetClient.cbp │ │ ├── NetClient.cbproj │ │ ├── NetClient_2015.sln │ │ ├── NetClient_2015.vcxproj │ │ ├── NetClient_2015.vcxproj.filters │ │ ├── NetClient_2019.sln │ │ ├── NetClient_2019.vcxproj │ │ ├── NetClient_2019.vcxproj.filters │ │ ├── NetClient_2022.sln │ │ ├── NetClient_2022.vcxproj │ │ ├── NetClient_2022.vcxproj.filters │ │ ├── NetClient_DEBUG.dev │ │ └── NetClient_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Client.cpp │ │ ├── Client.h │ │ ├── ClientDialog.cpp │ │ ├── ClientDialog.h │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Client.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── NetServer │ ├── ProjectFiles │ │ ├── NetServer.cbp │ │ ├── NetServer.cbproj │ │ ├── NetServer_2015.sln │ │ ├── NetServer_2015.vcxproj │ │ ├── NetServer_2015.vcxproj.filters │ │ ├── NetServer_2019.sln │ │ ├── NetServer_2019.vcxproj │ │ ├── NetServer_2019.vcxproj.filters │ │ ├── NetServer_2022.sln │ │ ├── NetServer_2022.vcxproj │ │ ├── NetServer_2022.vcxproj.filters │ │ ├── NetServer_DEBUG.dev │ │ └── NetServer_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── Resource.rc │ │ ├── Server.cpp │ │ ├── Server.h │ │ ├── StdAfx.cpp │ │ ├── SvrDialog.cpp │ │ ├── SvrDialog.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Server.ico │ │ ├── resource.h │ │ └── stdafx.h ├── NetSimple │ ├── Project Files │ │ ├── Client.cbp │ │ ├── Client.dev │ │ ├── Server.cbp │ │ └── Server.dev │ ├── Readme.txt │ └── src │ │ ├── Client.cpp │ │ └── Server.cpp ├── NewProject │ ├── ProjectFiles │ │ ├── NewProject.cbp │ │ ├── NewProject.cbproj │ │ ├── NewProject_2015.vcxproj │ │ ├── NewProject_2019.vcxproj │ │ ├── NewProject_2022.vcxproj │ │ ├── NewProject_DEBUG.dev │ │ └── NewProject_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── main.cpp │ │ └── stdafx.h ├── Notepad │ ├── ProjectFiles │ │ ├── Notepad.cbp │ │ ├── Notepad.cbproj │ │ ├── Notepad_2015.sln │ │ ├── Notepad_2015.vcxproj │ │ ├── Notepad_2015.vcxproj.filters │ │ ├── Notepad_2019.sln │ │ ├── Notepad_2019.vcxproj │ │ ├── Notepad_2019.vcxproj.filters │ │ ├── Notepad_2022.sln │ │ ├── Notepad_2022.vcxproj │ │ ├── Notepad_2022.vcxproj.filters │ │ ├── Notepad_DEBUG.dev │ │ └── Notepad_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── RichView.cpp │ │ ├── RichView.h │ │ ├── StdAfx.cpp │ │ ├── TextApp.cpp │ │ ├── TextApp.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Notepad.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── Performance │ ├── ProjectFiles │ │ ├── Performance.cbp │ │ ├── Performance.cbproj │ │ ├── Performance.dev │ │ ├── Performance_2015.sln │ │ ├── Performance_2015.vcxproj │ │ ├── Performance_2015.vcxproj.filters │ │ ├── Performance_2019.sln │ │ ├── Performance_2019.vcxproj │ │ ├── Performance_2019.vcxproj.filters │ │ ├── Performance_2022.sln │ │ ├── Performance_2022.vcxproj │ │ └── Performance_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── MainWnd.cpp │ │ ├── MainWnd.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── MyEdit.cpp │ │ ├── MyEdit.h │ │ ├── PerfApp.cpp │ │ ├── PerfApp.h │ │ ├── Performance.rc │ │ ├── StdAfx.cpp │ │ ├── TestWnd.cpp │ │ ├── TestWnd.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Speed.ico │ │ ├── resource.h │ │ └── stdafx.h ├── Picture │ ├── ProjectFiles │ │ ├── Picture.cbp │ │ ├── Picture.cbproj │ │ ├── Picture_2015.sln │ │ ├── Picture_2015.vcxproj │ │ ├── Picture_2015.vcxproj.filters │ │ ├── Picture_2019.sln │ │ ├── Picture_2019.vcxproj │ │ ├── Picture_2019.vcxproj.filters │ │ ├── Picture_2022.sln │ │ ├── Picture_2022.vcxproj │ │ ├── Picture_2022.vcxproj.filters │ │ ├── Picture_DEBUG.dev │ │ └── Picture_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── ImageView.cpp │ │ ├── ImageView.h │ │ ├── MainView.cpp │ │ ├── MainView.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── PictureApp.cpp │ │ ├── PictureApp.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ ├── Picture.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ └── Toolbar24_h.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── PropertySheet │ ├── ProjectFiles │ │ ├── PropertySheet.cbp │ │ ├── PropertySheet.cbproj │ │ ├── PropertySheet_2015.sln │ │ ├── PropertySheet_2015.vcxproj │ │ ├── PropertySheet_2015.vcxproj.filters │ │ ├── PropertySheet_2019.sln │ │ ├── PropertySheet_2019.vcxproj │ │ ├── PropertySheet_2019.vcxproj.filters │ │ ├── PropertySheet_2022.sln │ │ ├── PropertySheet_2022.vcxproj │ │ ├── PropertySheet_2022.vcxproj.filters │ │ ├── PropertySheet_DEBUG.dev │ │ └── PropertySheet_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyPropertySheet.cpp │ │ ├── MyPropertySheet.h │ │ ├── PropertySheetApp.cpp │ │ ├── PropertySheetApp.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Tab.ico │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── ReBarDemo │ ├── ProjectFiles │ │ ├── ReBarDemo.cbp │ │ ├── ReBarDemo.cbproj │ │ ├── ReBarDemo_2015.sln │ │ ├── ReBarDemo_2015.vcxproj │ │ ├── ReBarDemo_2015.vcxproj.filters │ │ ├── ReBarDemo_2019.sln │ │ ├── ReBarDemo_2019.vcxproj │ │ ├── ReBarDemo_2019.vcxproj.filters │ │ ├── ReBarDemo_2022.sln │ │ ├── ReBarDemo_2022.vcxproj │ │ ├── ReBarDemo_2022.vcxproj.filters │ │ ├── ReBarDemo_DEBUG.dev │ │ └── ReBarDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── ReBarApp.cpp │ │ ├── ReBarApp.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Bottom.ico │ │ ├── Left.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Right.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ ├── Win32xx.ico │ │ └── top.ico │ │ ├── resource.h │ │ └── stdafx.h ├── Ribbon │ ├── ProjectFiles │ │ ├── Ribbon_2015.sln │ │ ├── Ribbon_2015.vcxproj │ │ ├── Ribbon_2015.vcxproj.filters │ │ ├── Ribbon_2019.sln │ │ ├── Ribbon_2019.vcxproj │ │ ├── Ribbon_2019.vcxproj.filters │ │ ├── Ribbon_2022.sln │ │ ├── Ribbon_2022.vcxproj │ │ └── Ribbon_2022.vcxproj.filters │ ├── ReadMe.txt │ └── src │ │ ├── Resource.h │ │ ├── Resource.rc │ │ ├── Ribbon.xml │ │ ├── SimpleApp.cpp │ │ ├── SimpleApp.h │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── AddTableL.bmp │ │ ├── AddTableS.bmp │ │ ├── Button_Image.bmp │ │ ├── Copy.bmp │ │ ├── Cut.bmp │ │ ├── DeleteTableL.bmp │ │ ├── DeleteTableS.bmp │ │ ├── ExitL.bmp │ │ ├── Paste.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── PrintRelationshipsL.bmp │ │ ├── PrintRelationshipsS.bmp │ │ └── Ribbon.ico │ │ └── stdafx.h ├── RibbonDockFrame │ ├── ProjectFiles │ │ ├── RibbonDockFrame_2015.sln │ │ ├── RibbonDockFrame_2015.vcxproj │ │ ├── RibbonDockFrame_2015.vcxproj.filters │ │ ├── RibbonDockFrame_2019.sln │ │ ├── RibbonDockFrame_2019.vcxproj │ │ ├── RibbonDockFrame_2019.vcxproj.filters │ │ ├── RibbonDockFrame_2022.sln │ │ ├── RibbonDockFrame_2022.vcxproj │ │ └── RibbonDockFrame_2022.vcxproj.filters │ ├── ReadMe.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── Files.cpp │ │ ├── Files.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.h │ │ ├── Resource.rc │ │ ├── Ribbon.xml │ │ ├── RibbonApp.cpp │ │ ├── RibbonApp.h │ │ ├── StdAfx.cpp │ │ ├── UserMessages.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── CopyL.bmp │ │ ├── CopyS.bmp │ │ ├── Cursor.cur │ │ ├── CutS.bmp │ │ ├── ExitL.bmp │ │ ├── FileNewL.bmp │ │ ├── FileOpenL.bmp │ │ ├── FileSaveAsL.bmp │ │ ├── FileSaveL.bmp │ │ ├── HelpL.bmp │ │ ├── InfoL.bmp │ │ ├── LineColorL.bmp │ │ ├── PaintBrush.ico │ │ ├── PasteL.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── PrintL.bmp │ │ ├── SDbottom.bmp │ │ ├── SDcenter.bmp │ │ ├── SDleft.bmp │ │ ├── SDmiddle.bmp │ │ ├── SDright.bmp │ │ ├── SDtop.bmp │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Toolbar.bmp │ │ ├── classview.bmp │ │ ├── fileview.bmp │ │ └── fileview.ico │ │ └── stdafx.h ├── RibbonFrame │ ├── ProjectFiles │ │ ├── RibbonFrame_2015.sln │ │ ├── RibbonFrame_2015.vcxproj │ │ ├── RibbonFrame_2015.vcxproj.filters │ │ ├── RibbonFrame_2019.sln │ │ ├── RibbonFrame_2019.vcxproj │ │ ├── RibbonFrame_2019.vcxproj.filters │ │ ├── RibbonFrame_2022.sln │ │ ├── RibbonFrame_2022.vcxproj │ │ └── RibbonFrame_2022.vcxproj.filters │ ├── ReadMe.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.h │ │ ├── Resource.rc │ │ ├── Ribbon.xml │ │ ├── RibbonApp.cpp │ │ ├── RibbonApp.h │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── CopyL.bmp │ │ ├── CopyS.bmp │ │ ├── Cursor.cur │ │ ├── CutS.bmp │ │ ├── ExitL.bmp │ │ ├── FileNewL.bmp │ │ ├── FileOpenL.bmp │ │ ├── FileSaveAsL.bmp │ │ ├── FileSaveL.bmp │ │ ├── HelpL.bmp │ │ ├── InfoL.bmp │ │ ├── LineColorL.bmp │ │ ├── PaintBrush.ico │ │ ├── PasteL.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── PrintL.bmp │ │ └── Toolbar.bmp │ │ └── stdafx.h ├── RibbonMDIFrame │ ├── ProjectFiles │ │ ├── RibbonMDIFrame_2015.sln │ │ ├── RibbonMDIFrame_2015.vcxproj │ │ ├── RibbonMDIFrame_2015.vcxproj.filters │ │ ├── RibbonMDIFrame_2019.sln │ │ ├── RibbonMDIFrame_2019.vcxproj │ │ ├── RibbonMDIFrame_2019.vcxproj.filters │ │ ├── RibbonMDIFrame_2022.sln │ │ ├── RibbonMDIFrame_2022.vcxproj │ │ └── RibbonMDIFrame_2022.vcxproj.filters │ ├── ReadMe.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── MainMDIfrm.cpp │ │ ├── MainMDIfrm.h │ │ ├── Resource.h │ │ ├── Resource.rc │ │ ├── Ribbon.xml │ │ ├── RibbonApp.cpp │ │ ├── RibbonApp.h │ │ ├── SimpleMDIChild.cpp │ │ ├── SimpleMDIChild.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── CopyL.bmp │ │ ├── CopyS.bmp │ │ ├── CutS.bmp │ │ ├── ExitL.bmp │ │ ├── FileNewL.bmp │ │ ├── FileOpenL.bmp │ │ ├── FileSaveAsL.bmp │ │ ├── FileSaveL.bmp │ │ ├── HelpL.bmp │ │ ├── InfoL.bmp │ │ ├── LineColorL.bmp │ │ ├── MDIArrange.bmp │ │ ├── MDICascade.bmp │ │ ├── MDIClose.bmp │ │ ├── MDICloseL.bmp │ │ ├── MDIMax.bmp │ │ ├── MDIMaxL.bmp │ │ ├── MDIMin.bmp │ │ ├── MDIMinL.bmp │ │ ├── MDIRestore.bmp │ │ ├── MDIRestoreL.bmp │ │ ├── MDITile.bmp │ │ ├── PasteL.bmp │ │ ├── PrintL.bmp │ │ ├── SystemDPI.manifest │ │ ├── Toolbar.bmp │ │ ├── View.ico │ │ └── Win32xx.ico │ │ └── stdafx.h ├── RoundWindow │ ├── ProjectFiles │ │ ├── RoundWindow.cbp │ │ ├── RoundWindow.cbproj │ │ ├── RoundWindow_2015.sln │ │ ├── RoundWindow_2015.vcxproj │ │ ├── RoundWindow_2015.vcxproj.filters │ │ ├── RoundWindow_2019.sln │ │ ├── RoundWindow_2019.vcxproj │ │ ├── RoundWindow_2019.vcxproj.filters │ │ ├── RoundWindow_2022.sln │ │ ├── RoundWindow_2022.vcxproj │ │ ├── RoundWindow_2022.vcxproj.filters │ │ ├── RoundWindow_DEBUG.dev │ │ └── RoundWindow_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Resource.rc │ │ ├── RoundApp.cpp │ │ ├── RoundApp.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Round.ico │ │ └── resource.h ├── ScintillaDemo │ ├── DLLs │ │ ├── x64 │ │ │ └── Scintilla.dll │ │ └── x86 │ │ │ └── Scintilla.dll │ ├── ProjectFiles │ │ ├── ScintillaDemo.cbp │ │ ├── ScintillaDemo.cbproj │ │ ├── ScintillaDemo_2015.sln │ │ ├── ScintillaDemo_2015.vcxproj │ │ ├── ScintillaDemo_2015.vcxproj.filters │ │ ├── ScintillaDemo_2019.sln │ │ ├── ScintillaDemo_2019.vcxproj │ │ ├── ScintillaDemo_2019.vcxproj.filters │ │ ├── ScintillaDemo_2022.sln │ │ ├── ScintillaDemo_2022.vcxproj │ │ ├── ScintillaDemo_2022.vcxproj.filters │ │ ├── ScintillaDemo_DEBUG.dev │ │ └── ScintillaDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── Sci_Position.h │ │ ├── Scintilla.h │ │ ├── ScintillaApp.cpp │ │ ├── ScintillaApp.h │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Editor.ico │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ └── Toolbar.bmp │ │ ├── resource.h │ │ ├── scintillaview.cpp │ │ ├── scintillaview.h │ │ └── stdafx.h ├── Scribble │ ├── ProjectFiles │ │ ├── Scribble.cbp │ │ ├── Scribble.cbproj │ │ ├── Scribble_2015.sln │ │ ├── Scribble_2015.vcxproj │ │ ├── Scribble_2015.vcxproj.filters │ │ ├── Scribble_2019.sln │ │ ├── Scribble_2019.vcxproj │ │ ├── Scribble_2019.vcxproj.filters │ │ ├── Scribble_2022.sln │ │ ├── Scribble_2022.vcxproj │ │ ├── Scribble_2022.vcxproj.filters │ │ ├── Scribble_DEBUG.dev │ │ └── Scribble_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── ScribbleApp.cpp │ │ ├── ScribbleApp.h │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Cursor.cur │ │ ├── Paintbrush.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── Simple │ ├── ProjectFiles │ │ ├── Simple.cbp │ │ ├── Simple.cbproj │ │ ├── Simple_2015.sln │ │ ├── Simple_2015.vcxproj │ │ ├── Simple_2015.vcxproj.filters │ │ ├── Simple_2019.sln │ │ ├── Simple_2019.vcxproj │ │ ├── Simple_2019.vcxproj.filters │ │ ├── Simple_2022.sln │ │ ├── Simple_2022.vcxproj │ │ ├── Simple_2022.vcxproj.filters │ │ ├── Simple_DEBUG.dev │ │ └── Simple_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Resource.rc │ │ ├── SimpleApp.cpp │ │ ├── SimpleApp.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Simple.ico │ │ └── resource.h ├── Splitter │ ├── ProjectFiles │ │ ├── Splitter.cbp │ │ ├── Splitter.cbproj │ │ ├── Splitter_2015.sln │ │ ├── Splitter_2015.vcxproj │ │ ├── Splitter_2015.vcxproj.filters │ │ ├── Splitter_2019.sln │ │ ├── Splitter_2019.vcxproj │ │ ├── Splitter_2019.vcxproj.filters │ │ ├── Splitter_2022.sln │ │ ├── Splitter_2022.vcxproj │ │ ├── Splitter_2022.vcxproj.filters │ │ ├── Splitter_DEBUG.dev │ │ └── Splitter_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── SplitterApp.cpp │ │ ├── SplitterApp.h │ │ ├── SplitterPanes.cpp │ │ ├── SplitterPanes.h │ │ ├── StdAfx.cpp │ │ ├── Views.cpp │ │ ├── Views.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ ├── SplitH.cur │ │ ├── SplitV.cur │ │ ├── Toolbar24.bmp │ │ ├── Win32xx.ico │ │ ├── classview.bmp │ │ ├── fileview.bmp │ │ └── toolbar16.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── StatusBar │ ├── ProjectFiles │ │ ├── StatusBar.cbp │ │ ├── StatusBar.cbproj │ │ ├── StatusBar_2015.sln │ │ ├── StatusBar_2015.vcxproj │ │ ├── StatusBar_2015.vcxproj.filters │ │ ├── StatusBar_2019.sln │ │ ├── StatusBar_2019.vcxproj │ │ ├── StatusBar_2019.vcxproj.filters │ │ ├── StatusBar_2022.sln │ │ ├── StatusBar_2022.vcxproj │ │ ├── StatusBar_2022.vcxproj.filters │ │ ├── StatusBar_DEBUG.dev │ │ └── StatusBar_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Hyperlink.cpp │ │ ├── Hyperlink.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StatusBarApp.cpp │ │ ├── StatusBarApp.h │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── TabDemo │ ├── ProjectFiles │ │ ├── TabDemo.cbp │ │ ├── TabDemo.cbproj │ │ ├── TabDemo_2015.sln │ │ ├── TabDemo_2015.vcxproj │ │ ├── TabDemo_2015.vcxproj.filters │ │ ├── TabDemo_2019.sln │ │ ├── TabDemo_2019.vcxproj │ │ ├── TabDemo_2019.vcxproj.filters │ │ ├── TabDemo_2022.sln │ │ ├── TabDemo_2022.vcxproj │ │ ├── TabDemo_2022.vcxproj.filters │ │ ├── TabDemo_DEBUG.dev │ │ └── TabDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Classes.cpp │ │ ├── Classes.h │ │ ├── Files.cpp │ │ ├── Files.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── MyTab.cpp │ │ ├── MyTab.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── TabDemoApp.cpp │ │ ├── TabDemoApp.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Status.bmp │ │ ├── Tab.ico │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── classview.bmp │ │ ├── classview.ico │ │ ├── fileview.bmp │ │ └── fileview.ico │ │ ├── resource.h │ │ └── stdafx.h ├── TaskDialog │ ├── ProjectFiles │ │ ├── TaskDialog.cbp │ │ ├── TaskDialog.cbproj │ │ ├── TaskDialog_2015.sln │ │ ├── TaskDialog_2015.vcxproj │ │ ├── TaskDialog_2015.vcxproj.filters │ │ ├── TaskDialog_2019.sln │ │ ├── TaskDialog_2019.vcxproj │ │ ├── TaskDialog_2019.vcxproj.filters │ │ ├── TaskDialog_2022.sln │ │ ├── TaskDialog_2022.vcxproj │ │ └── TaskDialog_2022.vcxproj.filters │ ├── ReadMe.txt │ └── src │ │ ├── MyTaskDialog.cpp │ │ ├── MyTaskDialog.h │ │ ├── StdAfx.cpp │ │ ├── TaskDialog.rc │ │ ├── TaskDialogApp.cpp │ │ ├── TaskDialogApp.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── TestDLL │ ├── ProjectFiles │ │ ├── TestDLL.cbp │ │ ├── TestDLL_2015.sln │ │ ├── TestDLL_2015.vcxproj │ │ ├── TestDLL_2015.vcxproj.filters │ │ ├── TestDLL_2019.sln │ │ ├── TestDLL_2019.vcxproj │ │ ├── TestDLL_2019.vcxproj.filters │ │ ├── TestDLL_2022.sln │ │ ├── TestDLL_2022.vcxproj │ │ ├── TestDLL_2022.vcxproj.filters │ │ ├── TestDLL_DEBUG.dev │ │ └── TestDLL_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── ResourceTest.rc │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── TestApp.cpp │ │ ├── TestApp.h │ │ ├── TestWindow.cpp │ │ ├── TestWindow.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Simple.ico │ │ └── Zapotec.bmp │ │ └── resource.h ├── TextFileReader │ ├── Docs │ │ ├── Ansi.txt │ │ ├── Unicode.txt │ │ ├── Unicode_UCS-2BE.TXT │ │ ├── Unicode_UCS-2LE.TXT │ │ └── utf8test.xml │ ├── ProjectFiles │ │ ├── TextFileReader.cbp │ │ ├── TextFileReader.cbproj │ │ ├── TextFileReader_2015.sln │ │ ├── TextFileReader_2015.vcxproj │ │ ├── TextFileReader_2015.vcxproj.filters │ │ ├── TextFileReader_2019.sln │ │ ├── TextFileReader_2019.vcxproj │ │ ├── TextFileReader_2019.vcxproj.filters │ │ ├── TextFileReader_2022.sln │ │ ├── TextFileReader_2022.vcxproj │ │ ├── TextFileReader_2022.vcxproj.filters │ │ ├── TextFileReader_DEBUG.dev │ │ └── TextFileReader_RELEASE.dev │ ├── Readme.txt │ ├── ScollBarsCriteria.pdf │ └── src │ │ ├── AboutBox.cpp │ │ ├── AboutBox.h │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── FontEx.cpp │ │ ├── FontEx.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── StdApp.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Dialog.ico │ │ ├── SystemDPI.manifest │ │ ├── Toolbar16.bmp │ │ ├── Toolbar24.bmp │ │ ├── crayonL.bmp │ │ ├── crayonS.bmp │ │ ├── fontsL.bmp │ │ ├── fontsS.bmp │ │ └── preview.ico │ │ ├── resource.h │ │ └── stdafx.h ├── Themes │ ├── ProjectFiles │ │ ├── Themes.cbp │ │ ├── Themes.cbproj │ │ ├── Themes_2015.sln │ │ ├── Themes_2015.vcxproj │ │ ├── Themes_2015.vcxproj.filters │ │ ├── Themes_2019.sln │ │ ├── Themes_2019.vcxproj │ │ ├── Themes_2019.vcxproj.filters │ │ ├── Themes_2022.sln │ │ ├── Themes_2022.vcxproj │ │ ├── Themes_2022.vcxproj.filters │ │ ├── Themes_DEBUG.dev │ │ └── Themes_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── MyCombo.cpp │ │ ├── MyCombo.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── ThemesApp.cpp │ │ ├── ThemesApp.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Arrows.bmp │ │ ├── Cards.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Status.bmp │ │ ├── Themes.ico │ │ ├── Toolbar16_n.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ └── Toolbar24_n.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── Threads │ ├── ProjectFiles │ │ ├── Threads.cbp │ │ ├── Threads.cbproj │ │ ├── Threads.dev │ │ ├── Threads_2015.sln │ │ ├── Threads_2015.vcxproj │ │ ├── Threads_2015.vcxproj.filters │ │ ├── Threads_2019.sln │ │ ├── Threads_2019.vcxproj │ │ ├── Threads_2019.vcxproj.filters │ │ ├── Threads_2022.sln │ │ ├── Threads_2022.vcxproj │ │ └── Threads_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── MainWnd.cpp │ │ ├── MainWnd.h │ │ ├── MyEdit.cpp │ │ ├── MyEdit.h │ │ ├── MyThread.cpp │ │ ├── MyThread.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── TestWnd.cpp │ │ ├── TestWnd.h │ │ ├── ThreadApp.cpp │ │ ├── ThreadApp.h │ │ ├── UserMessages.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Threads.ico │ │ ├── resource.h │ │ └── stdafx.h ├── TimeDemo │ ├── ProjectFiles │ │ ├── TimeDemo.cbp │ │ ├── TimeDemo.cbproj │ │ ├── TimeDemo_2015.sln │ │ ├── TimeDemo_2015.vcxproj │ │ ├── TimeDemo_2015.vcxproj.filters │ │ ├── TimeDemo_2019.sln │ │ ├── TimeDemo_2019.vcxproj │ │ ├── TimeDemo_2019.vcxproj.filters │ │ ├── TimeDemo_2022.sln │ │ ├── TimeDemo_2022.vcxproj │ │ ├── TimeDemo_2022.vcxproj.filters │ │ ├── TimeDemo_DEBUG.dev │ │ └── TimeDemo_RELEASE.dev │ ├── ReadMe.txt │ └── src │ │ ├── AboutBox.cpp │ │ ├── AboutBox.h │ │ ├── App.cpp │ │ ├── App.h │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── SystemDPI.manifest │ │ ├── Time.ico │ │ ├── Toolbar16.bmp │ │ └── Toolbar24.bmp │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── Titlebar │ ├── ProjectFiles │ │ ├── Titlebar_2019.sln │ │ ├── Titlebar_2019.vcxproj │ │ ├── Titlebar_2019.vcxproj.filters │ │ ├── Titlebar_2022.sln │ │ ├── Titlebar_2022.vcxproj │ │ └── Titlebar_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── App.cpp │ │ ├── App.h │ │ ├── LICENSE │ │ ├── MiniFrame.cpp │ │ ├── MiniFrame.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Bulb.ico │ │ └── PerMonitorV2.manifest │ │ ├── resource.h │ │ └── stdafx.h ├── TitlebarFrame │ ├── ProjectFiles │ │ ├── TitlebarFrame_2019.sln │ │ ├── TitlebarFrame_2019.vcxproj │ │ ├── TitlebarFrame_2019.vcxproj.filters │ │ ├── TitlebarFrame_2022.sln │ │ ├── TitlebarFrame_2022.vcxproj │ │ └── TitlebarFrame_2022.vcxproj.filters │ ├── Readme.txt │ └── src │ │ ├── Doc.cpp │ │ ├── Doc.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── LICENSE │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── ToolBarDemo │ ├── ProjectFiles │ │ ├── ToolBarDemo.cbp │ │ ├── ToolBarDemo.cbproj │ │ ├── ToolBarDemo_2015.sln │ │ ├── ToolBarDemo_2015.vcxproj │ │ ├── ToolBarDemo_2015.vcxproj.filters │ │ ├── ToolBarDemo_2019.sln │ │ ├── ToolBarDemo_2019.vcxproj │ │ ├── ToolBarDemo_2019.vcxproj.filters │ │ ├── ToolBarDemo_2022.sln │ │ ├── ToolBarDemo_2022.vcxproj │ │ ├── ToolBarDemo_2022.vcxproj.filters │ │ ├── ToolBarDemo_DEBUG.dev │ │ └── ToolBarDemo_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── Arrows.bmp │ │ ├── Bottom.ico │ │ ├── Cards.bmp │ │ ├── Left.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Right.ico │ │ ├── SmallArrows.bmp │ │ ├── SmallCards.bmp │ │ ├── Toolbar.bmp │ │ ├── Toolbar24.bmp │ │ ├── Toolbar24_d.bmp │ │ ├── Toolbar24_h.bmp │ │ ├── Win32xx.ico │ │ └── top.ico │ │ ├── resource.h │ │ └── stdafx.h ├── ToolTips │ ├── ProjectFiles │ │ ├── Tooltips.cbp │ │ ├── Tooltips.cbproj │ │ ├── Tooltips_2015.sln │ │ ├── Tooltips_2015.vcxproj │ │ ├── Tooltips_2015.vcxproj.filters │ │ ├── Tooltips_2019.sln │ │ ├── Tooltips_2019.vcxproj │ │ ├── Tooltips_2019.vcxproj.filters │ │ ├── Tooltips_2022.sln │ │ ├── Tooltips_2022.vcxproj │ │ ├── Tooltips_2022.vcxproj.filters │ │ ├── Tooltips_DEBUG.dev │ │ └── Tooltips_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── DialogApp.cpp │ │ ├── DialogApp.h │ │ ├── MyDialog.cpp │ │ ├── MyDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── main.cpp │ │ ├── res │ │ ├── Info.ico │ │ ├── PerMonitorV2.manifest │ │ ├── Tooltip.ico │ │ └── Zapotec.bmp │ │ ├── resource.h │ │ └── stdafx.h ├── ToolbarBuilder │ ├── Bitmaps │ │ ├── 16bit Bitmaps │ │ │ ├── Internet_24.bmp │ │ │ ├── NewToolbar32.bmp │ │ │ ├── NewToolbar64.bmp │ │ │ ├── Toolbar16.bmp │ │ │ ├── Toolbar24.bmp │ │ │ ├── Toolbar32.bmp │ │ │ ├── Toolbar48.bmp │ │ │ └── Toolbar64.bmp │ │ ├── 24bit Bitmaps │ │ │ ├── Internet24.bmp │ │ │ ├── NewToolbar128.bmp │ │ │ ├── NewToolbar16.bmp │ │ │ ├── NewToolbar24.bmp │ │ │ ├── NewToolbar32..bmp │ │ │ ├── NewToolbar48.bmp │ │ │ ├── NewToolbar64.bmp │ │ │ ├── Toolbar16.bmp │ │ │ ├── Toolbar24.bmp │ │ │ ├── Toolbar32.bmp │ │ │ ├── Toolbar48.bmp │ │ │ ├── Toolbar64.bmp │ │ │ ├── ToolbarX16.bmp │ │ │ └── ToolbarX24.bmp │ │ ├── 32bit Bitmaps │ │ │ ├── Toolbar_16.bmp │ │ │ ├── Toolbar_24.bmp │ │ │ ├── Toolbar_32.bmp │ │ │ ├── Toolbar_48.bmp │ │ │ └── Toolbar_64.bmp │ │ ├── 4bit Bitmaps │ │ │ ├── Toolbar1.bmp │ │ │ ├── Toolbar2.bmp │ │ │ └── toolbar3.bmp │ │ └── 8bit Bitmaps │ │ │ ├── MenuIcons.bmp │ │ │ ├── Toolbar24_d.bmp │ │ │ ├── Toolbar24_h.bmp │ │ │ ├── Toolbar24_n.bmp │ │ │ ├── Toolbar32.bmp │ │ │ ├── Toolbar48.bmp │ │ │ └── Toolbar64.bmp │ ├── Images │ │ ├── About.png │ │ ├── Copy.png │ │ ├── Cut.png │ │ ├── New.png │ │ ├── Open.png │ │ ├── Paste.png │ │ ├── Preview.png │ │ ├── Print.png │ │ └── Save.png │ ├── ProjectFiles │ │ ├── ToolbarBuilder.cbp │ │ ├── ToolbarBuilder_2015.sln │ │ ├── ToolbarBuilder_2015.vcxproj │ │ ├── ToolbarBuilder_2015.vcxproj.filters │ │ ├── ToolbarBuilder_2019.sln │ │ ├── ToolbarBuilder_2019.vcxproj │ │ ├── ToolbarBuilder_2019.vcxproj.filters │ │ ├── ToolbarBuilder_2022.sln │ │ ├── ToolbarBuilder_2022.vcxproj │ │ ├── ToolbarBuilder_2022.vcxproj.filters │ │ ├── ToolbarBuilder_DEBUG.dev │ │ └── ToolbarBuilder_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── AboutDialog.h │ │ ├── FrameApp.cpp │ │ ├── FrameApp.h │ │ ├── Mainfrm.cpp │ │ ├── Mainfrm.h │ │ ├── NewDialog.cpp │ │ ├── NewDialog.h │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── MenuIcons.bmp │ │ ├── PerMonitorV2.manifest │ │ ├── Toolbar.bmp │ │ ├── Toolbar_32.bmp │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h ├── Tray │ ├── ProjectFiles │ │ ├── Tray.cbp │ │ ├── Tray.cbproj │ │ ├── Tray_2015.sln │ │ ├── Tray_2015.vcxproj │ │ ├── Tray_2015.vcxproj.filters │ │ ├── Tray_2019.sln │ │ ├── Tray_2019.vcxproj │ │ ├── Tray_2019.vcxproj.filters │ │ ├── Tray_2022.sln │ │ ├── Tray_2022.vcxproj │ │ ├── Tray_2022.vcxproj.filters │ │ ├── Tray_DEBUG.dev │ │ └── Tray_RELEASE.dev │ ├── Readme.txt │ └── src │ │ ├── Resource.rc │ │ ├── StdAfx.cpp │ │ ├── TrayApp.cpp │ │ ├── TrayApp.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── main.cpp │ │ ├── res │ │ ├── PerMonitorV2.manifest │ │ └── Win32xx.ico │ │ ├── resource.h │ │ └── stdafx.h └── WinPlot │ ├── ProjectFiles │ ├── WinPlot.cbp │ ├── WinPlot.cbproj │ ├── WinPlot_2015.sln │ ├── WinPlot_2015.vcxproj │ ├── WinPlot_2015.vcxproj.filters │ ├── WinPlot_2019.sln │ ├── WinPlot_2019.vcxproj │ ├── WinPlot_2019.vcxproj.filters │ ├── WinPlot_2022.sln │ ├── WinPlot_2022.vcxproj │ ├── WinPlot_2022.vcxproj.filters │ ├── WinPlot_DEBUG.dev │ └── WinPlot_RELEASE.dev │ ├── Readme.txt │ └── src │ ├── Calc.cpp │ ├── Calc.h │ ├── FrameApp.cpp │ ├── FrameApp.h │ ├── InputDlg.cpp │ ├── InputDlg.h │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Node.cpp │ ├── Node.h │ ├── Resource.rc │ ├── StdAfx.cpp │ ├── Table.cpp │ ├── Table.h │ ├── View.cpp │ ├── View.h │ ├── enums.h │ ├── main.cpp │ ├── res │ ├── PerMonitorV2.manifest │ ├── Plot.ico │ ├── Toolbar16.bmp │ └── Toolbar24.bmp │ ├── resource.h │ └── stdafx.h ├── tools ├── CleanSamples.bat ├── CleanTutorials.bat ├── Compile All.bat ├── Compile C++ Builder.bat ├── Compile CodeBlocks.bat ├── Compile VS2015 Community.bat ├── Compile VS2019 Community.bat └── Compile VS2022 Community.bat └── tutorials ├── Readme.txt ├── Tutorial1 ├── ProjectFiles │ ├── Tutorial1.cbp │ ├── Tutorial1.dev │ ├── Tutorial1_2015.sln │ ├── Tutorial1_2015.vcxproj │ ├── Tutorial1_2015.vcxproj.filters │ ├── Tutorial1_2019.sln │ ├── Tutorial1_2019.vcxproj │ ├── Tutorial1_2019.vcxproj.filters │ ├── Tutorial1_2022.sln │ ├── Tutorial1_2022.vcxproj │ └── Tutorial1_2022.vcxproj.filters ├── Readme.txt └── src │ └── main.cpp ├── Tutorial10 ├── ProjectFiles │ ├── Tutorial10.cbp │ ├── Tutorial10.dev │ ├── Tutorial10_2015.sln │ ├── Tutorial10_2015.vcxproj │ ├── Tutorial10_2015.vcxproj.filters │ ├── Tutorial10_2019.sln │ ├── Tutorial10_2019.vcxproj │ ├── Tutorial10_2019.vcxproj.filters │ ├── Tutorial10_2022.sln │ ├── Tutorial10_2022.vcxproj │ └── Tutorial10_2022.vcxproj.filters ├── Readme.txt └── src │ ├── Doc.cpp │ ├── Doc.h │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Resource.rc │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── res │ ├── Cursor.cur │ ├── Paintbrush.ico │ ├── PerMonitorV2.manifest │ └── Toolbar24.bmp │ └── resource.h ├── Tutorial11 ├── ProjectFiles │ ├── Tutorial11.cbp │ ├── Tutorial11.dev │ ├── Tutorial11_2015.sln │ ├── Tutorial11_2015.vcxproj │ ├── Tutorial11_2015.vcxproj.filters │ ├── Tutorial11_2019.sln │ ├── Tutorial11_2019.vcxproj │ ├── Tutorial11_2019.vcxproj.filters │ ├── Tutorial11_2022.sln │ ├── Tutorial11_2022.vcxproj │ └── Tutorial11_2022.vcxproj.filters ├── Readme.txt └── src │ ├── Doc.cpp │ ├── Doc.h │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Resource.rc │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── StdAfx.cpp │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── res │ ├── Cursor.cur │ ├── Paintbrush.ico │ ├── PerMonitorV2.manifest │ ├── Toolbar16.bmp │ └── Toolbar24.bmp │ ├── resource.h │ └── stdafx.h ├── Tutorial2 ├── ProjectFiles │ ├── Tutorial2.cbp │ ├── Tutorial2.dev │ ├── Tutorial2_2015.sln │ ├── Tutorial2_2015.vcxproj │ ├── Tutorial2_2015.vcxproj.filters │ ├── Tutorial2_2019.sln │ ├── Tutorial2_2019.vcxproj │ ├── Tutorial2_2019.vcxproj.filters │ ├── Tutorial2_2022.sln │ ├── Tutorial2_2022.vcxproj │ └── Tutorial2_2022.vcxproj.filters ├── Readme.txt └── src │ └── main.cpp ├── Tutorial3 ├── ProjectFiles │ ├── Tutorial3.cbp │ ├── Tutorial3.dev │ ├── Tutorial3_2015.sln │ ├── Tutorial3_2015.vcxproj │ ├── Tutorial3_2015.vcxproj.filters │ ├── Tutorial3_2019.sln │ ├── Tutorial3_2019.vcxproj │ ├── Tutorial3_2019.vcxproj.filters │ ├── Tutorial3_2022.sln │ ├── Tutorial3_2022.vcxproj │ └── Tutorial3_2022.vcxproj.filters ├── Readme.txt └── src │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ └── main.cpp ├── Tutorial4 ├── ProjectFiles │ ├── Tutorial4.cbp │ ├── Tutorial4.dev │ ├── Tutorial4_2015.sln │ ├── Tutorial4_2015.vcxproj │ ├── Tutorial4_2015.vcxproj.filters │ ├── Tutorial4_2019.sln │ ├── Tutorial4_2019.vcxproj │ ├── Tutorial4_2019.vcxproj.filters │ ├── Tutorial4_2022.sln │ ├── Tutorial4_2022.vcxproj │ └── Tutorial4_2022.vcxproj.filters ├── Readme.txt └── src │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ └── main.cpp ├── Tutorial5 ├── ProjectFiles │ ├── Tutorial5.cbp │ ├── Tutorial5.dev │ ├── Tutorial5_2015.sln │ ├── Tutorial5_2015.vcxproj │ ├── Tutorial5_2015.vcxproj.filters │ ├── Tutorial5_2019.sln │ ├── Tutorial5_2019.vcxproj │ ├── Tutorial5_2019.vcxproj.filters │ ├── Tutorial5_2022.sln │ ├── Tutorial5_2022.vcxproj │ └── Tutorial5_2022.vcxproj.filters ├── Readme.txt └── src │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Resource.rc │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── res │ ├── Paintbrush.ico │ └── PerMonitorV2.manifest │ └── resource.h ├── Tutorial6 ├── ProjectFiles │ ├── Tutorial6.cbp │ ├── Tutorial6.dev │ ├── Tutorial6_2015.sln │ ├── Tutorial6_2015.vcxproj │ ├── Tutorial6_2015.vcxproj.filters │ ├── Tutorial6_2019.sln │ ├── Tutorial6_2019.vcxproj │ ├── Tutorial6_2019.vcxproj.filters │ ├── Tutorial6_2022.sln │ ├── Tutorial6_2022.vcxproj │ └── Tutorial6_2022.vcxproj.filters ├── Readme.txt └── src │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Resource.rc │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── res │ ├── Cursor.cur │ ├── Paintbrush.ico │ └── PerMonitorV2.manifest │ └── resource.h ├── Tutorial7 ├── ProjectFiles │ ├── Tutorial7.cbp │ ├── Tutorial7.dev │ ├── Tutorial7_2015.sln │ ├── Tutorial7_2015.vcxproj │ ├── Tutorial7_2015.vcxproj.filters │ ├── Tutorial7_2019.sln │ ├── Tutorial7_2019.vcxproj │ ├── Tutorial7_2019.vcxproj.filters │ ├── Tutorial7_2022.sln │ ├── Tutorial7_2022.vcxproj │ └── Tutorial7_2022.vcxproj.filters ├── Readme.txt └── src │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Resource.rc │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── res │ ├── Cursor.cur │ ├── Paintbrush.ico │ ├── PerMonitorV2.manifest │ └── Toolbar24.bmp │ └── resource.h ├── Tutorial8 ├── ProjectFiles │ ├── Tutorial8.cbp │ ├── Tutorial8.dev │ ├── Tutorial8_2015.sln │ ├── Tutorial8_2015.vcxproj │ ├── Tutorial8_2015.vcxproj.filters │ ├── Tutorial8_2019.sln │ ├── Tutorial8_2019.vcxproj │ ├── Tutorial8_2019.vcxproj.filters │ ├── Tutorial8_2022.sln │ ├── Tutorial8_2022.vcxproj │ └── Tutorial8_2022.vcxproj.filters ├── Readme.txt └── src │ ├── Doc.cpp │ ├── Doc.h │ ├── Mainfrm.cpp │ ├── Mainfrm.h │ ├── Resource.rc │ ├── ScribbleApp.cpp │ ├── ScribbleApp.h │ ├── View.cpp │ ├── View.h │ ├── main.cpp │ ├── res │ ├── Cursor.cur │ ├── Paintbrush.ico │ ├── PerMonitorV2.manifest │ └── Toolbar24.bmp │ └── resource.h └── Tutorial9 ├── ProjectFiles ├── Tutorial9.cbp ├── Tutorial9.dev ├── Tutorial9_2015.sln ├── Tutorial9_2015.vcxproj ├── Tutorial9_2015.vcxproj.filters ├── Tutorial9_2019.sln ├── Tutorial9_2019.vcxproj ├── Tutorial9_2019.vcxproj.filters ├── Tutorial9_2022.sln ├── Tutorial9_2022.vcxproj └── Tutorial9_2022.vcxproj.filters ├── Readme.txt └── src ├── Doc.cpp ├── Doc.h ├── Mainfrm.cpp ├── Mainfrm.h ├── Resource.rc ├── ScribbleApp.cpp ├── ScribbleApp.h ├── View.cpp ├── View.h ├── main.cpp ├── res ├── Cursor.cur ├── Paintbrush.ico ├── PerMonitorV2.manifest └── Toolbar24.bmp └── resource.h /About these folders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/About these folders.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/README.md -------------------------------------------------------------------------------- /help/Readme.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/help/Readme.TXT -------------------------------------------------------------------------------- /help/Win32++.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/help/Win32++.chm -------------------------------------------------------------------------------- /include/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/changes.txt -------------------------------------------------------------------------------- /include/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/copyright.txt -------------------------------------------------------------------------------- /include/default_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/default_resource.h -------------------------------------------------------------------------------- /include/default_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/default_resource.rc -------------------------------------------------------------------------------- /include/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/info.txt -------------------------------------------------------------------------------- /include/release notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/release notes.txt -------------------------------------------------------------------------------- /include/wxx_appcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_appcore.h -------------------------------------------------------------------------------- /include/wxx_appcore0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_appcore0.h -------------------------------------------------------------------------------- /include/wxx_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_archive.h -------------------------------------------------------------------------------- /include/wxx_commondlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_commondlg.h -------------------------------------------------------------------------------- /include/wxx_controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_controls.h -------------------------------------------------------------------------------- /include/wxx_criticalsection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_criticalsection.h -------------------------------------------------------------------------------- /include/wxx_cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_cstring.h -------------------------------------------------------------------------------- /include/wxx_ddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_ddx.h -------------------------------------------------------------------------------- /include/wxx_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_dialog.h -------------------------------------------------------------------------------- /include/wxx_dockframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_dockframe.h -------------------------------------------------------------------------------- /include/wxx_docking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_docking.h -------------------------------------------------------------------------------- /include/wxx_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_exception.h -------------------------------------------------------------------------------- /include/wxx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_file.h -------------------------------------------------------------------------------- /include/wxx_filefind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_filefind.h -------------------------------------------------------------------------------- /include/wxx_folderdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_folderdialog.h -------------------------------------------------------------------------------- /include/wxx_folderdialogex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_folderdialogex.h -------------------------------------------------------------------------------- /include/wxx_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_frame.h -------------------------------------------------------------------------------- /include/wxx_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_gdi.h -------------------------------------------------------------------------------- /include/wxx_hglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_hglobal.h -------------------------------------------------------------------------------- /include/wxx_imagelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_imagelist.h -------------------------------------------------------------------------------- /include/wxx_listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_listview.h -------------------------------------------------------------------------------- /include/wxx_mdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_mdi.h -------------------------------------------------------------------------------- /include/wxx_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_menu.h -------------------------------------------------------------------------------- /include/wxx_menubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_menubar.h -------------------------------------------------------------------------------- /include/wxx_menumetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_menumetrics.h -------------------------------------------------------------------------------- /include/wxx_messagepump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_messagepump.h -------------------------------------------------------------------------------- /include/wxx_messagepump0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_messagepump0.h -------------------------------------------------------------------------------- /include/wxx_metafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_metafile.h -------------------------------------------------------------------------------- /include/wxx_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_mutex.h -------------------------------------------------------------------------------- /include/wxx_preview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_preview.h -------------------------------------------------------------------------------- /include/wxx_printdialogex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_printdialogex.h -------------------------------------------------------------------------------- /include/wxx_printdialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_printdialogs.h -------------------------------------------------------------------------------- /include/wxx_propertysheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_propertysheet.h -------------------------------------------------------------------------------- /include/wxx_rebar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_rebar.h -------------------------------------------------------------------------------- /include/wxx_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_rect.h -------------------------------------------------------------------------------- /include/wxx_regkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_regkey.h -------------------------------------------------------------------------------- /include/wxx_ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_ribbon.h -------------------------------------------------------------------------------- /include/wxx_richedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_richedit.h -------------------------------------------------------------------------------- /include/wxx_scrollview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_scrollview.h -------------------------------------------------------------------------------- /include/wxx_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_setup.h -------------------------------------------------------------------------------- /include/wxx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_socket.h -------------------------------------------------------------------------------- /include/wxx_statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_statusbar.h -------------------------------------------------------------------------------- /include/wxx_stdcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_stdcontrols.h -------------------------------------------------------------------------------- /include/wxx_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_tab.h -------------------------------------------------------------------------------- /include/wxx_taskdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_taskdialog.h -------------------------------------------------------------------------------- /include/wxx_textconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_textconv.h -------------------------------------------------------------------------------- /include/wxx_themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_themes.h -------------------------------------------------------------------------------- /include/wxx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_thread.h -------------------------------------------------------------------------------- /include/wxx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_time.h -------------------------------------------------------------------------------- /include/wxx_toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_toolbar.h -------------------------------------------------------------------------------- /include/wxx_treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_treeview.h -------------------------------------------------------------------------------- /include/wxx_webbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_webbrowser.h -------------------------------------------------------------------------------- /include/wxx_wincore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_wincore.h -------------------------------------------------------------------------------- /include/wxx_wincore0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/include/wxx_wincore0.h -------------------------------------------------------------------------------- /samples/Animation/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/Readme.txt -------------------------------------------------------------------------------- /samples/Animation/src/DialogApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/DialogApp.cpp -------------------------------------------------------------------------------- /samples/Animation/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/DialogApp.h -------------------------------------------------------------------------------- /samples/Animation/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/Animation/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/MyDialog.h -------------------------------------------------------------------------------- /samples/Animation/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/Resource.rc -------------------------------------------------------------------------------- /samples/Animation/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Animation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/main.cpp -------------------------------------------------------------------------------- /samples/Animation/src/res/Play.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/res/Play.ico -------------------------------------------------------------------------------- /samples/Animation/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/resource.h -------------------------------------------------------------------------------- /samples/Animation/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Animation/src/stdafx.h -------------------------------------------------------------------------------- /samples/Browser/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/Readme.txt -------------------------------------------------------------------------------- /samples/Browser/src/BrowserApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/BrowserApp.cpp -------------------------------------------------------------------------------- /samples/Browser/src/BrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/BrowserApp.h -------------------------------------------------------------------------------- /samples/Browser/src/EventSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/EventSink.cpp -------------------------------------------------------------------------------- /samples/Browser/src/EventSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/EventSink.h -------------------------------------------------------------------------------- /samples/Browser/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Browser/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Browser/src/MyCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/MyCombo.cpp -------------------------------------------------------------------------------- /samples/Browser/src/MyCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/MyCombo.h -------------------------------------------------------------------------------- /samples/Browser/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/Resource.rc -------------------------------------------------------------------------------- /samples/Browser/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Browser/src/UserMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/UserMessages.h -------------------------------------------------------------------------------- /samples/Browser/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/main.cpp -------------------------------------------------------------------------------- /samples/Browser/src/res/Globe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/res/Globe.ico -------------------------------------------------------------------------------- /samples/Browser/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/resource.h -------------------------------------------------------------------------------- /samples/Browser/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Browser/src/stdafx.h -------------------------------------------------------------------------------- /samples/BrowserATL/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/Readme.txt -------------------------------------------------------------------------------- /samples/BrowserATL/src/BrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/BrowserApp.h -------------------------------------------------------------------------------- /samples/BrowserATL/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/BrowserATL/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/BrowserATL/src/MyCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/MyCombo.cpp -------------------------------------------------------------------------------- /samples/BrowserATL/src/MyCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/MyCombo.h -------------------------------------------------------------------------------- /samples/BrowserATL/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/Resource.rc -------------------------------------------------------------------------------- /samples/BrowserATL/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/BrowserATL/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/View.cpp -------------------------------------------------------------------------------- /samples/BrowserATL/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/View.h -------------------------------------------------------------------------------- /samples/BrowserATL/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/main.cpp -------------------------------------------------------------------------------- /samples/BrowserATL/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/resource.h -------------------------------------------------------------------------------- /samples/BrowserATL/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/BrowserATL/src/stdafx.h -------------------------------------------------------------------------------- /samples/CommonDialogs/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/Readme.txt -------------------------------------------------------------------------------- /samples/CommonDialogs/src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/App.cpp -------------------------------------------------------------------------------- /samples/CommonDialogs/src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/App.h -------------------------------------------------------------------------------- /samples/CommonDialogs/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/Doc.cpp -------------------------------------------------------------------------------- /samples/CommonDialogs/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/Doc.h -------------------------------------------------------------------------------- /samples/CommonDialogs/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/CommonDialogs/src/StdApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/StdApp.h -------------------------------------------------------------------------------- /samples/CommonDialogs/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/View.cpp -------------------------------------------------------------------------------- /samples/CommonDialogs/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/View.h -------------------------------------------------------------------------------- /samples/CommonDialogs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/main.cpp -------------------------------------------------------------------------------- /samples/CommonDialogs/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CommonDialogs/src/stdafx.h -------------------------------------------------------------------------------- /samples/Console/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Console/Readme.txt -------------------------------------------------------------------------------- /samples/Console/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Console/src/main.cpp -------------------------------------------------------------------------------- /samples/Console/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Console/src/stdafx.h -------------------------------------------------------------------------------- /samples/ContextHelp/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/Readme.txt -------------------------------------------------------------------------------- /samples/ContextHelp/help/Index.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/help/Index.hhk -------------------------------------------------------------------------------- /samples/ContextHelp/help/toc.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/help/toc.hhc -------------------------------------------------------------------------------- /samples/ContextHelp/src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/App.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/App.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/AppHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/AppHelp.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/AppHelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/AppHelp.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/Doc.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/Doc.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/HelpAbout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/HelpAbout.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/Resource.rc -------------------------------------------------------------------------------- /samples/ContextHelp/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/View.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/View.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/main.cpp -------------------------------------------------------------------------------- /samples/ContextHelp/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/resource.h -------------------------------------------------------------------------------- /samples/ContextHelp/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ContextHelp/src/stdafx.h -------------------------------------------------------------------------------- /samples/CustomControl/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CustomControl/Readme.txt -------------------------------------------------------------------------------- /samples/CustomControl/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CustomControl/src/main.cpp -------------------------------------------------------------------------------- /samples/CustomControl/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CustomControl/src/stdafx.h -------------------------------------------------------------------------------- /samples/CustomPrintDlg/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CustomPrintDlg/Readme.txt -------------------------------------------------------------------------------- /samples/CustomPrintDlg/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CustomPrintDlg/src/main.cpp -------------------------------------------------------------------------------- /samples/CustomPrintDlg/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/CustomPrintDlg/src/stdafx.h -------------------------------------------------------------------------------- /samples/DDXDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/Readme.txt -------------------------------------------------------------------------------- /samples/DDXDemo/src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/App.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/App.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/Doc.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/Doc.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/MyButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/MyButton.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/MyButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/MyButton.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/MyScrollbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/MyScrollbar.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/MyScrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/MyScrollbar.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/Resource.rc -------------------------------------------------------------------------------- /samples/DDXDemo/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/View.cpp -------------------------------------------------------------------------------- /samples/DDXDemo/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/View.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/res/Form.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/res/Form.ico -------------------------------------------------------------------------------- /samples/DDXDemo/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/resource.h -------------------------------------------------------------------------------- /samples/DDXDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DDXDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/DarkModeFrame/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/Readme.txt -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/Doc.cpp -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/Doc.h -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/View.cpp -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/View.h -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/main.cpp -------------------------------------------------------------------------------- /samples/DarkModeFrame/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DarkModeFrame/src/stdafx.h -------------------------------------------------------------------------------- /samples/DateTime/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/Readme.txt -------------------------------------------------------------------------------- /samples/DateTime/src/DialogApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/DialogApp.cpp -------------------------------------------------------------------------------- /samples/DateTime/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/DialogApp.h -------------------------------------------------------------------------------- /samples/DateTime/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/DateTime/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/MyDialog.h -------------------------------------------------------------------------------- /samples/DateTime/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/Resource.rc -------------------------------------------------------------------------------- /samples/DateTime/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DateTime/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/main.cpp -------------------------------------------------------------------------------- /samples/DateTime/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/resource.h -------------------------------------------------------------------------------- /samples/DateTime/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DateTime/src/stdafx.h -------------------------------------------------------------------------------- /samples/Dialog/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/Readme.txt -------------------------------------------------------------------------------- /samples/Dialog/src/DialogApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/DialogApp.cpp -------------------------------------------------------------------------------- /samples/Dialog/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/DialogApp.h -------------------------------------------------------------------------------- /samples/Dialog/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/Dialog/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/MyDialog.h -------------------------------------------------------------------------------- /samples/Dialog/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/Resource.rc -------------------------------------------------------------------------------- /samples/Dialog/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Dialog/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/main.cpp -------------------------------------------------------------------------------- /samples/Dialog/src/res/Dialog.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/res/Dialog.ico -------------------------------------------------------------------------------- /samples/Dialog/src/res/Zapotec.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/res/Zapotec.bmp -------------------------------------------------------------------------------- /samples/Dialog/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/resource.h -------------------------------------------------------------------------------- /samples/Dialog/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dialog/src/stdafx.h -------------------------------------------------------------------------------- /samples/DialogBars/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/Readme.txt -------------------------------------------------------------------------------- /samples/DialogBars/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/DialogApp.h -------------------------------------------------------------------------------- /samples/DialogBars/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/DialogBars/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/MyDialog.h -------------------------------------------------------------------------------- /samples/DialogBars/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/Resource.rc -------------------------------------------------------------------------------- /samples/DialogBars/src/Scrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/Scrollbar.h -------------------------------------------------------------------------------- /samples/DialogBars/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DialogBars/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/main.cpp -------------------------------------------------------------------------------- /samples/DialogBars/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/resource.h -------------------------------------------------------------------------------- /samples/DialogBars/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogBars/src/stdafx.h -------------------------------------------------------------------------------- /samples/DialogDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/Readme.txt -------------------------------------------------------------------------------- /samples/DialogDemo/src/Hyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/Hyperlink.h -------------------------------------------------------------------------------- /samples/DialogDemo/src/MyButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/MyButton.cpp -------------------------------------------------------------------------------- /samples/DialogDemo/src/MyButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/MyButton.h -------------------------------------------------------------------------------- /samples/DialogDemo/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/DialogDemo/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/MyDialog.h -------------------------------------------------------------------------------- /samples/DialogDemo/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/Resource.rc -------------------------------------------------------------------------------- /samples/DialogDemo/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DialogDemo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/main.cpp -------------------------------------------------------------------------------- /samples/DialogDemo/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/resource.h -------------------------------------------------------------------------------- /samples/DialogDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/DialogResizing/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogResizing/Readme.txt -------------------------------------------------------------------------------- /samples/DialogResizing/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogResizing/src/main.cpp -------------------------------------------------------------------------------- /samples/DialogResizing/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogResizing/src/stdafx.h -------------------------------------------------------------------------------- /samples/DialogTab/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/Readme.txt -------------------------------------------------------------------------------- /samples/DialogTab/src/DialogApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/DialogApp.cpp -------------------------------------------------------------------------------- /samples/DialogTab/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/DialogApp.h -------------------------------------------------------------------------------- /samples/DialogTab/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/DialogTab/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/MyDialog.h -------------------------------------------------------------------------------- /samples/DialogTab/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/Resource.rc -------------------------------------------------------------------------------- /samples/DialogTab/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DialogTab/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/main.cpp -------------------------------------------------------------------------------- /samples/DialogTab/src/res/Tab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/res/Tab.ico -------------------------------------------------------------------------------- /samples/DialogTab/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/resource.h -------------------------------------------------------------------------------- /samples/DialogTab/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTab/src/stdafx.h -------------------------------------------------------------------------------- /samples/DialogTemplate/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTemplate/Readme.txt -------------------------------------------------------------------------------- /samples/DialogTemplate/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTemplate/src/main.cpp -------------------------------------------------------------------------------- /samples/DialogTemplate/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DialogTemplate/src/stdafx.h -------------------------------------------------------------------------------- /samples/Direct2D/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/Readme.txt -------------------------------------------------------------------------------- /samples/Direct2D/src/D2DApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/D2DApp.cpp -------------------------------------------------------------------------------- /samples/Direct2D/src/D2DApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/D2DApp.h -------------------------------------------------------------------------------- /samples/Direct2D/src/D2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/D2DView.cpp -------------------------------------------------------------------------------- /samples/Direct2D/src/D2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/D2DView.h -------------------------------------------------------------------------------- /samples/Direct2D/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/Resource.rc -------------------------------------------------------------------------------- /samples/Direct2D/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Direct2D/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/main.cpp -------------------------------------------------------------------------------- /samples/Direct2D/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/resource.h -------------------------------------------------------------------------------- /samples/Direct2D/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Direct2D/src/stdafx.h -------------------------------------------------------------------------------- /samples/DirectX11/ProjectFiles/DirectX11_PS.hlsl: -------------------------------------------------------------------------------- 1 | #include "DirectX11.fx" 2 | -------------------------------------------------------------------------------- /samples/DirectX11/ProjectFiles/DirectX11_VS.hlsl: -------------------------------------------------------------------------------- 1 | #include "DirectX11.fx" 2 | -------------------------------------------------------------------------------- /samples/DirectX11/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/Readme.txt -------------------------------------------------------------------------------- /samples/DirectX11/src/DXApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/DXApp.cpp -------------------------------------------------------------------------------- /samples/DirectX11/src/DXApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/DXApp.h -------------------------------------------------------------------------------- /samples/DirectX11/src/DXView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/DXView.cpp -------------------------------------------------------------------------------- /samples/DirectX11/src/DXView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/DXView.h -------------------------------------------------------------------------------- /samples/DirectX11/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/Resource.rc -------------------------------------------------------------------------------- /samples/DirectX11/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/main.cpp -------------------------------------------------------------------------------- /samples/DirectX11/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX11/src/resource.h -------------------------------------------------------------------------------- /samples/DirectX9/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/Readme.txt -------------------------------------------------------------------------------- /samples/DirectX9/src/DXApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/DXApp.cpp -------------------------------------------------------------------------------- /samples/DirectX9/src/DXApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/DXApp.h -------------------------------------------------------------------------------- /samples/DirectX9/src/DXThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/DXThread.cpp -------------------------------------------------------------------------------- /samples/DirectX9/src/DXThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/DXThread.h -------------------------------------------------------------------------------- /samples/DirectX9/src/DXView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/DXView.cpp -------------------------------------------------------------------------------- /samples/DirectX9/src/DXView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/DXView.h -------------------------------------------------------------------------------- /samples/DirectX9/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/DirectX9/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/DirectX9/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/Resource.rc -------------------------------------------------------------------------------- /samples/DirectX9/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DirectX9/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/main.cpp -------------------------------------------------------------------------------- /samples/DirectX9/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/resource.h -------------------------------------------------------------------------------- /samples/DirectX9/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DirectX9/src/stdafx.h -------------------------------------------------------------------------------- /samples/Dock/ProjectFiles/Dock.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/ProjectFiles/Dock.cbp -------------------------------------------------------------------------------- /samples/Dock/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/Readme.txt -------------------------------------------------------------------------------- /samples/Dock/src/Dockers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Dockers.cpp -------------------------------------------------------------------------------- /samples/Dock/src/Dockers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Dockers.h -------------------------------------------------------------------------------- /samples/Dock/src/DockingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/DockingApp.cpp -------------------------------------------------------------------------------- /samples/Dock/src/DockingApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/DockingApp.h -------------------------------------------------------------------------------- /samples/Dock/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Dock/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Dock/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Resource.rc -------------------------------------------------------------------------------- /samples/Dock/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Dock/src/Views.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Views.cpp -------------------------------------------------------------------------------- /samples/Dock/src/Views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/Views.h -------------------------------------------------------------------------------- /samples/Dock/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/main.cpp -------------------------------------------------------------------------------- /samples/Dock/src/res/Docking.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/Docking.ico -------------------------------------------------------------------------------- /samples/Dock/src/res/SDbottom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SDbottom.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/SDcenter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SDcenter.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/SDleft.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SDleft.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/SDmiddle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SDmiddle.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/SDright.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SDright.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/SDtop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SDtop.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/SplitH.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SplitH.cur -------------------------------------------------------------------------------- /samples/Dock/src/res/SplitV.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/SplitV.cur -------------------------------------------------------------------------------- /samples/Dock/src/res/Toolbar16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/Toolbar16.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/Toolbar24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/Toolbar24.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/View.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/View.ico -------------------------------------------------------------------------------- /samples/Dock/src/res/classview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/classview.bmp -------------------------------------------------------------------------------- /samples/Dock/src/res/fileview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/res/fileview.bmp -------------------------------------------------------------------------------- /samples/Dock/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/resource.h -------------------------------------------------------------------------------- /samples/Dock/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Dock/src/stdafx.h -------------------------------------------------------------------------------- /samples/DockContainer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/Readme.txt -------------------------------------------------------------------------------- /samples/DockContainer/src/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Classes.h -------------------------------------------------------------------------------- /samples/DockContainer/src/Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Files.cpp -------------------------------------------------------------------------------- /samples/DockContainer/src/Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Files.h -------------------------------------------------------------------------------- /samples/DockContainer/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/DockContainer/src/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Output.h -------------------------------------------------------------------------------- /samples/DockContainer/src/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Text.cpp -------------------------------------------------------------------------------- /samples/DockContainer/src/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/Text.h -------------------------------------------------------------------------------- /samples/DockContainer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/main.cpp -------------------------------------------------------------------------------- /samples/DockContainer/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockContainer/src/stdafx.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/Readme.txt -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Browser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Browser.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Classes.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Files.cpp -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Files.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Output.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Rect.cpp -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Rect.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Text.cpp -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/Text.h -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/main.cpp -------------------------------------------------------------------------------- /samples/DockTabbedMDI/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DockTabbedMDI/src/stdafx.h -------------------------------------------------------------------------------- /samples/DoubleBuffer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/Readme.txt -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/View.cpp -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/View.h -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/main.cpp -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/resource.h -------------------------------------------------------------------------------- /samples/DoubleBuffer/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/DoubleBuffer/src/stdafx.h -------------------------------------------------------------------------------- /samples/EdgeBrowser/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/Readme.txt -------------------------------------------------------------------------------- /samples/EdgeBrowser/src/EdgeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/src/EdgeView.h -------------------------------------------------------------------------------- /samples/EdgeBrowser/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/src/Resource.rc -------------------------------------------------------------------------------- /samples/EdgeBrowser/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/EdgeBrowser/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/src/main.cpp -------------------------------------------------------------------------------- /samples/EdgeBrowser/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/src/resource.h -------------------------------------------------------------------------------- /samples/EdgeBrowser/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowser/src/stdafx.h -------------------------------------------------------------------------------- /samples/EdgeBrowserEx/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowserEx/Readme.txt -------------------------------------------------------------------------------- /samples/EdgeBrowserEx/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowserEx/src/LICENSE -------------------------------------------------------------------------------- /samples/EdgeBrowserEx/src/Tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowserEx/src/Tab.cpp -------------------------------------------------------------------------------- /samples/EdgeBrowserEx/src/Tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/EdgeBrowserEx/src/Tab.h -------------------------------------------------------------------------------- /samples/EdgeBrowserEx/src/wvbrowser_ui/controls_ui/default.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | height: 70px; 3 | } 4 | -------------------------------------------------------------------------------- /samples/Explorer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/Readme.txt -------------------------------------------------------------------------------- /samples/Explorer/src/LeftPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/LeftPane.cpp -------------------------------------------------------------------------------- /samples/Explorer/src/LeftPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/LeftPane.h -------------------------------------------------------------------------------- /samples/Explorer/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Explorer/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Explorer/src/MyListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/MyListView.h -------------------------------------------------------------------------------- /samples/Explorer/src/MyTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/MyTreeView.h -------------------------------------------------------------------------------- /samples/Explorer/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/Resource.rc -------------------------------------------------------------------------------- /samples/Explorer/src/RightPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/RightPane.h -------------------------------------------------------------------------------- /samples/Explorer/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Explorer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/main.cpp -------------------------------------------------------------------------------- /samples/Explorer/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/resource.h -------------------------------------------------------------------------------- /samples/Explorer/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Explorer/src/stdafx.h -------------------------------------------------------------------------------- /samples/FastGDI/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/Readme.txt -------------------------------------------------------------------------------- /samples/FastGDI/src/FastGDIApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/FastGDIApp.h -------------------------------------------------------------------------------- /samples/FastGDI/src/ImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/ImageView.cpp -------------------------------------------------------------------------------- /samples/FastGDI/src/ImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/ImageView.h -------------------------------------------------------------------------------- /samples/FastGDI/src/MainView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/MainView.cpp -------------------------------------------------------------------------------- /samples/FastGDI/src/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/MainView.h -------------------------------------------------------------------------------- /samples/FastGDI/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/FastGDI/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/FastGDI/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/FastGDI/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/main.cpp -------------------------------------------------------------------------------- /samples/FastGDI/src/res/Color.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/res/Color.ico -------------------------------------------------------------------------------- /samples/FastGDI/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/resource.h -------------------------------------------------------------------------------- /samples/FastGDI/src/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/resource.rc -------------------------------------------------------------------------------- /samples/FastGDI/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FastGDI/src/stdafx.h -------------------------------------------------------------------------------- /samples/FormDocView/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FormDocView/Readme.txt -------------------------------------------------------------------------------- /samples/FormDocView/src/FormApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FormDocView/src/FormApp.h -------------------------------------------------------------------------------- /samples/FormDocView/src/FormDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FormDocView/src/FormDoc.h -------------------------------------------------------------------------------- /samples/FormDocView/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FormDocView/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/FormDocView/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FormDocView/src/main.cpp -------------------------------------------------------------------------------- /samples/FormDocView/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FormDocView/src/stdafx.h -------------------------------------------------------------------------------- /samples/Frame/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/Readme.txt -------------------------------------------------------------------------------- /samples/Frame/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/Doc.cpp -------------------------------------------------------------------------------- /samples/Frame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/Doc.h -------------------------------------------------------------------------------- /samples/Frame/src/FrameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/FrameApp.cpp -------------------------------------------------------------------------------- /samples/Frame/src/FrameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/FrameApp.h -------------------------------------------------------------------------------- /samples/Frame/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Frame/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Frame/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/Resource.rc -------------------------------------------------------------------------------- /samples/Frame/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Frame/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/View.cpp -------------------------------------------------------------------------------- /samples/Frame/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/View.h -------------------------------------------------------------------------------- /samples/Frame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/main.cpp -------------------------------------------------------------------------------- /samples/Frame/src/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/res/Toolbar.bmp -------------------------------------------------------------------------------- /samples/Frame/src/res/Win32xx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/res/Win32xx.ico -------------------------------------------------------------------------------- /samples/Frame/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/resource.h -------------------------------------------------------------------------------- /samples/Frame/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Frame/src/stdafx.h -------------------------------------------------------------------------------- /samples/FrameEx/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/Readme.txt -------------------------------------------------------------------------------- /samples/FrameEx/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/Doc.cpp -------------------------------------------------------------------------------- /samples/FrameEx/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/Doc.h -------------------------------------------------------------------------------- /samples/FrameEx/src/FrameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/FrameApp.cpp -------------------------------------------------------------------------------- /samples/FrameEx/src/FrameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/FrameApp.h -------------------------------------------------------------------------------- /samples/FrameEx/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/FrameEx/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/FrameEx/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/Resource.rc -------------------------------------------------------------------------------- /samples/FrameEx/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/FrameEx/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/View.cpp -------------------------------------------------------------------------------- /samples/FrameEx/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/View.h -------------------------------------------------------------------------------- /samples/FrameEx/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/main.cpp -------------------------------------------------------------------------------- /samples/FrameEx/src/res/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/About.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/Copy.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/Cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/Cut.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/New.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/Open.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/Paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/Paste.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/Print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/Print.png -------------------------------------------------------------------------------- /samples/FrameEx/src/res/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/res/Save.png -------------------------------------------------------------------------------- /samples/FrameEx/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/resource.h -------------------------------------------------------------------------------- /samples/FrameEx/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/FrameEx/src/stdafx.h -------------------------------------------------------------------------------- /samples/GDIPlus/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/Readme.txt -------------------------------------------------------------------------------- /samples/GDIPlus/src/FrameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/FrameApp.cpp -------------------------------------------------------------------------------- /samples/GDIPlus/src/FrameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/FrameApp.h -------------------------------------------------------------------------------- /samples/GDIPlus/src/GDIPlusView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/GDIPlusView.h -------------------------------------------------------------------------------- /samples/GDIPlus/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/GDIPlus/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/GDIPlus/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/Resource.rc -------------------------------------------------------------------------------- /samples/GDIPlus/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/GDIPlus/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/main.cpp -------------------------------------------------------------------------------- /samples/GDIPlus/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/resource.h -------------------------------------------------------------------------------- /samples/GDIPlus/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/GDIPlus/src/stdafx.h -------------------------------------------------------------------------------- /samples/IFileDialog/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/IFileDialog/readme.txt -------------------------------------------------------------------------------- /samples/IFileDialog/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/IFileDialog/src/main.cpp -------------------------------------------------------------------------------- /samples/IFileDialog/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/IFileDialog/src/stdafx.h -------------------------------------------------------------------------------- /samples/INIFrame/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/Readme.txt -------------------------------------------------------------------------------- /samples/INIFrame/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/Doc.cpp -------------------------------------------------------------------------------- /samples/INIFrame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/Doc.h -------------------------------------------------------------------------------- /samples/INIFrame/src/FrameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/FrameApp.cpp -------------------------------------------------------------------------------- /samples/INIFrame/src/FrameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/FrameApp.h -------------------------------------------------------------------------------- /samples/INIFrame/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/INIFrame/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/INIFrame/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/Resource.rc -------------------------------------------------------------------------------- /samples/INIFrame/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/INIFrame/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/View.cpp -------------------------------------------------------------------------------- /samples/INIFrame/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/View.h -------------------------------------------------------------------------------- /samples/INIFrame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/main.cpp -------------------------------------------------------------------------------- /samples/INIFrame/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/resource.h -------------------------------------------------------------------------------- /samples/INIFrame/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/INIFrame/src/stdafx.h -------------------------------------------------------------------------------- /samples/ListView/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/Readme.txt -------------------------------------------------------------------------------- /samples/ListView/src/Edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/Edit.cpp -------------------------------------------------------------------------------- /samples/ListView/src/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/Edit.h -------------------------------------------------------------------------------- /samples/ListView/src/FrameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/FrameApp.cpp -------------------------------------------------------------------------------- /samples/ListView/src/FrameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/FrameApp.h -------------------------------------------------------------------------------- /samples/ListView/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/ListView/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/ListView/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/Resource.rc -------------------------------------------------------------------------------- /samples/ListView/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/ListView/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/View.cpp -------------------------------------------------------------------------------- /samples/ListView/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/View.h -------------------------------------------------------------------------------- /samples/ListView/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/main.cpp -------------------------------------------------------------------------------- /samples/ListView/src/res/list.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/res/list.ico -------------------------------------------------------------------------------- /samples/ListView/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/resource.h -------------------------------------------------------------------------------- /samples/ListView/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ListView/src/stdafx.h -------------------------------------------------------------------------------- /samples/MDIDockFrame/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIDockFrame/Readme.txt -------------------------------------------------------------------------------- /samples/MDIDockFrame/src/Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIDockFrame/src/Files.h -------------------------------------------------------------------------------- /samples/MDIDockFrame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIDockFrame/src/main.cpp -------------------------------------------------------------------------------- /samples/MDIDockFrame/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIDockFrame/src/stdafx.h -------------------------------------------------------------------------------- /samples/MDIFrame/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/Readme.txt -------------------------------------------------------------------------------- /samples/MDIFrame/src/MainMDIfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/MainMDIfrm.h -------------------------------------------------------------------------------- /samples/MDIFrame/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/Resource.rc -------------------------------------------------------------------------------- /samples/MDIFrame/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/MDIFrame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/main.cpp -------------------------------------------------------------------------------- /samples/MDIFrame/src/res/MDI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/res/MDI.ico -------------------------------------------------------------------------------- /samples/MDIFrame/src/res/Max.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/res/Max.ico -------------------------------------------------------------------------------- /samples/MDIFrame/src/res/Rect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/res/Rect.ico -------------------------------------------------------------------------------- /samples/MDIFrame/src/res/View.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/res/View.ico -------------------------------------------------------------------------------- /samples/MDIFrame/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/resource.h -------------------------------------------------------------------------------- /samples/MDIFrame/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrame/src/stdafx.h -------------------------------------------------------------------------------- /samples/MDIFrameDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrameDemo/Readme.txt -------------------------------------------------------------------------------- /samples/MDIFrameDemo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrameDemo/src/main.cpp -------------------------------------------------------------------------------- /samples/MDIFrameDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MDIFrameDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/MakeDLL/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/Readme.txt -------------------------------------------------------------------------------- /samples/MakeDLL/src/MakeDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/MakeDLL.cpp -------------------------------------------------------------------------------- /samples/MakeDLL/src/MakeDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/MakeDLL.h -------------------------------------------------------------------------------- /samples/MakeDLL/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/MakeDLL/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/MyDialog.h -------------------------------------------------------------------------------- /samples/MakeDLL/src/MyWinThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/MyWinThread.h -------------------------------------------------------------------------------- /samples/MakeDLL/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/MakeDLL/src/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/StdAfx.h -------------------------------------------------------------------------------- /samples/MakeDLL/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MakeDLL/src/resource.h -------------------------------------------------------------------------------- /samples/MetaFile/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MetaFile/Readme.txt -------------------------------------------------------------------------------- /samples/MetaFile/src/MetaView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MetaFile/src/MetaView.cpp -------------------------------------------------------------------------------- /samples/MetaFile/src/MetaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MetaFile/src/MetaView.h -------------------------------------------------------------------------------- /samples/MetaFile/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MetaFile/src/Resource.rc -------------------------------------------------------------------------------- /samples/MetaFile/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MetaFile/src/main.cpp -------------------------------------------------------------------------------- /samples/MetaFile/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MetaFile/src/resource.h -------------------------------------------------------------------------------- /samples/MovieShow/DLLs/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/DLLs/Readme.txt -------------------------------------------------------------------------------- /samples/MovieShow/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/Readme.txt -------------------------------------------------------------------------------- /samples/MovieShow/src/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/List.cpp -------------------------------------------------------------------------------- /samples/MovieShow/src/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/List.h -------------------------------------------------------------------------------- /samples/MovieShow/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/MovieShow/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/MovieShow/src/MovieInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/MovieInfo.h -------------------------------------------------------------------------------- /samples/MovieShow/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/MyDialog.h -------------------------------------------------------------------------------- /samples/MovieShow/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Resource.rc -------------------------------------------------------------------------------- /samples/MovieShow/src/Splash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Splash.cpp -------------------------------------------------------------------------------- /samples/MovieShow/src/Splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Splash.h -------------------------------------------------------------------------------- /samples/MovieShow/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/MovieShow/src/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Tree.cpp -------------------------------------------------------------------------------- /samples/MovieShow/src/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/Tree.h -------------------------------------------------------------------------------- /samples/MovieShow/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/main.cpp -------------------------------------------------------------------------------- /samples/MovieShow/src/res/eye.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/res/eye.ico -------------------------------------------------------------------------------- /samples/MovieShow/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/resource.h -------------------------------------------------------------------------------- /samples/MovieShow/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/MovieShow/src/stdafx.h -------------------------------------------------------------------------------- /samples/NetClient/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/Readme.txt -------------------------------------------------------------------------------- /samples/NetClient/src/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/Client.cpp -------------------------------------------------------------------------------- /samples/NetClient/src/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/Client.h -------------------------------------------------------------------------------- /samples/NetClient/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/DialogApp.h -------------------------------------------------------------------------------- /samples/NetClient/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/Resource.rc -------------------------------------------------------------------------------- /samples/NetClient/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/NetClient/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/main.cpp -------------------------------------------------------------------------------- /samples/NetClient/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/resource.h -------------------------------------------------------------------------------- /samples/NetClient/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetClient/src/stdafx.h -------------------------------------------------------------------------------- /samples/NetServer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/Readme.txt -------------------------------------------------------------------------------- /samples/NetServer/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/DialogApp.h -------------------------------------------------------------------------------- /samples/NetServer/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/Resource.rc -------------------------------------------------------------------------------- /samples/NetServer/src/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/Server.cpp -------------------------------------------------------------------------------- /samples/NetServer/src/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/Server.h -------------------------------------------------------------------------------- /samples/NetServer/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/NetServer/src/SvrDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/SvrDialog.h -------------------------------------------------------------------------------- /samples/NetServer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/main.cpp -------------------------------------------------------------------------------- /samples/NetServer/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/resource.h -------------------------------------------------------------------------------- /samples/NetServer/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetServer/src/stdafx.h -------------------------------------------------------------------------------- /samples/NetSimple/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetSimple/Readme.txt -------------------------------------------------------------------------------- /samples/NetSimple/src/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetSimple/src/Client.cpp -------------------------------------------------------------------------------- /samples/NetSimple/src/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NetSimple/src/Server.cpp -------------------------------------------------------------------------------- /samples/NewProject/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NewProject/Readme.txt -------------------------------------------------------------------------------- /samples/NewProject/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NewProject/src/main.cpp -------------------------------------------------------------------------------- /samples/NewProject/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/NewProject/src/stdafx.h -------------------------------------------------------------------------------- /samples/Notepad/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/Readme.txt -------------------------------------------------------------------------------- /samples/Notepad/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Notepad/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Notepad/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/Resource.rc -------------------------------------------------------------------------------- /samples/Notepad/src/RichView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/RichView.cpp -------------------------------------------------------------------------------- /samples/Notepad/src/RichView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/RichView.h -------------------------------------------------------------------------------- /samples/Notepad/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Notepad/src/TextApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/TextApp.cpp -------------------------------------------------------------------------------- /samples/Notepad/src/TextApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/TextApp.h -------------------------------------------------------------------------------- /samples/Notepad/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/main.cpp -------------------------------------------------------------------------------- /samples/Notepad/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/resource.h -------------------------------------------------------------------------------- /samples/Notepad/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Notepad/src/stdafx.h -------------------------------------------------------------------------------- /samples/Performance/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/Readme.txt -------------------------------------------------------------------------------- /samples/Performance/src/MainWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/src/MainWnd.h -------------------------------------------------------------------------------- /samples/Performance/src/MyEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/src/MyEdit.h -------------------------------------------------------------------------------- /samples/Performance/src/PerfApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/src/PerfApp.h -------------------------------------------------------------------------------- /samples/Performance/src/TestWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/src/TestWnd.h -------------------------------------------------------------------------------- /samples/Performance/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/src/main.cpp -------------------------------------------------------------------------------- /samples/Performance/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Performance/src/stdafx.h -------------------------------------------------------------------------------- /samples/Picture/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/Readme.txt -------------------------------------------------------------------------------- /samples/Picture/src/ImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/ImageView.cpp -------------------------------------------------------------------------------- /samples/Picture/src/ImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/ImageView.h -------------------------------------------------------------------------------- /samples/Picture/src/MainView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/MainView.cpp -------------------------------------------------------------------------------- /samples/Picture/src/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/MainView.h -------------------------------------------------------------------------------- /samples/Picture/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Picture/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Picture/src/PictureApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/PictureApp.h -------------------------------------------------------------------------------- /samples/Picture/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/Resource.rc -------------------------------------------------------------------------------- /samples/Picture/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Picture/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/main.cpp -------------------------------------------------------------------------------- /samples/Picture/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/resource.h -------------------------------------------------------------------------------- /samples/Picture/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Picture/src/stdafx.h -------------------------------------------------------------------------------- /samples/PropertySheet/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/PropertySheet/Readme.txt -------------------------------------------------------------------------------- /samples/PropertySheet/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/PropertySheet/src/View.h -------------------------------------------------------------------------------- /samples/ReBarDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/Readme.txt -------------------------------------------------------------------------------- /samples/ReBarDemo/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/ReBarDemo/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/ReBarDemo/src/ReBarApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/ReBarApp.h -------------------------------------------------------------------------------- /samples/ReBarDemo/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/Resource.rc -------------------------------------------------------------------------------- /samples/ReBarDemo/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/ReBarDemo/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/View.cpp -------------------------------------------------------------------------------- /samples/ReBarDemo/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/View.h -------------------------------------------------------------------------------- /samples/ReBarDemo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/main.cpp -------------------------------------------------------------------------------- /samples/ReBarDemo/src/res/top.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/res/top.ico -------------------------------------------------------------------------------- /samples/ReBarDemo/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/resource.h -------------------------------------------------------------------------------- /samples/ReBarDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ReBarDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/Ribbon/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/ReadMe.txt -------------------------------------------------------------------------------- /samples/Ribbon/src/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/Resource.h -------------------------------------------------------------------------------- /samples/Ribbon/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/Resource.rc -------------------------------------------------------------------------------- /samples/Ribbon/src/Ribbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/Ribbon.xml -------------------------------------------------------------------------------- /samples/Ribbon/src/SimpleApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/SimpleApp.cpp -------------------------------------------------------------------------------- /samples/Ribbon/src/SimpleApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/SimpleApp.h -------------------------------------------------------------------------------- /samples/Ribbon/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Ribbon/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/View.cpp -------------------------------------------------------------------------------- /samples/Ribbon/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/View.h -------------------------------------------------------------------------------- /samples/Ribbon/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/main.cpp -------------------------------------------------------------------------------- /samples/Ribbon/src/res/Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/res/Copy.bmp -------------------------------------------------------------------------------- /samples/Ribbon/src/res/Cut.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/res/Cut.bmp -------------------------------------------------------------------------------- /samples/Ribbon/src/res/ExitL.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/res/ExitL.bmp -------------------------------------------------------------------------------- /samples/Ribbon/src/res/Paste.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/res/Paste.bmp -------------------------------------------------------------------------------- /samples/Ribbon/src/res/Ribbon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/res/Ribbon.ico -------------------------------------------------------------------------------- /samples/Ribbon/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Ribbon/src/stdafx.h -------------------------------------------------------------------------------- /samples/RibbonDockFrame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonDockFrame/src/Doc.h -------------------------------------------------------------------------------- /samples/RibbonFrame/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/ReadMe.txt -------------------------------------------------------------------------------- /samples/RibbonFrame/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/Doc.cpp -------------------------------------------------------------------------------- /samples/RibbonFrame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/Doc.h -------------------------------------------------------------------------------- /samples/RibbonFrame/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/RibbonFrame/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/View.cpp -------------------------------------------------------------------------------- /samples/RibbonFrame/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/View.h -------------------------------------------------------------------------------- /samples/RibbonFrame/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/main.cpp -------------------------------------------------------------------------------- /samples/RibbonFrame/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonFrame/src/stdafx.h -------------------------------------------------------------------------------- /samples/RibbonMDIFrame/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonMDIFrame/ReadMe.txt -------------------------------------------------------------------------------- /samples/RibbonMDIFrame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RibbonMDIFrame/src/Doc.h -------------------------------------------------------------------------------- /samples/RoundWindow/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RoundWindow/Readme.txt -------------------------------------------------------------------------------- /samples/RoundWindow/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RoundWindow/src/View.cpp -------------------------------------------------------------------------------- /samples/RoundWindow/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RoundWindow/src/View.h -------------------------------------------------------------------------------- /samples/RoundWindow/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/RoundWindow/src/main.cpp -------------------------------------------------------------------------------- /samples/ScintillaDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ScintillaDemo/Readme.txt -------------------------------------------------------------------------------- /samples/Scribble/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/Readme.txt -------------------------------------------------------------------------------- /samples/Scribble/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/Doc.cpp -------------------------------------------------------------------------------- /samples/Scribble/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/Doc.h -------------------------------------------------------------------------------- /samples/Scribble/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Scribble/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Scribble/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/Resource.rc -------------------------------------------------------------------------------- /samples/Scribble/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Scribble/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/View.cpp -------------------------------------------------------------------------------- /samples/Scribble/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/View.h -------------------------------------------------------------------------------- /samples/Scribble/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/main.cpp -------------------------------------------------------------------------------- /samples/Scribble/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/resource.h -------------------------------------------------------------------------------- /samples/Scribble/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Scribble/src/stdafx.h -------------------------------------------------------------------------------- /samples/Simple/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/Readme.txt -------------------------------------------------------------------------------- /samples/Simple/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/Resource.rc -------------------------------------------------------------------------------- /samples/Simple/src/SimpleApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/SimpleApp.cpp -------------------------------------------------------------------------------- /samples/Simple/src/SimpleApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/SimpleApp.h -------------------------------------------------------------------------------- /samples/Simple/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/View.cpp -------------------------------------------------------------------------------- /samples/Simple/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/View.h -------------------------------------------------------------------------------- /samples/Simple/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/main.cpp -------------------------------------------------------------------------------- /samples/Simple/src/res/Simple.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/res/Simple.ico -------------------------------------------------------------------------------- /samples/Simple/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Simple/src/resource.h -------------------------------------------------------------------------------- /samples/Splitter/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/Readme.txt -------------------------------------------------------------------------------- /samples/Splitter/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Splitter/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Splitter/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/Resource.rc -------------------------------------------------------------------------------- /samples/Splitter/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Splitter/src/Views.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/Views.cpp -------------------------------------------------------------------------------- /samples/Splitter/src/Views.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/Views.h -------------------------------------------------------------------------------- /samples/Splitter/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/main.cpp -------------------------------------------------------------------------------- /samples/Splitter/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/resource.h -------------------------------------------------------------------------------- /samples/Splitter/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Splitter/src/stdafx.h -------------------------------------------------------------------------------- /samples/StatusBar/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/Readme.txt -------------------------------------------------------------------------------- /samples/StatusBar/src/Hyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/Hyperlink.h -------------------------------------------------------------------------------- /samples/StatusBar/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/StatusBar/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/StatusBar/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/Resource.rc -------------------------------------------------------------------------------- /samples/StatusBar/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/StatusBar/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/View.cpp -------------------------------------------------------------------------------- /samples/StatusBar/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/View.h -------------------------------------------------------------------------------- /samples/StatusBar/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/main.cpp -------------------------------------------------------------------------------- /samples/StatusBar/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/resource.h -------------------------------------------------------------------------------- /samples/StatusBar/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/StatusBar/src/stdafx.h -------------------------------------------------------------------------------- /samples/TabDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/Readme.txt -------------------------------------------------------------------------------- /samples/TabDemo/src/Classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Classes.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Classes.h -------------------------------------------------------------------------------- /samples/TabDemo/src/Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Files.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/Files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Files.h -------------------------------------------------------------------------------- /samples/TabDemo/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/TabDemo/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/MyDialog.h -------------------------------------------------------------------------------- /samples/TabDemo/src/MyTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/MyTab.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/MyTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/MyTab.h -------------------------------------------------------------------------------- /samples/TabDemo/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/Resource.rc -------------------------------------------------------------------------------- /samples/TabDemo/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/TabDemoApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/TabDemoApp.h -------------------------------------------------------------------------------- /samples/TabDemo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/main.cpp -------------------------------------------------------------------------------- /samples/TabDemo/src/res/Tab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/res/Tab.ico -------------------------------------------------------------------------------- /samples/TabDemo/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/resource.h -------------------------------------------------------------------------------- /samples/TabDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TabDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/TaskDialog/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TaskDialog/ReadMe.txt -------------------------------------------------------------------------------- /samples/TaskDialog/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TaskDialog/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/TaskDialog/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TaskDialog/src/main.cpp -------------------------------------------------------------------------------- /samples/TaskDialog/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TaskDialog/src/resource.h -------------------------------------------------------------------------------- /samples/TaskDialog/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TaskDialog/src/stdafx.h -------------------------------------------------------------------------------- /samples/TestDLL/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/Readme.txt -------------------------------------------------------------------------------- /samples/TestDLL/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/TestDLL/src/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/StdAfx.h -------------------------------------------------------------------------------- /samples/TestDLL/src/TestApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/TestApp.cpp -------------------------------------------------------------------------------- /samples/TestDLL/src/TestApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/TestApp.h -------------------------------------------------------------------------------- /samples/TestDLL/src/TestWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/TestWindow.h -------------------------------------------------------------------------------- /samples/TestDLL/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/main.cpp -------------------------------------------------------------------------------- /samples/TestDLL/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TestDLL/src/resource.h -------------------------------------------------------------------------------- /samples/TextFileReader/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TextFileReader/Readme.txt -------------------------------------------------------------------------------- /samples/TextFileReader/src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TextFileReader/src/App.h -------------------------------------------------------------------------------- /samples/TextFileReader/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TextFileReader/src/Doc.h -------------------------------------------------------------------------------- /samples/TextFileReader/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TextFileReader/src/View.h -------------------------------------------------------------------------------- /samples/Themes/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/Readme.txt -------------------------------------------------------------------------------- /samples/Themes/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/Themes/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/Themes/src/MyCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/MyCombo.cpp -------------------------------------------------------------------------------- /samples/Themes/src/MyCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/MyCombo.h -------------------------------------------------------------------------------- /samples/Themes/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/Resource.rc -------------------------------------------------------------------------------- /samples/Themes/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Themes/src/ThemesApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/ThemesApp.cpp -------------------------------------------------------------------------------- /samples/Themes/src/ThemesApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/ThemesApp.h -------------------------------------------------------------------------------- /samples/Themes/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/View.cpp -------------------------------------------------------------------------------- /samples/Themes/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/View.h -------------------------------------------------------------------------------- /samples/Themes/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/main.cpp -------------------------------------------------------------------------------- /samples/Themes/src/res/Arrows.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/res/Arrows.bmp -------------------------------------------------------------------------------- /samples/Themes/src/res/Cards.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/res/Cards.bmp -------------------------------------------------------------------------------- /samples/Themes/src/res/Status.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/res/Status.bmp -------------------------------------------------------------------------------- /samples/Themes/src/res/Themes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/res/Themes.ico -------------------------------------------------------------------------------- /samples/Themes/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/resource.h -------------------------------------------------------------------------------- /samples/Themes/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Themes/src/stdafx.h -------------------------------------------------------------------------------- /samples/Threads/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/Readme.txt -------------------------------------------------------------------------------- /samples/Threads/src/MainWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/MainWnd.cpp -------------------------------------------------------------------------------- /samples/Threads/src/MainWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/MainWnd.h -------------------------------------------------------------------------------- /samples/Threads/src/MyEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/MyEdit.cpp -------------------------------------------------------------------------------- /samples/Threads/src/MyEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/MyEdit.h -------------------------------------------------------------------------------- /samples/Threads/src/MyThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/MyThread.cpp -------------------------------------------------------------------------------- /samples/Threads/src/MyThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/MyThread.h -------------------------------------------------------------------------------- /samples/Threads/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/Resource.rc -------------------------------------------------------------------------------- /samples/Threads/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Threads/src/TestWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/TestWnd.cpp -------------------------------------------------------------------------------- /samples/Threads/src/TestWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/TestWnd.h -------------------------------------------------------------------------------- /samples/Threads/src/ThreadApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/ThreadApp.cpp -------------------------------------------------------------------------------- /samples/Threads/src/ThreadApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/ThreadApp.h -------------------------------------------------------------------------------- /samples/Threads/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/main.cpp -------------------------------------------------------------------------------- /samples/Threads/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/resource.h -------------------------------------------------------------------------------- /samples/Threads/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Threads/src/stdafx.h -------------------------------------------------------------------------------- /samples/TimeDemo/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/ReadMe.txt -------------------------------------------------------------------------------- /samples/TimeDemo/src/AboutBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/AboutBox.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/AboutBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/AboutBox.h -------------------------------------------------------------------------------- /samples/TimeDemo/src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/App.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/App.h -------------------------------------------------------------------------------- /samples/TimeDemo/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/Doc.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/Doc.h -------------------------------------------------------------------------------- /samples/TimeDemo/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/TimeDemo/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/Resource.rc -------------------------------------------------------------------------------- /samples/TimeDemo/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/View.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/View.h -------------------------------------------------------------------------------- /samples/TimeDemo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/main.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/res/Time.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/res/Time.ico -------------------------------------------------------------------------------- /samples/TimeDemo/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/resource.h -------------------------------------------------------------------------------- /samples/TimeDemo/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/stdafx.cpp -------------------------------------------------------------------------------- /samples/TimeDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TimeDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/Titlebar/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/Readme.txt -------------------------------------------------------------------------------- /samples/Titlebar/src/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/App.cpp -------------------------------------------------------------------------------- /samples/Titlebar/src/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/App.h -------------------------------------------------------------------------------- /samples/Titlebar/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/LICENSE -------------------------------------------------------------------------------- /samples/Titlebar/src/MiniFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/MiniFrame.h -------------------------------------------------------------------------------- /samples/Titlebar/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/Resource.rc -------------------------------------------------------------------------------- /samples/Titlebar/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Titlebar/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/View.cpp -------------------------------------------------------------------------------- /samples/Titlebar/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/View.h -------------------------------------------------------------------------------- /samples/Titlebar/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/main.cpp -------------------------------------------------------------------------------- /samples/Titlebar/src/res/Bulb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/res/Bulb.ico -------------------------------------------------------------------------------- /samples/Titlebar/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/resource.h -------------------------------------------------------------------------------- /samples/Titlebar/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Titlebar/src/stdafx.h -------------------------------------------------------------------------------- /samples/TitlebarFrame/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TitlebarFrame/Readme.txt -------------------------------------------------------------------------------- /samples/TitlebarFrame/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TitlebarFrame/src/Doc.cpp -------------------------------------------------------------------------------- /samples/TitlebarFrame/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TitlebarFrame/src/Doc.h -------------------------------------------------------------------------------- /samples/TitlebarFrame/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TitlebarFrame/src/LICENSE -------------------------------------------------------------------------------- /samples/TitlebarFrame/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/TitlebarFrame/src/View.h -------------------------------------------------------------------------------- /samples/ToolBarDemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolBarDemo/Readme.txt -------------------------------------------------------------------------------- /samples/ToolBarDemo/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolBarDemo/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/ToolBarDemo/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolBarDemo/src/View.cpp -------------------------------------------------------------------------------- /samples/ToolBarDemo/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolBarDemo/src/View.h -------------------------------------------------------------------------------- /samples/ToolBarDemo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolBarDemo/src/main.cpp -------------------------------------------------------------------------------- /samples/ToolBarDemo/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolBarDemo/src/stdafx.h -------------------------------------------------------------------------------- /samples/ToolTips/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/Readme.txt -------------------------------------------------------------------------------- /samples/ToolTips/src/DialogApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/DialogApp.h -------------------------------------------------------------------------------- /samples/ToolTips/src/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/MyDialog.cpp -------------------------------------------------------------------------------- /samples/ToolTips/src/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/MyDialog.h -------------------------------------------------------------------------------- /samples/ToolTips/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/Resource.rc -------------------------------------------------------------------------------- /samples/ToolTips/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/ToolTips/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/main.cpp -------------------------------------------------------------------------------- /samples/ToolTips/src/res/Info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/res/Info.ico -------------------------------------------------------------------------------- /samples/ToolTips/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/resource.h -------------------------------------------------------------------------------- /samples/ToolTips/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolTips/src/stdafx.h -------------------------------------------------------------------------------- /samples/ToolbarBuilder/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolbarBuilder/Readme.txt -------------------------------------------------------------------------------- /samples/ToolbarBuilder/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/ToolbarBuilder/src/View.h -------------------------------------------------------------------------------- /samples/Tray/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/Readme.txt -------------------------------------------------------------------------------- /samples/Tray/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/Resource.rc -------------------------------------------------------------------------------- /samples/Tray/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/Tray/src/TrayApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/TrayApp.cpp -------------------------------------------------------------------------------- /samples/Tray/src/TrayApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/TrayApp.h -------------------------------------------------------------------------------- /samples/Tray/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/View.cpp -------------------------------------------------------------------------------- /samples/Tray/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/View.h -------------------------------------------------------------------------------- /samples/Tray/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/main.cpp -------------------------------------------------------------------------------- /samples/Tray/src/res/Win32xx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/res/Win32xx.ico -------------------------------------------------------------------------------- /samples/Tray/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/resource.h -------------------------------------------------------------------------------- /samples/Tray/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/Tray/src/stdafx.h -------------------------------------------------------------------------------- /samples/WinPlot/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/Readme.txt -------------------------------------------------------------------------------- /samples/WinPlot/src/Calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Calc.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/Calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Calc.h -------------------------------------------------------------------------------- /samples/WinPlot/src/FrameApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/FrameApp.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/FrameApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/FrameApp.h -------------------------------------------------------------------------------- /samples/WinPlot/src/InputDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/InputDlg.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/InputDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/InputDlg.h -------------------------------------------------------------------------------- /samples/WinPlot/src/Mainfrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Mainfrm.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Mainfrm.h -------------------------------------------------------------------------------- /samples/WinPlot/src/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Node.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Node.h -------------------------------------------------------------------------------- /samples/WinPlot/src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Resource.rc -------------------------------------------------------------------------------- /samples/WinPlot/src/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/StdAfx.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Table.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/Table.h -------------------------------------------------------------------------------- /samples/WinPlot/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/View.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/View.h -------------------------------------------------------------------------------- /samples/WinPlot/src/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/enums.h -------------------------------------------------------------------------------- /samples/WinPlot/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/main.cpp -------------------------------------------------------------------------------- /samples/WinPlot/src/res/Plot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/res/Plot.ico -------------------------------------------------------------------------------- /samples/WinPlot/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/resource.h -------------------------------------------------------------------------------- /samples/WinPlot/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/samples/WinPlot/src/stdafx.h -------------------------------------------------------------------------------- /tools/CleanSamples.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tools/CleanSamples.bat -------------------------------------------------------------------------------- /tools/CleanTutorials.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tools/CleanTutorials.bat -------------------------------------------------------------------------------- /tools/Compile All.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tools/Compile All.bat -------------------------------------------------------------------------------- /tools/Compile C++ Builder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tools/Compile C++ Builder.bat -------------------------------------------------------------------------------- /tools/Compile CodeBlocks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tools/Compile CodeBlocks.bat -------------------------------------------------------------------------------- /tutorials/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial1/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial1/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial1/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial10/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial10/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial10/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial10/src/Doc.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial10/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial10/src/Doc.h -------------------------------------------------------------------------------- /tutorials/Tutorial10/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial10/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial10/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial10/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial10/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial10/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial11/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial11/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/src/Doc.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial11/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/src/Doc.h -------------------------------------------------------------------------------- /tutorials/Tutorial11/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial11/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial11/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial11/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial11/src/stdafx.h -------------------------------------------------------------------------------- /tutorials/Tutorial2/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial2/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial2/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial3/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial3/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial3/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial3/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial3/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial3/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial3/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial3/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial4/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial4/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial4/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial4/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial4/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial4/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial4/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial4/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial5/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial5/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial5/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial5/src/Mainfrm.h -------------------------------------------------------------------------------- /tutorials/Tutorial5/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial5/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial5/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial5/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial5/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial5/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial6/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial6/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial6/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial6/src/Mainfrm.h -------------------------------------------------------------------------------- /tutorials/Tutorial6/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial6/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial6/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial6/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial6/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial6/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial7/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial7/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial7/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial7/src/Mainfrm.h -------------------------------------------------------------------------------- /tutorials/Tutorial7/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial7/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial7/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial7/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial7/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial7/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial8/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial8/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/src/Doc.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial8/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/src/Doc.h -------------------------------------------------------------------------------- /tutorials/Tutorial8/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/src/Mainfrm.h -------------------------------------------------------------------------------- /tutorials/Tutorial8/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial8/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial8/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial8/src/main.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial9/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/Readme.txt -------------------------------------------------------------------------------- /tutorials/Tutorial9/src/Doc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/src/Doc.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial9/src/Doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/src/Doc.h -------------------------------------------------------------------------------- /tutorials/Tutorial9/src/Mainfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/src/Mainfrm.h -------------------------------------------------------------------------------- /tutorials/Tutorial9/src/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/src/View.cpp -------------------------------------------------------------------------------- /tutorials/Tutorial9/src/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/src/View.h -------------------------------------------------------------------------------- /tutorials/Tutorial9/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidNash2024/Win32xx/HEAD/tutorials/Tutorial9/src/main.cpp --------------------------------------------------------------------------------