├── .gitattributes ├── .github └── ISSUE_TEMPLATE ├── .gitignore ├── Console ├── AboutDlg.cpp ├── AboutDlg.h ├── AeroTabCtrl.h ├── BoostIncludePath.props.user.template ├── CFileNameEdit.h ├── CNegativeNumberEdit.h ├── Console.cpp ├── Console.h ├── Console.rc ├── Console.vcxproj ├── Console.vcxproj.filters ├── ConsoleException.h ├── ConsoleHandler.cpp ├── ConsoleHandler.h ├── ConsoleView.cpp ├── ConsoleView.h ├── Cursors.cpp ├── Cursors.h ├── DlgCredentials.cpp ├── DlgCredentials.h ├── DlgRenameTab.cpp ├── DlgRenameTab.h ├── DlgSettingsAppearance.cpp ├── DlgSettingsAppearance.h ├── DlgSettingsBase.h ├── DlgSettingsBehavior.cpp ├── DlgSettingsBehavior.h ├── DlgSettingsBehavior2.cpp ├── DlgSettingsBehavior2.h ├── DlgSettingsConsole.cpp ├── DlgSettingsConsole.h ├── DlgSettingsControls.cpp ├── DlgSettingsControls.h ├── DlgSettingsFont.cpp ├── DlgSettingsFont.h ├── DlgSettingsFullScreen.cpp ├── DlgSettingsFullScreen.h ├── DlgSettingsHotkeys.cpp ├── DlgSettingsHotkeys.h ├── DlgSettingsMain.cpp ├── DlgSettingsMain.h ├── DlgSettingsMouse.cpp ├── DlgSettingsMouse.h ├── DlgSettingsStyles.cpp ├── DlgSettingsStyles.h ├── DlgSettingsTabs.cpp ├── DlgSettingsTabs.h ├── DlgSettingsTransparency.cpp ├── DlgSettingsTransparency.h ├── DynamicDialog.h ├── DynamicSnippetDialog.h ├── FastDelegate.h ├── Helpers.cpp ├── Helpers.h ├── HotkeyEdit.h ├── ImageHandler.cpp ├── ImageHandler.h ├── JumpList.cpp ├── JumpList.h ├── MainFrame.cpp ├── MainFrame.h ├── PageSettingsTab.h ├── PageSettingsTabs1.cpp ├── PageSettingsTabs1.h ├── PageSettingsTabs2.cpp ├── PageSettingsTabs2.h ├── PageSettingsTabsColors.cpp ├── PageSettingsTabsColors.h ├── PageSettingsTabsEnv.cpp ├── PageSettingsTabsEnv.h ├── SelectionHandler.cpp ├── SelectionHandler.h ├── SettingsHandler.cpp ├── SettingsHandler.h ├── Snippet.cpp ├── Snippet.h ├── TabView.cpp ├── TabView.h ├── Wallpaper.cpp ├── Wallpaper.h ├── XmlHelper.cpp ├── XmlHelper.h ├── config.rc ├── multisplit.h ├── res │ ├── Console.ico │ ├── SearchBar.rc2 │ ├── Toolbar.rc2 │ ├── fullscreen1_128.bmp │ ├── fullscreen1_16.bmp │ ├── fullscreen1_20.bmp │ ├── fullscreen1_24.bmp │ ├── fullscreen1_32.bmp │ ├── fullscreen1_40.bmp │ ├── fullscreen1_48.bmp │ ├── fullscreen1_64.bmp │ ├── fullscreen1_80.bmp │ ├── fullscreen2_128.bmp │ ├── fullscreen2_16.bmp │ ├── fullscreen2_20.bmp │ ├── fullscreen2_24.bmp │ ├── fullscreen2_32.bmp │ ├── fullscreen2_40.bmp │ ├── fullscreen2_48.bmp │ ├── fullscreen2_64.bmp │ ├── fullscreen2_80.bmp │ ├── search_128.bmp │ ├── search_16.bmp │ ├── search_20.bmp │ ├── search_24.bmp │ ├── search_32.bmp │ ├── search_40.bmp │ ├── search_48.bmp │ ├── search_64.bmp │ ├── search_80.bmp │ ├── supportedOS.manifest │ ├── testHighDPI.ico │ ├── toolbar_128.bmp │ ├── toolbar_16.bmp │ ├── toolbar_20.bmp │ ├── toolbar_24.bmp │ ├── toolbar_32.bmp │ ├── toolbar_40.bmp │ ├── toolbar_48.bmp │ ├── toolbar_64.bmp │ └── toolbar_80.bmp ├── resource.h ├── stdafx.cpp ├── stdafx.h └── wtlaero.h ├── ConsoleHook ├── BoostIncludePath.props.user.template ├── ConsoleHandler.cpp ├── ConsoleHandler.h ├── ConsoleHook.cpp ├── ConsoleHook.h ├── ConsoleHook.rc ├── ConsoleHook.vcxproj ├── ConsoleHook.vcxproj.filters ├── resource.h ├── stdafx.cpp └── stdafx.h ├── ConsoleWow ├── ConsoleWow.cpp ├── ConsoleWow.rc ├── ConsoleWow.vcxproj ├── ConsoleWow.vcxproj.filters ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ConsoleZ.sln ├── FreeImage ├── FreeImage.h ├── FreeImagePlus.h ├── FreeImagePlus.lib └── x64 │ └── FreeImagePlus.lib ├── LICENSE.txt ├── Packaging ├── Packaging.vcxproj ├── Packaging.vcxproj.filters ├── chocolatey │ ├── ConsoleZ.nuspec │ ├── ConsoleZ_48.png │ └── tools │ │ ├── Console.exe.gui │ │ ├── ConsoleWow.exe.ignore │ │ ├── LICENSE.txt │ │ └── chocolateyInstall.ps1 └── makefile ├── README.md ├── TabbingFramework ├── CustomTabCtrl.h ├── DotNetTabCtrl.h ├── DynamicDialogTemplate.h ├── ImageUtil.h ├── ListViewNoFlicker.h ├── PlainTextView.h ├── SimpleDlgTabCtrls.h ├── SimpleTabCtrls.h ├── TabbedDockingWindow.h ├── TabbedFrame.h ├── TabbedMDI.h ├── TabbedMDIMessages.h ├── TabbedMDISave.cpp ├── TabbedMDISave.h └── atlgdix.h ├── help ├── console.hhc ├── console.hhk ├── console.hhp ├── help.vcxproj ├── help.vcxproj.filters ├── html │ ├── acknowledgements.html │ ├── copyright.html │ ├── credentials.html │ ├── gpl.html │ ├── introduction.html │ ├── language.html │ ├── menus.html │ ├── running.html │ ├── settings.html │ ├── settings_appearance.html │ ├── settings_appearance_controls.html │ ├── settings_appearance_font.html │ ├── settings_appearance_fullscreen.html │ ├── settings_appearance_styles.html │ ├── settings_appearance_transparency.html │ ├── settings_behavior.html │ ├── settings_behavior_more.html │ ├── settings_console.html │ ├── settings_hotkeys.html │ ├── settings_mouse.html │ ├── settings_tabs.html │ ├── settings_tabs_background.html │ ├── settings_tabs_colors.html │ ├── settings_tabs_environment.html │ ├── settings_tabs_main.html │ ├── snippets.html │ ├── text_formatting.html │ ├── tips_tricks.html │ └── workspaces.html ├── images │ ├── all_ligatures.png │ ├── console_window.PNG │ ├── diagnose.PNG │ ├── docking_bottom_left.png │ ├── docking_bottom_middle.png │ ├── docking_bottom_right.png │ ├── docking_left_middle.png │ ├── docking_right_middle.png │ ├── docking_top_left.png │ ├── docking_top_middle.png │ ├── docking_top_right.png │ ├── font_antialiased_quality.png │ ├── font_cleartype_natural_quality.png │ ├── font_cleartype_quality.png │ ├── font_nonantialiased_quality.png │ ├── font_zoom_antialiased_quality.png │ ├── font_zoom_cleartype_natural_quality.png │ ├── font_zoom_cleartype_quality.png │ ├── font_zoom_nonantialiased_quality.png │ ├── layer1.png │ ├── layer2.png │ ├── no_ligatures.png │ ├── settings.png │ ├── settings_appearance.png │ ├── settings_appearance_controls.png │ ├── settings_appearance_font.png │ ├── settings_appearance_fullscreen.png │ ├── settings_appearance_styles.png │ ├── settings_appearance_transparency.png │ ├── settings_behavior.png │ ├── settings_behavior_more.png │ ├── settings_console.png │ ├── settings_hotkeys.png │ ├── settings_mouse.png │ ├── settings_tabs.png │ ├── settings_tabs_background.png │ ├── settings_tabs_colors.png │ ├── settings_tabs_environment.png │ ├── settings_tabs_main.png │ ├── snippet.PNG │ └── snippet_xml.PNG ├── makefile └── styles │ └── help.css ├── icons ├── 01-NewTab.svg ├── 02-PreviousTab.svg ├── 03-NextTab.svg ├── 04-RenameTab.svg ├── 05-Copy.svg ├── 06-Paste.svg ├── 07-InsertSnippet.svg ├── 08-AddHorizontalSplit.svg ├── 09-AddVerticalSplit.svg ├── 10-Fullscreen.svg ├── 11-ReduceScreen.svg ├── 12-About.svg ├── 13-Help.svg ├── 14-PreviousFind.svg ├── 15-NextFind.svg ├── 16-MatchExpression.svg ├── 17-MatchCase.svg ├── 18-ConsoleZSpecial.svg ├── 19-MatchWholeWordOnly.svg └── go.cmd ├── l10n ├── DEU │ ├── console.ini │ ├── console.lws │ └── console.rc ├── FRA │ ├── console.ini │ ├── console.lws │ └── console.rc ├── JPN │ ├── console.ini │ ├── console.lws │ └── console.rc ├── RUS │ ├── console.ini │ ├── console.lws │ └── console.rc ├── l10n.vcxproj ├── l10n.vcxproj.filters └── makefile ├── setup ├── config │ └── console.xml ├── dlls │ ├── FreeImagePlus.dll │ └── x64 │ │ └── FreeImagePlus.dll └── fonts │ ├── FixedMedium10x20.fon │ ├── FixedMedium5x7.fon │ ├── FixedMedium5x8.fon │ ├── FixedMedium6x10.fon │ ├── FixedMedium6x12.fon │ ├── FixedMedium6x13.fon │ ├── FixedMedium6x9.fon │ ├── FixedMedium7x13.fon │ ├── FixedMedium7x14.fon │ ├── FixedMedium8x13.fon │ ├── FixedMedium9x15.fon │ ├── FixedMedium9x18.fon │ └── TerminalMedium14.fon ├── shared ├── Cpp11Helpers.h ├── NamedPipe.h ├── SharedMemNames.h ├── SharedMemory.h ├── Structures.h ├── Win32Exception.h └── version.h └── wtl └── wtl ├── MS-PL.txt └── include ├── atlapp.h ├── atlcrack.h ├── atlctrls.h ├── atlctrlw.h ├── atlctrlx.h ├── atlddx.h ├── atldlgs.h ├── atldwm.h ├── atlfind.h ├── atlframe.h ├── atlgdi.h ├── atlmisc.h ├── atlprint.h ├── atlres.h ├── atlribbon.h ├── atlscrl.h ├── atlsplit.h ├── atltheme.h ├── atluser.h └── atlwinx.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/.gitignore -------------------------------------------------------------------------------- /Console/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/AboutDlg.cpp -------------------------------------------------------------------------------- /Console/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/AboutDlg.h -------------------------------------------------------------------------------- /Console/AeroTabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/AeroTabCtrl.h -------------------------------------------------------------------------------- /Console/BoostIncludePath.props.user.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/BoostIncludePath.props.user.template -------------------------------------------------------------------------------- /Console/CFileNameEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/CFileNameEdit.h -------------------------------------------------------------------------------- /Console/CNegativeNumberEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/CNegativeNumberEdit.h -------------------------------------------------------------------------------- /Console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Console.cpp -------------------------------------------------------------------------------- /Console/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Console.h -------------------------------------------------------------------------------- /Console/Console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Console.rc -------------------------------------------------------------------------------- /Console/Console.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Console.vcxproj -------------------------------------------------------------------------------- /Console/Console.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Console.vcxproj.filters -------------------------------------------------------------------------------- /Console/ConsoleException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ConsoleException.h -------------------------------------------------------------------------------- /Console/ConsoleHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ConsoleHandler.cpp -------------------------------------------------------------------------------- /Console/ConsoleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ConsoleHandler.h -------------------------------------------------------------------------------- /Console/ConsoleView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ConsoleView.cpp -------------------------------------------------------------------------------- /Console/ConsoleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ConsoleView.h -------------------------------------------------------------------------------- /Console/Cursors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Cursors.cpp -------------------------------------------------------------------------------- /Console/Cursors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Cursors.h -------------------------------------------------------------------------------- /Console/DlgCredentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgCredentials.cpp -------------------------------------------------------------------------------- /Console/DlgCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgCredentials.h -------------------------------------------------------------------------------- /Console/DlgRenameTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgRenameTab.cpp -------------------------------------------------------------------------------- /Console/DlgRenameTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgRenameTab.h -------------------------------------------------------------------------------- /Console/DlgSettingsAppearance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsAppearance.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsAppearance.h -------------------------------------------------------------------------------- /Console/DlgSettingsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsBase.h -------------------------------------------------------------------------------- /Console/DlgSettingsBehavior.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsBehavior.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsBehavior.h -------------------------------------------------------------------------------- /Console/DlgSettingsBehavior2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsBehavior2.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsBehavior2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsBehavior2.h -------------------------------------------------------------------------------- /Console/DlgSettingsConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsConsole.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsConsole.h -------------------------------------------------------------------------------- /Console/DlgSettingsControls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsControls.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsControls.h -------------------------------------------------------------------------------- /Console/DlgSettingsFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsFont.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsFont.h -------------------------------------------------------------------------------- /Console/DlgSettingsFullScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsFullScreen.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsFullScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsFullScreen.h -------------------------------------------------------------------------------- /Console/DlgSettingsHotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsHotkeys.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsHotkeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsHotkeys.h -------------------------------------------------------------------------------- /Console/DlgSettingsMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsMain.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsMain.h -------------------------------------------------------------------------------- /Console/DlgSettingsMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsMouse.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsMouse.h -------------------------------------------------------------------------------- /Console/DlgSettingsStyles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsStyles.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsStyles.h -------------------------------------------------------------------------------- /Console/DlgSettingsTabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsTabs.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsTabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsTabs.h -------------------------------------------------------------------------------- /Console/DlgSettingsTransparency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsTransparency.cpp -------------------------------------------------------------------------------- /Console/DlgSettingsTransparency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DlgSettingsTransparency.h -------------------------------------------------------------------------------- /Console/DynamicDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DynamicDialog.h -------------------------------------------------------------------------------- /Console/DynamicSnippetDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/DynamicSnippetDialog.h -------------------------------------------------------------------------------- /Console/FastDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/FastDelegate.h -------------------------------------------------------------------------------- /Console/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Helpers.cpp -------------------------------------------------------------------------------- /Console/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Helpers.h -------------------------------------------------------------------------------- /Console/HotkeyEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/HotkeyEdit.h -------------------------------------------------------------------------------- /Console/ImageHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ImageHandler.cpp -------------------------------------------------------------------------------- /Console/ImageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/ImageHandler.h -------------------------------------------------------------------------------- /Console/JumpList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/JumpList.cpp -------------------------------------------------------------------------------- /Console/JumpList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/JumpList.h -------------------------------------------------------------------------------- /Console/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/MainFrame.cpp -------------------------------------------------------------------------------- /Console/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/MainFrame.h -------------------------------------------------------------------------------- /Console/PageSettingsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTab.h -------------------------------------------------------------------------------- /Console/PageSettingsTabs1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabs1.cpp -------------------------------------------------------------------------------- /Console/PageSettingsTabs1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabs1.h -------------------------------------------------------------------------------- /Console/PageSettingsTabs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabs2.cpp -------------------------------------------------------------------------------- /Console/PageSettingsTabs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabs2.h -------------------------------------------------------------------------------- /Console/PageSettingsTabsColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabsColors.cpp -------------------------------------------------------------------------------- /Console/PageSettingsTabsColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabsColors.h -------------------------------------------------------------------------------- /Console/PageSettingsTabsEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabsEnv.cpp -------------------------------------------------------------------------------- /Console/PageSettingsTabsEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/PageSettingsTabsEnv.h -------------------------------------------------------------------------------- /Console/SelectionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/SelectionHandler.cpp -------------------------------------------------------------------------------- /Console/SelectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/SelectionHandler.h -------------------------------------------------------------------------------- /Console/SettingsHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/SettingsHandler.cpp -------------------------------------------------------------------------------- /Console/SettingsHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/SettingsHandler.h -------------------------------------------------------------------------------- /Console/Snippet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Snippet.cpp -------------------------------------------------------------------------------- /Console/Snippet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Snippet.h -------------------------------------------------------------------------------- /Console/TabView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/TabView.cpp -------------------------------------------------------------------------------- /Console/TabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/TabView.h -------------------------------------------------------------------------------- /Console/Wallpaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Wallpaper.cpp -------------------------------------------------------------------------------- /Console/Wallpaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/Wallpaper.h -------------------------------------------------------------------------------- /Console/XmlHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/XmlHelper.cpp -------------------------------------------------------------------------------- /Console/XmlHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/XmlHelper.h -------------------------------------------------------------------------------- /Console/config.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/config.rc -------------------------------------------------------------------------------- /Console/multisplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/multisplit.h -------------------------------------------------------------------------------- /Console/res/Console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/Console.ico -------------------------------------------------------------------------------- /Console/res/SearchBar.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/SearchBar.rc2 -------------------------------------------------------------------------------- /Console/res/Toolbar.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/Toolbar.rc2 -------------------------------------------------------------------------------- /Console/res/fullscreen1_128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_128.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_16.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_20.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_24.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_32.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_40.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_40.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_48.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_64.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen1_80.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen1_80.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_128.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_16.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_20.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_24.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_32.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_40.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_40.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_48.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_64.bmp -------------------------------------------------------------------------------- /Console/res/fullscreen2_80.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/fullscreen2_80.bmp -------------------------------------------------------------------------------- /Console/res/search_128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_128.bmp -------------------------------------------------------------------------------- /Console/res/search_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_16.bmp -------------------------------------------------------------------------------- /Console/res/search_20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_20.bmp -------------------------------------------------------------------------------- /Console/res/search_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_24.bmp -------------------------------------------------------------------------------- /Console/res/search_32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_32.bmp -------------------------------------------------------------------------------- /Console/res/search_40.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_40.bmp -------------------------------------------------------------------------------- /Console/res/search_48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_48.bmp -------------------------------------------------------------------------------- /Console/res/search_64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_64.bmp -------------------------------------------------------------------------------- /Console/res/search_80.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/search_80.bmp -------------------------------------------------------------------------------- /Console/res/supportedOS.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/supportedOS.manifest -------------------------------------------------------------------------------- /Console/res/testHighDPI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/testHighDPI.ico -------------------------------------------------------------------------------- /Console/res/toolbar_128.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_128.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_16.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_20.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_24.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_32.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_40.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_40.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_48.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_64.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_64.bmp -------------------------------------------------------------------------------- /Console/res/toolbar_80.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/res/toolbar_80.bmp -------------------------------------------------------------------------------- /Console/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/resource.h -------------------------------------------------------------------------------- /Console/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/stdafx.cpp -------------------------------------------------------------------------------- /Console/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/stdafx.h -------------------------------------------------------------------------------- /Console/wtlaero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Console/wtlaero.h -------------------------------------------------------------------------------- /ConsoleHook/BoostIncludePath.props.user.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/BoostIncludePath.props.user.template -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHandler.cpp -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHandler.h -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHook.cpp -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHook.h -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHook.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHook.rc -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHook.vcxproj -------------------------------------------------------------------------------- /ConsoleHook/ConsoleHook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/ConsoleHook.vcxproj.filters -------------------------------------------------------------------------------- /ConsoleHook/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/resource.h -------------------------------------------------------------------------------- /ConsoleHook/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/stdafx.cpp -------------------------------------------------------------------------------- /ConsoleHook/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleHook/stdafx.h -------------------------------------------------------------------------------- /ConsoleWow/ConsoleWow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/ConsoleWow.cpp -------------------------------------------------------------------------------- /ConsoleWow/ConsoleWow.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/ConsoleWow.rc -------------------------------------------------------------------------------- /ConsoleWow/ConsoleWow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/ConsoleWow.vcxproj -------------------------------------------------------------------------------- /ConsoleWow/ConsoleWow.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/ConsoleWow.vcxproj.filters -------------------------------------------------------------------------------- /ConsoleWow/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/resource.h -------------------------------------------------------------------------------- /ConsoleWow/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/stdafx.cpp -------------------------------------------------------------------------------- /ConsoleWow/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/stdafx.h -------------------------------------------------------------------------------- /ConsoleWow/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleWow/targetver.h -------------------------------------------------------------------------------- /ConsoleZ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/ConsoleZ.sln -------------------------------------------------------------------------------- /FreeImage/FreeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/FreeImage/FreeImage.h -------------------------------------------------------------------------------- /FreeImage/FreeImagePlus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/FreeImage/FreeImagePlus.h -------------------------------------------------------------------------------- /FreeImage/FreeImagePlus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/FreeImage/FreeImagePlus.lib -------------------------------------------------------------------------------- /FreeImage/x64/FreeImagePlus.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/FreeImage/x64/FreeImagePlus.lib -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Packaging/Packaging.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/Packaging.vcxproj -------------------------------------------------------------------------------- /Packaging/Packaging.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/Packaging.vcxproj.filters -------------------------------------------------------------------------------- /Packaging/chocolatey/ConsoleZ.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/chocolatey/ConsoleZ.nuspec -------------------------------------------------------------------------------- /Packaging/chocolatey/ConsoleZ_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/chocolatey/ConsoleZ_48.png -------------------------------------------------------------------------------- /Packaging/chocolatey/tools/Console.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packaging/chocolatey/tools/ConsoleWow.exe.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packaging/chocolatey/tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/chocolatey/tools/LICENSE.txt -------------------------------------------------------------------------------- /Packaging/chocolatey/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/chocolatey/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /Packaging/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/Packaging/makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/README.md -------------------------------------------------------------------------------- /TabbingFramework/CustomTabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/CustomTabCtrl.h -------------------------------------------------------------------------------- /TabbingFramework/DotNetTabCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/DotNetTabCtrl.h -------------------------------------------------------------------------------- /TabbingFramework/DynamicDialogTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/DynamicDialogTemplate.h -------------------------------------------------------------------------------- /TabbingFramework/ImageUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/ImageUtil.h -------------------------------------------------------------------------------- /TabbingFramework/ListViewNoFlicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/ListViewNoFlicker.h -------------------------------------------------------------------------------- /TabbingFramework/PlainTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/PlainTextView.h -------------------------------------------------------------------------------- /TabbingFramework/SimpleDlgTabCtrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/SimpleDlgTabCtrls.h -------------------------------------------------------------------------------- /TabbingFramework/SimpleTabCtrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/SimpleTabCtrls.h -------------------------------------------------------------------------------- /TabbingFramework/TabbedDockingWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/TabbedDockingWindow.h -------------------------------------------------------------------------------- /TabbingFramework/TabbedFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/TabbedFrame.h -------------------------------------------------------------------------------- /TabbingFramework/TabbedMDI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/TabbedMDI.h -------------------------------------------------------------------------------- /TabbingFramework/TabbedMDIMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/TabbedMDIMessages.h -------------------------------------------------------------------------------- /TabbingFramework/TabbedMDISave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/TabbedMDISave.cpp -------------------------------------------------------------------------------- /TabbingFramework/TabbedMDISave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/TabbedMDISave.h -------------------------------------------------------------------------------- /TabbingFramework/atlgdix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/TabbingFramework/atlgdix.h -------------------------------------------------------------------------------- /help/console.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/console.hhc -------------------------------------------------------------------------------- /help/console.hhk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/console.hhk -------------------------------------------------------------------------------- /help/console.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/console.hhp -------------------------------------------------------------------------------- /help/help.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/help.vcxproj -------------------------------------------------------------------------------- /help/help.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/help.vcxproj.filters -------------------------------------------------------------------------------- /help/html/acknowledgements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/acknowledgements.html -------------------------------------------------------------------------------- /help/html/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/copyright.html -------------------------------------------------------------------------------- /help/html/credentials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/credentials.html -------------------------------------------------------------------------------- /help/html/gpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/gpl.html -------------------------------------------------------------------------------- /help/html/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/introduction.html -------------------------------------------------------------------------------- /help/html/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/language.html -------------------------------------------------------------------------------- /help/html/menus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/menus.html -------------------------------------------------------------------------------- /help/html/running.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/running.html -------------------------------------------------------------------------------- /help/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings.html -------------------------------------------------------------------------------- /help/html/settings_appearance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_appearance.html -------------------------------------------------------------------------------- /help/html/settings_appearance_controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_appearance_controls.html -------------------------------------------------------------------------------- /help/html/settings_appearance_font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_appearance_font.html -------------------------------------------------------------------------------- /help/html/settings_appearance_fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_appearance_fullscreen.html -------------------------------------------------------------------------------- /help/html/settings_appearance_styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_appearance_styles.html -------------------------------------------------------------------------------- /help/html/settings_appearance_transparency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_appearance_transparency.html -------------------------------------------------------------------------------- /help/html/settings_behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_behavior.html -------------------------------------------------------------------------------- /help/html/settings_behavior_more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_behavior_more.html -------------------------------------------------------------------------------- /help/html/settings_console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_console.html -------------------------------------------------------------------------------- /help/html/settings_hotkeys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_hotkeys.html -------------------------------------------------------------------------------- /help/html/settings_mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_mouse.html -------------------------------------------------------------------------------- /help/html/settings_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_tabs.html -------------------------------------------------------------------------------- /help/html/settings_tabs_background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_tabs_background.html -------------------------------------------------------------------------------- /help/html/settings_tabs_colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_tabs_colors.html -------------------------------------------------------------------------------- /help/html/settings_tabs_environment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_tabs_environment.html -------------------------------------------------------------------------------- /help/html/settings_tabs_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/settings_tabs_main.html -------------------------------------------------------------------------------- /help/html/snippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/snippets.html -------------------------------------------------------------------------------- /help/html/text_formatting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/text_formatting.html -------------------------------------------------------------------------------- /help/html/tips_tricks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/tips_tricks.html -------------------------------------------------------------------------------- /help/html/workspaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/html/workspaces.html -------------------------------------------------------------------------------- /help/images/all_ligatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/all_ligatures.png -------------------------------------------------------------------------------- /help/images/console_window.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/console_window.PNG -------------------------------------------------------------------------------- /help/images/diagnose.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/diagnose.PNG -------------------------------------------------------------------------------- /help/images/docking_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_bottom_left.png -------------------------------------------------------------------------------- /help/images/docking_bottom_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_bottom_middle.png -------------------------------------------------------------------------------- /help/images/docking_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_bottom_right.png -------------------------------------------------------------------------------- /help/images/docking_left_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_left_middle.png -------------------------------------------------------------------------------- /help/images/docking_right_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_right_middle.png -------------------------------------------------------------------------------- /help/images/docking_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_top_left.png -------------------------------------------------------------------------------- /help/images/docking_top_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_top_middle.png -------------------------------------------------------------------------------- /help/images/docking_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/docking_top_right.png -------------------------------------------------------------------------------- /help/images/font_antialiased_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_antialiased_quality.png -------------------------------------------------------------------------------- /help/images/font_cleartype_natural_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_cleartype_natural_quality.png -------------------------------------------------------------------------------- /help/images/font_cleartype_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_cleartype_quality.png -------------------------------------------------------------------------------- /help/images/font_nonantialiased_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_nonantialiased_quality.png -------------------------------------------------------------------------------- /help/images/font_zoom_antialiased_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_zoom_antialiased_quality.png -------------------------------------------------------------------------------- /help/images/font_zoom_cleartype_natural_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_zoom_cleartype_natural_quality.png -------------------------------------------------------------------------------- /help/images/font_zoom_cleartype_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_zoom_cleartype_quality.png -------------------------------------------------------------------------------- /help/images/font_zoom_nonantialiased_quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/font_zoom_nonantialiased_quality.png -------------------------------------------------------------------------------- /help/images/layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/layer1.png -------------------------------------------------------------------------------- /help/images/layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/layer2.png -------------------------------------------------------------------------------- /help/images/no_ligatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/no_ligatures.png -------------------------------------------------------------------------------- /help/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings.png -------------------------------------------------------------------------------- /help/images/settings_appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_appearance.png -------------------------------------------------------------------------------- /help/images/settings_appearance_controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_appearance_controls.png -------------------------------------------------------------------------------- /help/images/settings_appearance_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_appearance_font.png -------------------------------------------------------------------------------- /help/images/settings_appearance_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_appearance_fullscreen.png -------------------------------------------------------------------------------- /help/images/settings_appearance_styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_appearance_styles.png -------------------------------------------------------------------------------- /help/images/settings_appearance_transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_appearance_transparency.png -------------------------------------------------------------------------------- /help/images/settings_behavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_behavior.png -------------------------------------------------------------------------------- /help/images/settings_behavior_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_behavior_more.png -------------------------------------------------------------------------------- /help/images/settings_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_console.png -------------------------------------------------------------------------------- /help/images/settings_hotkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_hotkeys.png -------------------------------------------------------------------------------- /help/images/settings_mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_mouse.png -------------------------------------------------------------------------------- /help/images/settings_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_tabs.png -------------------------------------------------------------------------------- /help/images/settings_tabs_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_tabs_background.png -------------------------------------------------------------------------------- /help/images/settings_tabs_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_tabs_colors.png -------------------------------------------------------------------------------- /help/images/settings_tabs_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_tabs_environment.png -------------------------------------------------------------------------------- /help/images/settings_tabs_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/settings_tabs_main.png -------------------------------------------------------------------------------- /help/images/snippet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/snippet.PNG -------------------------------------------------------------------------------- /help/images/snippet_xml.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/images/snippet_xml.PNG -------------------------------------------------------------------------------- /help/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/makefile -------------------------------------------------------------------------------- /help/styles/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/help/styles/help.css -------------------------------------------------------------------------------- /icons/01-NewTab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/01-NewTab.svg -------------------------------------------------------------------------------- /icons/02-PreviousTab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/02-PreviousTab.svg -------------------------------------------------------------------------------- /icons/03-NextTab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/03-NextTab.svg -------------------------------------------------------------------------------- /icons/04-RenameTab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/04-RenameTab.svg -------------------------------------------------------------------------------- /icons/05-Copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/05-Copy.svg -------------------------------------------------------------------------------- /icons/06-Paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/06-Paste.svg -------------------------------------------------------------------------------- /icons/07-InsertSnippet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/07-InsertSnippet.svg -------------------------------------------------------------------------------- /icons/08-AddHorizontalSplit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/08-AddHorizontalSplit.svg -------------------------------------------------------------------------------- /icons/09-AddVerticalSplit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/09-AddVerticalSplit.svg -------------------------------------------------------------------------------- /icons/10-Fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/10-Fullscreen.svg -------------------------------------------------------------------------------- /icons/11-ReduceScreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/11-ReduceScreen.svg -------------------------------------------------------------------------------- /icons/12-About.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/12-About.svg -------------------------------------------------------------------------------- /icons/13-Help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/13-Help.svg -------------------------------------------------------------------------------- /icons/14-PreviousFind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/14-PreviousFind.svg -------------------------------------------------------------------------------- /icons/15-NextFind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/15-NextFind.svg -------------------------------------------------------------------------------- /icons/16-MatchExpression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/16-MatchExpression.svg -------------------------------------------------------------------------------- /icons/17-MatchCase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/17-MatchCase.svg -------------------------------------------------------------------------------- /icons/18-ConsoleZSpecial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/18-ConsoleZSpecial.svg -------------------------------------------------------------------------------- /icons/19-MatchWholeWordOnly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/19-MatchWholeWordOnly.svg -------------------------------------------------------------------------------- /icons/go.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/icons/go.cmd -------------------------------------------------------------------------------- /l10n/DEU/console.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/DEU/console.ini -------------------------------------------------------------------------------- /l10n/DEU/console.lws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/DEU/console.lws -------------------------------------------------------------------------------- /l10n/DEU/console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/DEU/console.rc -------------------------------------------------------------------------------- /l10n/FRA/console.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/FRA/console.ini -------------------------------------------------------------------------------- /l10n/FRA/console.lws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/FRA/console.lws -------------------------------------------------------------------------------- /l10n/FRA/console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/FRA/console.rc -------------------------------------------------------------------------------- /l10n/JPN/console.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/JPN/console.ini -------------------------------------------------------------------------------- /l10n/JPN/console.lws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/JPN/console.lws -------------------------------------------------------------------------------- /l10n/JPN/console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/JPN/console.rc -------------------------------------------------------------------------------- /l10n/RUS/console.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/RUS/console.ini -------------------------------------------------------------------------------- /l10n/RUS/console.lws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/RUS/console.lws -------------------------------------------------------------------------------- /l10n/RUS/console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/RUS/console.rc -------------------------------------------------------------------------------- /l10n/l10n.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/l10n.vcxproj -------------------------------------------------------------------------------- /l10n/l10n.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/l10n.vcxproj.filters -------------------------------------------------------------------------------- /l10n/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/l10n/makefile -------------------------------------------------------------------------------- /setup/config/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/config/console.xml -------------------------------------------------------------------------------- /setup/dlls/FreeImagePlus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/dlls/FreeImagePlus.dll -------------------------------------------------------------------------------- /setup/dlls/x64/FreeImagePlus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/dlls/x64/FreeImagePlus.dll -------------------------------------------------------------------------------- /setup/fonts/FixedMedium10x20.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium10x20.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium5x7.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium5x7.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium5x8.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium5x8.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium6x10.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium6x10.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium6x12.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium6x12.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium6x13.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium6x13.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium6x9.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium6x9.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium7x13.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium7x13.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium7x14.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium7x14.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium8x13.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium8x13.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium9x15.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium9x15.fon -------------------------------------------------------------------------------- /setup/fonts/FixedMedium9x18.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/FixedMedium9x18.fon -------------------------------------------------------------------------------- /setup/fonts/TerminalMedium14.fon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/setup/fonts/TerminalMedium14.fon -------------------------------------------------------------------------------- /shared/Cpp11Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/Cpp11Helpers.h -------------------------------------------------------------------------------- /shared/NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/NamedPipe.h -------------------------------------------------------------------------------- /shared/SharedMemNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/SharedMemNames.h -------------------------------------------------------------------------------- /shared/SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/SharedMemory.h -------------------------------------------------------------------------------- /shared/Structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/Structures.h -------------------------------------------------------------------------------- /shared/Win32Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/Win32Exception.h -------------------------------------------------------------------------------- /shared/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/shared/version.h -------------------------------------------------------------------------------- /wtl/wtl/MS-PL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/MS-PL.txt -------------------------------------------------------------------------------- /wtl/wtl/include/atlapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlapp.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlcrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlcrack.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlctrls.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlctrlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlctrlw.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlctrlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlctrlx.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlddx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlddx.h -------------------------------------------------------------------------------- /wtl/wtl/include/atldlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atldlgs.h -------------------------------------------------------------------------------- /wtl/wtl/include/atldwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atldwm.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlfind.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlframe.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlgdi.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlmisc.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlprint.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlres.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlribbon.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlscrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlscrl.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlsplit.h -------------------------------------------------------------------------------- /wtl/wtl/include/atltheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atltheme.h -------------------------------------------------------------------------------- /wtl/wtl/include/atluser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atluser.h -------------------------------------------------------------------------------- /wtl/wtl/include/atlwinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbucher/console/HEAD/wtl/wtl/include/atlwinx.h --------------------------------------------------------------------------------