├── .gitattributes ├── .gitignore ├── Chapter10 └── HelloApplicationWin32API │ ├── Debug │ └── HelloApplicationWin32API.log │ ├── HelloApplicationWin32API.v12.suo │ ├── HelloApplicationWin32API.vcxproj │ ├── HelloApplicationWin32API.vcxproj.filters │ └── MainWindow.c ├── Chapter2 ├── Circle │ ├── Circle.cpp │ ├── Circle.h │ ├── Circle.vcxproj │ ├── Circle.vcxproj.filters │ ├── CircleDocument.cpp │ ├── CircleDocument.h │ ├── Debug │ │ ├── Circle.log │ │ └── CircleApplication.Build.CppClean.log │ ├── Logger.ini │ ├── MainWindow.cpp │ └── SmallWindows.ini ├── Hello │ ├── Debug │ │ ├── Hello.Build.CppClean.log │ │ ├── Hello.log │ │ ├── HelloApplication.Build.CppClean.log │ │ ├── HelloSma.CC475627.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── HelloSmallWindows.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ └── HelloSmallWindows.Build.CppClean.log │ ├── Hello.vcxproj │ ├── Hello.vcxproj.filters │ ├── HelloWindow.cpp │ ├── HelloWindow.h │ └── MainWindow.cpp └── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ ├── ButtonControl.cpp │ ├── ButtonControl.h │ ├── CheckBox.cpp │ ├── CheckBox.h │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── Control.cpp │ ├── Control.h │ ├── GroupBox.cpp │ ├── GroupBox.h │ ├── Label.cpp │ ├── Label.h │ ├── ListBox.cpp │ ├── ListBox.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MultipleListBox.cpp │ ├── MultipleListBox.h │ ├── PushButton.cpp │ ├── PushButton.h │ ├── RadioButton.cpp │ ├── RadioButton.h │ ├── TextField.cpp │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h ├── Chapter3 ├── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ │ ├── ButtonControl.cpp │ │ ├── ButtonControl.h │ │ ├── CheckBox.cpp │ │ ├── CheckBox.h │ │ ├── ComboBox.cpp │ │ ├── ComboBox.h │ │ ├── Control.cpp │ │ ├── Control.h │ │ ├── GroupBox.cpp │ │ ├── GroupBox.h │ │ ├── Label.cpp │ │ ├── Label.h │ │ ├── ListBox.cpp │ │ ├── ListBox.h │ │ ├── ListControl.cpp │ │ ├── ListControl.h │ │ ├── MultipleListBox.cpp │ │ ├── MultipleListBox.h │ │ ├── PushButton.cpp │ │ ├── PushButton.h │ │ ├── RadioButton.cpp │ │ ├── RadioButton.h │ │ ├── TextField.cpp │ │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h └── Tetris │ ├── BlueFigure.cpp │ ├── BlueFigure.h │ ├── BrownFigure.cpp │ ├── BrownFigure.h │ ├── Debug │ ├── BuildLog.htm │ ├── Tetris (STEFANB's conflicted copy 2011-11-28).log │ ├── Tetris.Build.CppClean.log │ ├── Tetris.lastbuildstate │ ├── Tetris.log │ ├── TetrisApplication.Build.CppClean.log │ ├── TetrisGame.Build.CppClean.log │ └── TetrisGame.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── TetrisGame.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── GameGrid.cpp │ ├── GameGrid.h │ ├── GreenFigure.cpp │ ├── GreenFigure.h │ ├── Logg │ ├── MainWindow.cpp │ ├── PurpleFigure.cpp │ ├── PurpleFigure.h │ ├── RedFigure.cpp │ ├── RedFigure.h │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── ColorGrid.obj │ ├── Figure.obj │ ├── Tetris.exe.intermediate.manifest │ ├── Tetris.lastbuildstate │ ├── Tetris.log │ ├── Tetris.obj │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ └── vc100.pdb │ ├── Resource.h │ ├── ScoreList.bin │ ├── Tetris.aps │ ├── Tetris.rc │ ├── Tetris.vcproj.ComputerStefan.Stefan.user │ ├── Tetris.vcxproj │ ├── Tetris.vcxproj.filters │ ├── TetrisFigure.cpp │ ├── TetrisFigure.h │ ├── TetrisWindow.cpp │ ├── TetrisWindow.h │ ├── TurquoiseFigure.cpp │ ├── TurquoiseFigure.h │ ├── YellowFigure.cpp │ ├── YellowFigure.h │ └── res │ ├── Tetris.ico │ ├── Tetris.rc2 │ ├── TetrisDoc.ico │ └── Toolbar.bmp ├── Chapter4 ├── Draw │ ├── ArrowFigure.cpp │ ├── ArrowFigure.h │ ├── CalcApplication.cpp │ ├── Cursor.h │ ├── Debug │ │ ├── BuildLog.htm │ │ ├── Draw (STEFANB's conflicted copy 2011-11-28).log │ │ ├── Draw.Build.CppClean.log │ │ ├── Draw.lastbuildstate │ │ ├── Draw.log │ │ ├── DrawApplication.Build.CppClean.log │ │ ├── DrawingProgram.Build.CppClean.log │ │ └── DrawingProgram.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── DrawingProgram.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ ├── Draw.aps │ ├── Draw.rc │ ├── Draw.vcxproj │ ├── Draw.vcxproj.filters │ ├── DrawDocument.cpp │ ├── DrawDocument.h │ ├── DrawFigure.cpp │ ├── DrawFigure.h │ ├── EllipseFigure.cpp │ ├── EllipseFigure.h │ ├── LineFigure.cpp │ ├── LineFigure.h │ ├── MainWindow.cpp │ ├── RectangleFigure.cpp │ ├── RectangleFigure.h │ ├── Release │ │ ├── Arrow.obj │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Command.obj │ │ ├── Draw.exe.intermediate.manifest │ │ ├── Draw.lastbuildstate │ │ ├── Draw.log │ │ ├── Draw.obj │ │ ├── Draw.res │ │ ├── Ellipse.obj │ │ ├── Figure.obj │ │ ├── File.obj │ │ ├── Keyboard.obj │ │ ├── Line.obj │ │ ├── List.obj │ │ ├── Rectangle.obj │ │ ├── Text.obj │ │ ├── Unit.obj │ │ ├── UnitScroll.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ └── vc100.pdb │ ├── Resource.h │ ├── SmallWindows.ini │ ├── res │ │ ├── Draw.ico │ │ ├── Draw.rc2 │ │ ├── DrawDoc.ico │ │ └── Toolbar.bmp │ └── resource1.h └── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ ├── ButtonControl.cpp │ ├── ButtonControl.h │ ├── CheckBox.cpp │ ├── CheckBox.h │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── Control.cpp │ ├── Control.h │ ├── GroupBox.cpp │ ├── GroupBox.h │ ├── Label.cpp │ ├── Label.h │ ├── ListBox.cpp │ ├── ListBox.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MultipleListBox.cpp │ ├── MultipleListBox.h │ ├── PushButton.cpp │ ├── PushButton.h │ ├── RadioButton.cpp │ ├── RadioButton.h │ ├── TextField.cpp │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h ├── Chapter6 ├── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ │ ├── ButtonControl.cpp │ │ ├── ButtonControl.h │ │ ├── CheckBox.cpp │ │ ├── CheckBox.h │ │ ├── ComboBox.cpp │ │ ├── ComboBox.h │ │ ├── Control.cpp │ │ ├── Control.h │ │ ├── GroupBox.cpp │ │ ├── GroupBox.h │ │ ├── Label.cpp │ │ ├── Label.h │ │ ├── ListBox.cpp │ │ ├── ListBox.h │ │ ├── ListControl.cpp │ │ ├── ListControl.h │ │ ├── MultipleListBox.cpp │ │ ├── MultipleListBox.h │ │ ├── PushButton.cpp │ │ ├── PushButton.h │ │ ├── RadioButton.cpp │ │ ├── RadioButton.h │ │ ├── TextField.cpp │ │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h └── Word │ ├── Calculate.h │ ├── Calculate2.cpp │ ├── CalculateZoom.c │ ├── CalculateZoom.h │ ├── CharInfo.cpp │ ├── CharInfo.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── ClipboardUntil.c │ ├── Command.h │ ├── Debug │ ├── BuildLog.htm │ ├── Word (STEFANB's conflicted copy 2011-11-28).log │ ├── Word (STEFANB's conflicted copy 2012-03-08).log │ ├── Word.Build.CppClean.log │ ├── Word.lastbuildstate │ ├── Word.log │ ├── WordProcessor.Build.CppClean.log │ └── WordProcessor.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── WordProcessor.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ └── rc.write.1.tlog │ ├── Header.xlsx │ ├── InfoList.c │ ├── Keyboard.h │ ├── LineInfo.cpp │ ├── LineInfo.h │ ├── MainWindow.cpp │ ├── MenuAccelarator.rc │ ├── PageInfo.cpp │ ├── PageInfo.h │ ├── Paragraph.cpp │ ├── Paragraph.h │ ├── ParagraphX.cpp │ ├── ParagraphX.h │ ├── Position.cpp │ ├── Position.h │ ├── Print.cpp │ ├── Print.h │ ├── PrintDialog.cpp │ ├── PrintDialog.h │ ├── PrintMessageDialog.cpp │ ├── PrintMessageDialog.h │ ├── PrintProgressDialog.rc │ ├── PrintSetupDialog.rc │ ├── PrintSetupDialog2.cpp │ ├── PrintSetupDialog2.h │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Calculate.obj │ ├── Clipboard.obj │ ├── Command.obj │ ├── Keyboard.obj │ ├── List.obj │ ├── MenuAccelarator.res │ ├── Paragraph.obj │ ├── Position.obj │ ├── Print.obj │ ├── PrintPreview.obj │ ├── PrintProgressDialog.res │ ├── PrintSetupDialog.obj │ ├── PrintSetupDialog.res │ ├── Set.obj │ ├── Template.obj │ ├── Unit.obj │ ├── UnitScroll.obj │ ├── UnitScrollZoom.obj │ ├── Word.exe.intermediate.manifest │ ├── Word.lastbuildstate │ ├── Word.log │ ├── Word.obj │ ├── cl.command.1.tlog │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ ├── rc.write.1.tlog │ └── vc100.pdb │ ├── Resource.h │ ├── Setup.xlsx │ ├── SmallWindows.ini │ ├── UnitScrollZoom.c │ ├── UnitScrollZoom.h │ ├── Word.aps │ ├── Word.docx │ ├── Word.h │ ├── Word.vcxproj │ ├── Word.vcxproj.filters │ ├── WordApplication.cpp │ ├── WordCalculate.cpp │ ├── WordCommand.cpp │ ├── WordDocument.cpp │ ├── WordDocument.h │ ├── WordDocument2.cpp │ ├── WordKeyboard.cpp │ └── res │ ├── Toolbar.bmp │ ├── Word.ico │ ├── Word.manifest │ ├── Word.rc2 │ └── WordDoc.ico ├── Chapter8 ├── Calc │ ├── Calc.aps │ ├── Calc.rc │ ├── Calc.vcxproj │ ├── Calc.vcxproj.filters │ ├── CalcCommand.cpp │ ├── CalcDocument.cpp │ ├── CalcDocument.h │ ├── CalcEvaluate.cpp │ ├── CalcKeyboard.cpp │ ├── Cell.cpp │ ├── Cell.h │ ├── Command.h │ ├── Debug │ │ ├── BuildLog.htm │ │ ├── Calc (STEFANB's conflicted copy 2011-11-28).log │ │ ├── Calc (STEFANB's conflicted copy 2012-03-08).log │ │ ├── Calc.Build.CppClean.log │ │ ├── Calc.lastbuildstate │ │ ├── Calc.log │ │ ├── CalcApplication.Build.CppClean.log │ │ ├── SpreadAp.E96A6170.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SpreadApplication.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ │ ├── SpreadApplication.Build.CppClean.log │ │ ├── SpreadSh.E96A6170.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SpreadSheetProgram.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ │ └── SpreadSheetProgram.Build.CppClean.log │ ├── Error.cpp │ ├── Error.h │ ├── Keyboard.h │ ├── MainWindow.cpp │ ├── Parser.cpp │ ├── Parser.h │ ├── Release │ │ ├── BTree.obj │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Calc.exe.intermediate.manifest │ │ ├── Calc.lastbuildstate │ │ ├── Calc.log │ │ ├── Calc.obj │ │ ├── Calc.res │ │ ├── Cell.obj │ │ ├── Command.obj │ │ ├── Error.obj │ │ ├── Keyboard.obj │ │ ├── List.obj │ │ ├── Matrix.obj │ │ ├── Parser.obj │ │ ├── Reference.obj │ │ ├── Scanner.obj │ │ ├── Set.obj │ │ ├── TSetMatrix.obj │ │ ├── Unit.obj │ │ ├── UnitScroll.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ └── vc100.pdb │ ├── Resource.h │ ├── Scanner.cpp │ ├── Scanner.h │ ├── SmallWindows.ini │ ├── Token.cpp │ ├── Token.h │ ├── TreeNode.cpp │ ├── TreeNode.h │ ├── Triple.cpp │ ├── Triple.h │ └── res │ │ ├── Calc.ico │ │ ├── Calc.manifest │ │ ├── Calc.rc2 │ │ ├── CalcDoc.ico │ │ ├── Toolbar.bmp │ │ ├── Word.ico │ │ ├── WordDoc.ico │ │ ├── idr_calc.ico │ │ └── idr_main.ico └── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ ├── ButtonControl.cpp │ ├── ButtonControl.h │ ├── CheckBox.cpp │ ├── CheckBox.h │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── Control.cpp │ ├── Control.h │ ├── GroupBox.cpp │ ├── GroupBox.h │ ├── Label.cpp │ ├── Label.h │ ├── ListBox.cpp │ ├── ListBox.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MultipleListBox.cpp │ ├── MultipleListBox.h │ ├── PushButton.cpp │ ├── PushButton.h │ ├── RadioButton.cpp │ ├── RadioButton.h │ ├── TextField.cpp │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h ├── Cpp Windows Programming ├── C++ Windows Programming.sln ├── C++ Windows Programming.v12.suo ├── Calc │ ├── Calc.aps │ ├── Calc.rc │ ├── Calc.vcxproj │ ├── Calc.vcxproj.filters │ ├── CalcCommand.cpp │ ├── CalcDocument.cpp │ ├── CalcDocument.h │ ├── CalcEvaluate.cpp │ ├── CalcKeyboard.cpp │ ├── Cell.cpp │ ├── Cell.h │ ├── Command.h │ ├── Debug │ │ ├── BuildLog.htm │ │ ├── Calc (STEFANB's conflicted copy 2011-11-28).log │ │ ├── Calc (STEFANB's conflicted copy 2012-03-08).log │ │ ├── Calc.Build.CppClean.log │ │ ├── Calc.lastbuildstate │ │ ├── Calc.log │ │ ├── SpreadAp.E96A6170.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SpreadApplication.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ │ ├── SpreadApplication.Build.CppClean.log │ │ ├── SpreadSh.E96A6170.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── SpreadSheetProgram.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ │ └── SpreadSheetProgram.Build.CppClean.log │ ├── Error.cpp │ ├── Error.h │ ├── Keyboard.h │ ├── MainWindow.cpp │ ├── Parser.cpp │ ├── Parser.h │ ├── Release │ │ ├── BTree.obj │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Calc.exe.intermediate.manifest │ │ ├── Calc.lastbuildstate │ │ ├── Calc.log │ │ ├── Calc.obj │ │ ├── Calc.res │ │ ├── Cell.obj │ │ ├── Command.obj │ │ ├── Error.obj │ │ ├── Keyboard.obj │ │ ├── List.obj │ │ ├── Matrix.obj │ │ ├── Parser.obj │ │ ├── Reference.obj │ │ ├── Scanner.obj │ │ ├── Set.obj │ │ ├── TSetMatrix.obj │ │ ├── Unit.obj │ │ ├── UnitScroll.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ └── vc100.pdb │ ├── Resource.h │ ├── Scanner.cpp │ ├── Scanner.h │ ├── SmallWindows.ini │ ├── Token.cpp │ ├── Token.h │ ├── TreeNode.cpp │ ├── TreeNode.h │ ├── Triple.cpp │ ├── Triple.h │ └── res │ │ ├── Calc.ico │ │ ├── Calc.manifest │ │ ├── Calc.rc2 │ │ ├── CalcDoc.ico │ │ ├── Toolbar.bmp │ │ ├── Word.ico │ │ ├── WordDoc.ico │ │ ├── idr_calc.ico │ │ └── idr_main.ico ├── Circle │ ├── Circle.cpp │ ├── Circle.h │ ├── Circle.vcxproj │ ├── Circle.vcxproj.filters │ ├── CircleDocument.cpp │ ├── CircleDocument.h │ ├── Debug │ │ └── Circle.log │ ├── Logger.ini │ ├── MainWindow.cpp │ └── SmallWindows.ini ├── Draw │ ├── ArrowFigure.cpp │ ├── ArrowFigure.h │ ├── CalcApplication.cpp │ ├── Cursor.h │ ├── Debug │ │ ├── BuildLog.htm │ │ ├── Draw (STEFANB's conflicted copy 2011-11-28).log │ │ ├── Draw.Build.CppClean.log │ │ ├── Draw.lastbuildstate │ │ ├── Draw.log │ │ ├── DrawingProgram.Build.CppClean.log │ │ └── DrawingProgram.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── DrawingProgram.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ ├── link.write.1.tlog │ │ │ ├── rc.command.1.tlog │ │ │ ├── rc.read.1.tlog │ │ │ └── rc.write.1.tlog │ ├── Draw.aps │ ├── Draw.rc │ ├── Draw.vcxproj │ ├── Draw.vcxproj.filters │ ├── DrawDocument.cpp │ ├── DrawDocument.h │ ├── DrawFigure.cpp │ ├── DrawFigure.h │ ├── EllipseFigure.cpp │ ├── EllipseFigure.h │ ├── LineFigure.cpp │ ├── LineFigure.h │ ├── MainWindow.cpp │ ├── RectangleFigure.cpp │ ├── RectangleFigure.h │ ├── Release │ │ ├── Arrow.obj │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Command.obj │ │ ├── Draw.exe.intermediate.manifest │ │ ├── Draw.lastbuildstate │ │ ├── Draw.log │ │ ├── Draw.obj │ │ ├── Draw.res │ │ ├── Ellipse.obj │ │ ├── Figure.obj │ │ ├── File.obj │ │ ├── Keyboard.obj │ │ ├── Line.obj │ │ ├── List.obj │ │ ├── Rectangle.obj │ │ ├── Text.obj │ │ ├── Unit.obj │ │ ├── UnitScroll.obj │ │ ├── cl.command.1.tlog │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ └── vc100.pdb │ ├── Resource.h │ ├── SmallWindows.ini │ ├── res │ │ ├── Draw.ico │ │ ├── Draw.rc2 │ │ ├── DrawDoc.ico │ │ └── Toolbar.bmp │ └── resource1.h ├── Hello │ ├── Debug │ │ ├── Hello.Build.CppClean.log │ │ ├── Hello.log │ │ ├── HelloSma.CC475627.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── HelloSmallWindows.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ │ └── HelloSmallWindows.Build.CppClean.log │ ├── Hello.vcxproj │ ├── Hello.vcxproj.filters │ ├── HelloWindow.cpp │ ├── HelloWindow.h │ └── MainWindow.cpp ├── HelloApplicationWin32API │ ├── Debug │ │ ├── HelloApplicationWin32API.Build.CppClean.log │ │ └── HelloApplicationWin32API.log │ ├── HelloApplicationWin32API.vcxproj │ ├── HelloApplicationWin32API.vcxproj.filters │ └── MainWindow.c ├── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ │ ├── ButtonControl.cpp │ │ ├── ButtonControl.h │ │ ├── CheckBox.cpp │ │ ├── CheckBox.h │ │ ├── ComboBox.cpp │ │ ├── ComboBox.h │ │ ├── Control.cpp │ │ ├── Control.h │ │ ├── GroupBox.cpp │ │ ├── GroupBox.h │ │ ├── Label.cpp │ │ ├── Label.h │ │ ├── ListBox.cpp │ │ ├── ListBox.h │ │ ├── ListControl.cpp │ │ ├── ListControl.h │ │ ├── MultipleListBox.cpp │ │ ├── MultipleListBox.h │ │ ├── PushButton.cpp │ │ ├── PushButton.h │ │ ├── RadioButton.cpp │ │ ├── RadioButton.h │ │ ├── TextField.cpp │ │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h ├── Tetris │ ├── BlueFigure.cpp │ ├── BlueFigure.h │ ├── BrownFigure.cpp │ ├── BrownFigure.h │ ├── Debug │ │ ├── BuildLog.htm │ │ ├── Tetris (STEFANB's conflicted copy 2011-11-28).log │ │ ├── Tetris.Build.CppClean.log │ │ ├── Tetris.lastbuildstate │ │ ├── Tetris.log │ │ ├── TetrisGame.Build.CppClean.log │ │ └── TetrisGame.tlog │ │ │ ├── CL.read.1.tlog │ │ │ ├── CL.write.1.tlog │ │ │ ├── TetrisGame.lastbuildstate │ │ │ ├── cl.command.1.tlog │ │ │ ├── link.command.1.tlog │ │ │ ├── link.read.1.tlog │ │ │ └── link.write.1.tlog │ ├── GameGrid.cpp │ ├── GameGrid.h │ ├── GreenFigure.cpp │ ├── GreenFigure.h │ ├── Logg │ ├── MainWindow.cpp │ ├── PurpleFigure.cpp │ ├── PurpleFigure.h │ ├── RedFigure.cpp │ ├── RedFigure.h │ ├── Release │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── ColorGrid.obj │ │ ├── Figure.obj │ │ ├── Tetris.exe.intermediate.manifest │ │ ├── Tetris.lastbuildstate │ │ ├── Tetris.log │ │ ├── Tetris.obj │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ └── vc100.pdb │ ├── Resource.h │ ├── ScoreList.bin │ ├── Tetris.aps │ ├── Tetris.rc │ ├── Tetris.vcproj.ComputerStefan.Stefan.user │ ├── Tetris.vcxproj │ ├── Tetris.vcxproj.filters │ ├── TetrisFigure.cpp │ ├── TetrisFigure.h │ ├── TetrisWindow.cpp │ ├── TetrisWindow.h │ ├── TurquoiseFigure.cpp │ ├── TurquoiseFigure.h │ ├── YellowFigure.cpp │ ├── YellowFigure.h │ └── res │ │ ├── Tetris.ico │ │ ├── Tetris.rc2 │ │ ├── TetrisDoc.ico │ │ └── Toolbar.bmp └── Word │ ├── Calculate.h │ ├── Calculate2.cpp │ ├── CalculateZoom.c │ ├── CalculateZoom.h │ ├── CharInfo.cpp │ ├── CharInfo.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── ClipboardUntil.c │ ├── Command.h │ ├── Debug │ ├── BuildLog.htm │ ├── Word (STEFANB's conflicted copy 2011-11-28).log │ ├── Word (STEFANB's conflicted copy 2012-03-08).log │ ├── Word.Build.CppClean.log │ ├── Word.lastbuildstate │ ├── Word.log │ ├── WordProcessor.Build.CppClean.log │ └── WordProcessor.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── WordProcessor.lastbuildstate │ │ ├── cl.command.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ └── rc.write.1.tlog │ ├── Header.xlsx │ ├── InfoList.c │ ├── Keyboard.h │ ├── LineInfo.cpp │ ├── LineInfo.h │ ├── MainWindow.cpp │ ├── MenuAccelarator.rc │ ├── PageInfo.cpp │ ├── PageInfo.h │ ├── Paragraph.cpp │ ├── Paragraph.h │ ├── ParagraphX.cpp │ ├── ParagraphX.h │ ├── Position.cpp │ ├── Position.h │ ├── Print.cpp │ ├── Print.h │ ├── PrintDialog.cpp │ ├── PrintDialog.h │ ├── PrintMessageDialog.cpp │ ├── PrintMessageDialog.h │ ├── PrintProgressDialog.rc │ ├── PrintSetupDialog.rc │ ├── PrintSetupDialog2.cpp │ ├── PrintSetupDialog2.h │ ├── Release │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Calculate.obj │ ├── Clipboard.obj │ ├── Command.obj │ ├── Keyboard.obj │ ├── List.obj │ ├── MenuAccelarator.res │ ├── Paragraph.obj │ ├── Position.obj │ ├── Print.obj │ ├── PrintPreview.obj │ ├── PrintProgressDialog.res │ ├── PrintSetupDialog.obj │ ├── PrintSetupDialog.res │ ├── Set.obj │ ├── Template.obj │ ├── Unit.obj │ ├── UnitScroll.obj │ ├── UnitScrollZoom.obj │ ├── Word.exe.intermediate.manifest │ ├── Word.lastbuildstate │ ├── Word.log │ ├── Word.obj │ ├── cl.command.1.tlog │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── mt.command.1.tlog │ ├── mt.read.1.tlog │ ├── mt.write.1.tlog │ ├── rc.command.1.tlog │ ├── rc.read.1.tlog │ ├── rc.write.1.tlog │ └── vc100.pdb │ ├── Resource.h │ ├── Setup.xlsx │ ├── SmallWindows.ini │ ├── UnitScrollZoom.c │ ├── UnitScrollZoom.h │ ├── Word.aps │ ├── Word.docx │ ├── Word.h │ ├── Word.vcxproj │ ├── Word.vcxproj.filters │ ├── WordApplication.cpp │ ├── WordCalculate.cpp │ ├── WordCommand.cpp │ ├── WordDocument.cpp │ ├── WordDocument.h │ ├── WordDocument2.cpp │ ├── WordKeyboard.cpp │ └── res │ ├── Toolbar.bmp │ ├── Word.ico │ ├── Word.manifest │ ├── Word.rc2 │ └── WordDoc.ico ├── Empty Project ├── EmptyProject.sln ├── EmptyProject.v12.suo ├── EmptyProject │ ├── Debug │ │ ├── EmptyProject.Build.CppClean.log │ │ └── EmptyProject.log │ ├── EmptyProject.vcxproj │ ├── EmptyProject.vcxproj.filters │ ├── EmptyWindow.cpp │ ├── EmptyWindow.h │ └── MainWindow.cpp └── SmallWindows │ ├── Accelerator.cpp │ ├── Accelerator.h │ ├── Application.cpp │ ├── Application.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── Color.cpp │ ├── Color.h │ ├── Command.cpp │ ├── Command.h │ ├── Complex.cpp │ ├── Complex.h │ ├── Controls │ ├── ButtonControl.cpp │ ├── ButtonControl.h │ ├── CheckBox.cpp │ ├── CheckBox.h │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── Control.cpp │ ├── Control.h │ ├── GroupBox.cpp │ ├── GroupBox.h │ ├── Label.cpp │ ├── Label.h │ ├── ListBox.cpp │ ├── ListBox.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MultipleListBox.cpp │ ├── MultipleListBox.h │ ├── PushButton.cpp │ ├── PushButton.h │ ├── RadioButton.cpp │ ├── RadioButton.h │ ├── TextField.cpp │ └── TextField.h │ ├── Converter.cpp │ ├── Converter.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Document.cpp │ ├── Document.h │ ├── DynamicList.cpp │ ├── DynamicList.h │ ├── Font.cpp │ ├── Font.h │ ├── FontDialog.cpp │ ├── FontDialog.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── InfoList.cpp │ ├── InfoList.h │ ├── ListControl.cpp │ ├── ListControl.h │ ├── MainWindow.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Menu.cpp │ ├── Menu.h │ ├── PageSetupDialog.cpp │ ├── PageSetupDialog.h │ ├── PageSetupInfo.cpp │ ├── PageSetupInfo.h │ ├── Point.cpp │ ├── Point.h │ ├── PrintPreviewDocument.cpp │ ├── PrintPreviewDocument.h │ ├── Rational.cpp │ ├── Rational.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Reference.cpp │ ├── Reference.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Size.cpp │ ├── Size.h │ ├── SmallWindows.cpp │ ├── SmallWindows.h │ ├── StandardDialog.cpp │ ├── StandardDialog.h │ ├── StandardDocument.cpp │ ├── StandardDocument.h │ ├── String.cpp │ ├── String.h │ ├── Template.cpp │ ├── Template.h │ ├── Tree.cpp │ ├── Tree.h │ ├── WinMain.cpp │ ├── Window.cpp │ └── Window.h ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter2/Circle/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/Circle.cpp -------------------------------------------------------------------------------- /Chapter2/Circle/Circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/Circle.h -------------------------------------------------------------------------------- /Chapter2/Circle/Circle.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/Circle.vcxproj -------------------------------------------------------------------------------- /Chapter2/Circle/Circle.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/Circle.vcxproj.filters -------------------------------------------------------------------------------- /Chapter2/Circle/CircleDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/CircleDocument.cpp -------------------------------------------------------------------------------- /Chapter2/Circle/CircleDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/CircleDocument.h -------------------------------------------------------------------------------- /Chapter2/Circle/Debug/Circle.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/Debug/Circle.log -------------------------------------------------------------------------------- /Chapter2/Circle/Logger.ini: -------------------------------------------------------------------------------- 1 | [Circle] 2 | NextColor=32768 3 | -------------------------------------------------------------------------------- /Chapter2/Circle/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/MainWindow.cpp -------------------------------------------------------------------------------- /Chapter2/Circle/SmallWindows.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Circle/SmallWindows.ini -------------------------------------------------------------------------------- /Chapter2/Hello/Debug/Hello.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Hello/Debug/Hello.log -------------------------------------------------------------------------------- /Chapter2/Hello/Hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Hello/Hello.vcxproj -------------------------------------------------------------------------------- /Chapter2/Hello/Hello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Hello/Hello.vcxproj.filters -------------------------------------------------------------------------------- /Chapter2/Hello/HelloWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Hello/HelloWindow.cpp -------------------------------------------------------------------------------- /Chapter2/Hello/HelloWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Hello/HelloWindow.h -------------------------------------------------------------------------------- /Chapter2/Hello/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/Hello/MainWindow.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Accelerator.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Accelerator.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Application.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Application.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Clipboard.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Clipboard.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Color.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Color.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Command.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Command.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Complex.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Complex.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/CheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/CheckBox.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/CheckBox.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/ComboBox.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/ComboBox.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/Control.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/GroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/GroupBox.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/Label.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/Label.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Controls/ListBox.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Converter.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Converter.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Cursor.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Cursor.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Dialog.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Dialog.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Document.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Document.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter2/SmallWindows/DynamicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/DynamicList.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Font.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Font.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/FontDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/FontDialog.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/FontDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/FontDialog.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Graphics.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Graphics.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/InfoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/InfoList.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/InfoList.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter2/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter2/SmallWindows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/MainWindow.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Matrix.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Menu.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Menu.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/PageSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/PageSetupDialog.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/PageSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/PageSetupDialog.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/PageSetupInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/PageSetupInfo.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/PageSetupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/PageSetupInfo.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Point.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Point.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Rational.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Rational.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Rect.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Rect.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Reference.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Reference.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Registry.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Registry.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Size.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Size.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter2/SmallWindows/SmallWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/SmallWindows.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/StandardDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/StandardDialog.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/StandardDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/StandardDialog.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/StandardDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/StandardDocument.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/String.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/String.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Template.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Template.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Tree.h -------------------------------------------------------------------------------- /Chapter2/SmallWindows/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/WinMain.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Window.cpp -------------------------------------------------------------------------------- /Chapter2/SmallWindows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter2/SmallWindows/Window.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Accelerator.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Accelerator.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Application.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Application.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Clipboard.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Clipboard.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Color.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Color.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Command.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Command.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Complex.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Complex.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/CheckBox.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/ComboBox.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/Control.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/GroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/GroupBox.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/Label.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/Label.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Controls/ListBox.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Converter.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Converter.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Cursor.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Cursor.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Dialog.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Dialog.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Document.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Document.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter3/SmallWindows/DynamicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/DynamicList.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Font.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Font.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/FontDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/FontDialog.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/FontDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/FontDialog.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Graphics.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Graphics.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/InfoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/InfoList.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/InfoList.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter3/SmallWindows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/MainWindow.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Matrix.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Menu.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Menu.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/PageSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/PageSetupDialog.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/PageSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/PageSetupDialog.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/PageSetupInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/PageSetupInfo.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/PageSetupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/PageSetupInfo.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Point.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Point.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Rational.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Rational.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Rect.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Rect.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Reference.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Reference.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Registry.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Registry.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Size.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Size.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter3/SmallWindows/SmallWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/SmallWindows.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/StandardDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/StandardDialog.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/StandardDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/StandardDialog.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/StandardDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/StandardDocument.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/String.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/String.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Template.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Template.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Tree.h -------------------------------------------------------------------------------- /Chapter3/SmallWindows/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/WinMain.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Window.cpp -------------------------------------------------------------------------------- /Chapter3/SmallWindows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/SmallWindows/Window.h -------------------------------------------------------------------------------- /Chapter3/Tetris/BlueFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/BlueFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/BlueFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/BlueFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/BrownFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/BrownFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/BrownFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/BrownFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Debug/BuildLog.htm -------------------------------------------------------------------------------- /Chapter3/Tetris/Debug/Tetris.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Chapter3/Tetris/Debug/Tetris.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Debug/Tetris.log -------------------------------------------------------------------------------- /Chapter3/Tetris/GameGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/GameGrid.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/GameGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/GameGrid.h -------------------------------------------------------------------------------- /Chapter3/Tetris/GreenFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/GreenFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/GreenFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/GreenFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/Logg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Logg -------------------------------------------------------------------------------- /Chapter3/Tetris/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/MainWindow.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/PurpleFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/PurpleFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/PurpleFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/PurpleFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/RedFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/RedFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/RedFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/RedFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/ColorGrid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/ColorGrid.obj -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/Figure.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/Figure.obj -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/Tetris.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/Tetris.log -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/Tetris.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/Tetris.obj -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/link.read.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/link.write.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /Chapter3/Tetris/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Release/vc100.pdb -------------------------------------------------------------------------------- /Chapter3/Tetris/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Resource.h -------------------------------------------------------------------------------- /Chapter3/Tetris/ScoreList.bin: -------------------------------------------------------------------------------- 1 | c`  -------------------------------------------------------------------------------- /Chapter3/Tetris/Tetris.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Tetris.aps -------------------------------------------------------------------------------- /Chapter3/Tetris/Tetris.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Tetris.rc -------------------------------------------------------------------------------- /Chapter3/Tetris/Tetris.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Tetris.vcxproj -------------------------------------------------------------------------------- /Chapter3/Tetris/Tetris.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/Tetris.vcxproj.filters -------------------------------------------------------------------------------- /Chapter3/Tetris/TetrisFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/TetrisFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/TetrisFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/TetrisFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/TetrisWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/TetrisWindow.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/TetrisWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/TetrisWindow.h -------------------------------------------------------------------------------- /Chapter3/Tetris/TurquoiseFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/TurquoiseFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/TurquoiseFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/TurquoiseFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/YellowFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/YellowFigure.cpp -------------------------------------------------------------------------------- /Chapter3/Tetris/YellowFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/YellowFigure.h -------------------------------------------------------------------------------- /Chapter3/Tetris/res/Tetris.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/res/Tetris.ico -------------------------------------------------------------------------------- /Chapter3/Tetris/res/Tetris.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/res/Tetris.rc2 -------------------------------------------------------------------------------- /Chapter3/Tetris/res/TetrisDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/res/TetrisDoc.ico -------------------------------------------------------------------------------- /Chapter3/Tetris/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter3/Tetris/res/Toolbar.bmp -------------------------------------------------------------------------------- /Chapter4/Draw/ArrowFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/ArrowFigure.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/ArrowFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/ArrowFigure.h -------------------------------------------------------------------------------- /Chapter4/Draw/CalcApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/CalcApplication.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Cursor.h -------------------------------------------------------------------------------- /Chapter4/Draw/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Debug/BuildLog.htm -------------------------------------------------------------------------------- /Chapter4/Draw/Debug/Draw.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Chapter4/Draw/Debug/Draw.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Debug/Draw.log -------------------------------------------------------------------------------- /Chapter4/Draw/Draw.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Draw.aps -------------------------------------------------------------------------------- /Chapter4/Draw/Draw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Draw.rc -------------------------------------------------------------------------------- /Chapter4/Draw/Draw.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Draw.vcxproj -------------------------------------------------------------------------------- /Chapter4/Draw/Draw.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Draw.vcxproj.filters -------------------------------------------------------------------------------- /Chapter4/Draw/DrawDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/DrawDocument.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/DrawDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/DrawDocument.h -------------------------------------------------------------------------------- /Chapter4/Draw/DrawFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/DrawFigure.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/DrawFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/DrawFigure.h -------------------------------------------------------------------------------- /Chapter4/Draw/EllipseFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/EllipseFigure.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/EllipseFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/EllipseFigure.h -------------------------------------------------------------------------------- /Chapter4/Draw/LineFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/LineFigure.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/LineFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/LineFigure.h -------------------------------------------------------------------------------- /Chapter4/Draw/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/MainWindow.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/RectangleFigure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/RectangleFigure.cpp -------------------------------------------------------------------------------- /Chapter4/Draw/RectangleFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/RectangleFigure.h -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Arrow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Arrow.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Command.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Command.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Draw.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Draw.lastbuildstate -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Draw.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Draw.log -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Draw.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Draw.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Draw.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Draw.res -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Ellipse.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Ellipse.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Figure.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Figure.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/File.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/File.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Keyboard.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Keyboard.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Line.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Line.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/List.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/List.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Rectangle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Rectangle.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Text.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Text.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/Unit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/Unit.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/UnitScroll.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/UnitScroll.obj -------------------------------------------------------------------------------- /Chapter4/Draw/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/link.command.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/link.read.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/link.write.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/rc.command.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/rc.read.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/rc.write.1.tlog -------------------------------------------------------------------------------- /Chapter4/Draw/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Release/vc100.pdb -------------------------------------------------------------------------------- /Chapter4/Draw/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/Resource.h -------------------------------------------------------------------------------- /Chapter4/Draw/SmallWindows.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/SmallWindows.ini -------------------------------------------------------------------------------- /Chapter4/Draw/res/Draw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/res/Draw.ico -------------------------------------------------------------------------------- /Chapter4/Draw/res/Draw.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/res/Draw.rc2 -------------------------------------------------------------------------------- /Chapter4/Draw/res/DrawDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/res/DrawDoc.ico -------------------------------------------------------------------------------- /Chapter4/Draw/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/res/Toolbar.bmp -------------------------------------------------------------------------------- /Chapter4/Draw/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/Draw/resource1.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Accelerator.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Accelerator.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Application.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Application.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Clipboard.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Clipboard.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Color.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Color.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Command.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Command.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Complex.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Complex.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/CheckBox.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/ComboBox.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/Control.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/GroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/GroupBox.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/Label.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/Label.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Controls/ListBox.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Converter.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Converter.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Cursor.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Cursor.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Dialog.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Dialog.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Document.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Document.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter4/SmallWindows/DynamicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/DynamicList.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Font.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Font.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/FontDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/FontDialog.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/FontDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/FontDialog.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Graphics.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Graphics.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/InfoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/InfoList.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/InfoList.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter4/SmallWindows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/MainWindow.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Matrix.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Menu.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Menu.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/PageSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/PageSetupDialog.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/PageSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/PageSetupDialog.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/PageSetupInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/PageSetupInfo.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/PageSetupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/PageSetupInfo.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Point.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Point.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Rational.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Rational.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Rect.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Rect.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Reference.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Reference.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Registry.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Registry.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Size.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Size.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter4/SmallWindows/SmallWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/SmallWindows.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/StandardDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/StandardDialog.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/StandardDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/StandardDialog.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/StandardDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/StandardDocument.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/String.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/String.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Template.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Template.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Tree.h -------------------------------------------------------------------------------- /Chapter4/SmallWindows/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/WinMain.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Window.cpp -------------------------------------------------------------------------------- /Chapter4/SmallWindows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter4/SmallWindows/Window.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Accelerator.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Accelerator.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Application.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Application.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Clipboard.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Clipboard.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Color.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Color.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Command.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Command.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Complex.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Complex.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/CheckBox.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/ComboBox.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/Control.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/GroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/GroupBox.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/Label.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/Label.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Controls/ListBox.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Converter.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Converter.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Cursor.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Cursor.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Dialog.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Dialog.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Document.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Document.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter6/SmallWindows/DynamicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/DynamicList.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Font.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Font.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/FontDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/FontDialog.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/FontDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/FontDialog.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Graphics.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Graphics.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/InfoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/InfoList.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/InfoList.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/SmallWindows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/MainWindow.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Matrix.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Menu.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Menu.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/PageSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/PageSetupDialog.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/PageSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/PageSetupDialog.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/PageSetupInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/PageSetupInfo.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/PageSetupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/PageSetupInfo.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Point.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Point.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Rational.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Rational.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Rect.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Rect.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Reference.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Reference.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Registry.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Registry.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Size.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Size.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter6/SmallWindows/SmallWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/SmallWindows.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/StandardDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/StandardDialog.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/StandardDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/StandardDialog.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/StandardDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/StandardDocument.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/String.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/String.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Template.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Template.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Tree.h -------------------------------------------------------------------------------- /Chapter6/SmallWindows/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/WinMain.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Window.cpp -------------------------------------------------------------------------------- /Chapter6/SmallWindows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/SmallWindows/Window.h -------------------------------------------------------------------------------- /Chapter6/Word/Calculate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Calculate.h -------------------------------------------------------------------------------- /Chapter6/Word/Calculate2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Calculate2.cpp -------------------------------------------------------------------------------- /Chapter6/Word/CalculateZoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/CalculateZoom.c -------------------------------------------------------------------------------- /Chapter6/Word/CalculateZoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/CalculateZoom.h -------------------------------------------------------------------------------- /Chapter6/Word/CharInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/CharInfo.cpp -------------------------------------------------------------------------------- /Chapter6/Word/CharInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/CharInfo.h -------------------------------------------------------------------------------- /Chapter6/Word/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Clipboard.cpp -------------------------------------------------------------------------------- /Chapter6/Word/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Clipboard.h -------------------------------------------------------------------------------- /Chapter6/Word/ClipboardUntil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/ClipboardUntil.c -------------------------------------------------------------------------------- /Chapter6/Word/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Command.h -------------------------------------------------------------------------------- /Chapter6/Word/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Debug/BuildLog.htm -------------------------------------------------------------------------------- /Chapter6/Word/Debug/Word.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Chapter6/Word/Debug/Word.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Debug/Word.log -------------------------------------------------------------------------------- /Chapter6/Word/Header.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Header.xlsx -------------------------------------------------------------------------------- /Chapter6/Word/InfoList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/InfoList.c -------------------------------------------------------------------------------- /Chapter6/Word/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Keyboard.h -------------------------------------------------------------------------------- /Chapter6/Word/LineInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/LineInfo.cpp -------------------------------------------------------------------------------- /Chapter6/Word/LineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/LineInfo.h -------------------------------------------------------------------------------- /Chapter6/Word/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/MainWindow.cpp -------------------------------------------------------------------------------- /Chapter6/Word/MenuAccelarator.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/MenuAccelarator.rc -------------------------------------------------------------------------------- /Chapter6/Word/PageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PageInfo.cpp -------------------------------------------------------------------------------- /Chapter6/Word/PageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PageInfo.h -------------------------------------------------------------------------------- /Chapter6/Word/Paragraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Paragraph.cpp -------------------------------------------------------------------------------- /Chapter6/Word/Paragraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Paragraph.h -------------------------------------------------------------------------------- /Chapter6/Word/ParagraphX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/ParagraphX.cpp -------------------------------------------------------------------------------- /Chapter6/Word/ParagraphX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/ParagraphX.h -------------------------------------------------------------------------------- /Chapter6/Word/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Position.cpp -------------------------------------------------------------------------------- /Chapter6/Word/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Position.h -------------------------------------------------------------------------------- /Chapter6/Word/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Print.cpp -------------------------------------------------------------------------------- /Chapter6/Word/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Print.h -------------------------------------------------------------------------------- /Chapter6/Word/PrintDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintDialog.cpp -------------------------------------------------------------------------------- /Chapter6/Word/PrintDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintDialog.h -------------------------------------------------------------------------------- /Chapter6/Word/PrintMessageDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintMessageDialog.cpp -------------------------------------------------------------------------------- /Chapter6/Word/PrintMessageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintMessageDialog.h -------------------------------------------------------------------------------- /Chapter6/Word/PrintProgressDialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintProgressDialog.rc -------------------------------------------------------------------------------- /Chapter6/Word/PrintSetupDialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintSetupDialog.rc -------------------------------------------------------------------------------- /Chapter6/Word/PrintSetupDialog2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintSetupDialog2.cpp -------------------------------------------------------------------------------- /Chapter6/Word/PrintSetupDialog2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/PrintSetupDialog2.h -------------------------------------------------------------------------------- /Chapter6/Word/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/Calculate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Calculate.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Clipboard.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Clipboard.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Command.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Command.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Keyboard.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Keyboard.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/List.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/List.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/MenuAccelarator.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/MenuAccelarator.res -------------------------------------------------------------------------------- /Chapter6/Word/Release/Paragraph.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Paragraph.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Position.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Position.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Print.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Print.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/PrintPreview.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/PrintPreview.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Set.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Set.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Template.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Unit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Unit.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/UnitScroll.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/UnitScroll.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/UnitScrollZoom.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/UnitScrollZoom.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/Word.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Word.lastbuildstate -------------------------------------------------------------------------------- /Chapter6/Word/Release/Word.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Word.log -------------------------------------------------------------------------------- /Chapter6/Word/Release/Word.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/Word.obj -------------------------------------------------------------------------------- /Chapter6/Word/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/link.command.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/link.read.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/link.write.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/rc.command.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/rc.read.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/rc.write.1.tlog -------------------------------------------------------------------------------- /Chapter6/Word/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Release/vc100.pdb -------------------------------------------------------------------------------- /Chapter6/Word/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Resource.h -------------------------------------------------------------------------------- /Chapter6/Word/Setup.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Setup.xlsx -------------------------------------------------------------------------------- /Chapter6/Word/SmallWindows.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/SmallWindows.ini -------------------------------------------------------------------------------- /Chapter6/Word/UnitScrollZoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/UnitScrollZoom.c -------------------------------------------------------------------------------- /Chapter6/Word/UnitScrollZoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/UnitScrollZoom.h -------------------------------------------------------------------------------- /Chapter6/Word/Word.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Word.aps -------------------------------------------------------------------------------- /Chapter6/Word/Word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Word.docx -------------------------------------------------------------------------------- /Chapter6/Word/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Word.h -------------------------------------------------------------------------------- /Chapter6/Word/Word.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Word.vcxproj -------------------------------------------------------------------------------- /Chapter6/Word/Word.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/Word.vcxproj.filters -------------------------------------------------------------------------------- /Chapter6/Word/WordApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordApplication.cpp -------------------------------------------------------------------------------- /Chapter6/Word/WordCalculate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordCalculate.cpp -------------------------------------------------------------------------------- /Chapter6/Word/WordCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordCommand.cpp -------------------------------------------------------------------------------- /Chapter6/Word/WordDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordDocument.cpp -------------------------------------------------------------------------------- /Chapter6/Word/WordDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordDocument.h -------------------------------------------------------------------------------- /Chapter6/Word/WordDocument2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordDocument2.cpp -------------------------------------------------------------------------------- /Chapter6/Word/WordKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/WordKeyboard.cpp -------------------------------------------------------------------------------- /Chapter6/Word/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/res/Toolbar.bmp -------------------------------------------------------------------------------- /Chapter6/Word/res/Word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/res/Word.ico -------------------------------------------------------------------------------- /Chapter6/Word/res/Word.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/res/Word.manifest -------------------------------------------------------------------------------- /Chapter6/Word/res/Word.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/res/Word.rc2 -------------------------------------------------------------------------------- /Chapter6/Word/res/WordDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter6/Word/res/WordDoc.ico -------------------------------------------------------------------------------- /Chapter8/Calc/Calc.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Calc.aps -------------------------------------------------------------------------------- /Chapter8/Calc/Calc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Calc.rc -------------------------------------------------------------------------------- /Chapter8/Calc/Calc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Calc.vcxproj -------------------------------------------------------------------------------- /Chapter8/Calc/Calc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Calc.vcxproj.filters -------------------------------------------------------------------------------- /Chapter8/Calc/CalcCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/CalcCommand.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/CalcDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/CalcDocument.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/CalcDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/CalcDocument.h -------------------------------------------------------------------------------- /Chapter8/Calc/CalcEvaluate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/CalcEvaluate.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/CalcKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/CalcKeyboard.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Cell.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Cell.h -------------------------------------------------------------------------------- /Chapter8/Calc/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Command.h -------------------------------------------------------------------------------- /Chapter8/Calc/Debug/BuildLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Debug/BuildLog.htm -------------------------------------------------------------------------------- /Chapter8/Calc/Debug/Calc.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Chapter8/Calc/Debug/Calc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Debug/Calc.log -------------------------------------------------------------------------------- /Chapter8/Calc/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Error.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Error.h -------------------------------------------------------------------------------- /Chapter8/Calc/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Keyboard.h -------------------------------------------------------------------------------- /Chapter8/Calc/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/MainWindow.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Parser.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Parser.h -------------------------------------------------------------------------------- /Chapter8/Calc/Release/BTree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/BTree.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/CL.read.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/CL.write.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Calc.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Calc.lastbuildstate -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Calc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Calc.log -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Calc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Calc.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Calc.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Calc.res -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Cell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Cell.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Command.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Command.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Error.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Error.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Keyboard.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Keyboard.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/List.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/List.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Matrix.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Matrix.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Parser.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Parser.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Reference.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Reference.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Scanner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Scanner.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Set.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Set.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/TSetMatrix.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/TSetMatrix.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/Unit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/Unit.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/UnitScroll.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/UnitScroll.obj -------------------------------------------------------------------------------- /Chapter8/Calc/Release/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/cl.command.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/link.command.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/link.read.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/link.write.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/mt.command.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/mt.read.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/mt.write.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/rc.command.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/rc.read.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/rc.write.1.tlog -------------------------------------------------------------------------------- /Chapter8/Calc/Release/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Release/vc100.pdb -------------------------------------------------------------------------------- /Chapter8/Calc/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Resource.h -------------------------------------------------------------------------------- /Chapter8/Calc/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Scanner.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Scanner.h -------------------------------------------------------------------------------- /Chapter8/Calc/SmallWindows.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/SmallWindows.ini -------------------------------------------------------------------------------- /Chapter8/Calc/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Token.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Token.h -------------------------------------------------------------------------------- /Chapter8/Calc/TreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/TreeNode.cpp -------------------------------------------------------------------------------- /Chapter8/Calc/TreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/TreeNode.h -------------------------------------------------------------------------------- /Chapter8/Calc/Triple.cpp: -------------------------------------------------------------------------------- 1 | //#include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter8/Calc/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/Triple.h -------------------------------------------------------------------------------- /Chapter8/Calc/res/Calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/Calc.ico -------------------------------------------------------------------------------- /Chapter8/Calc/res/Calc.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/Calc.manifest -------------------------------------------------------------------------------- /Chapter8/Calc/res/Calc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/Calc.rc2 -------------------------------------------------------------------------------- /Chapter8/Calc/res/CalcDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/CalcDoc.ico -------------------------------------------------------------------------------- /Chapter8/Calc/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/Toolbar.bmp -------------------------------------------------------------------------------- /Chapter8/Calc/res/Word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/Word.ico -------------------------------------------------------------------------------- /Chapter8/Calc/res/WordDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/WordDoc.ico -------------------------------------------------------------------------------- /Chapter8/Calc/res/idr_calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/idr_calc.ico -------------------------------------------------------------------------------- /Chapter8/Calc/res/idr_main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/Calc/res/idr_main.ico -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Accelerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Accelerator.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Accelerator.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Application.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Application.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Clipboard.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Clipboard.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Color.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Color.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Command.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Command.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Complex.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Complex.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/CheckBox.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/ComboBox.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/Control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/Control.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/GroupBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/GroupBox.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/Label.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/Label.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Controls/ListBox.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Converter.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Converter.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Cursor.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Cursor.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Dialog.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Dialog.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Document.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Document.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter8/SmallWindows/DynamicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/DynamicList.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Font.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Font.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/FontDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/FontDialog.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/FontDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/FontDialog.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Graphics.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Graphics.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/InfoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/InfoList.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/InfoList.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter8/SmallWindows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/MainWindow.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Matrix.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Menu.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Menu.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/PageSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/PageSetupDialog.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/PageSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/PageSetupDialog.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/PageSetupInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/PageSetupInfo.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/PageSetupInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/PageSetupInfo.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Point.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Point.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Rational.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Rational.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Rect.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Rect.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Reference.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Reference.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Registry.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Registry.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Size.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Size.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter8/SmallWindows/SmallWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/SmallWindows.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/StandardDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/StandardDialog.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/StandardDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/StandardDialog.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/StandardDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/StandardDocument.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/String.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/String.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Template.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Template.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Tree.h -------------------------------------------------------------------------------- /Chapter8/SmallWindows/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/WinMain.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Window.cpp -------------------------------------------------------------------------------- /Chapter8/SmallWindows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Chapter8/SmallWindows/Window.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Calc.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Calc.aps -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Calc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Calc.rc -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Calc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Calc.vcxproj -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Cell.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Cell.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Command.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Debug/Calc.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Error.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Error.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Keyboard.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Parser.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Parser.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Resource.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Scanner.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Scanner.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Token.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Token.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/TreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/TreeNode.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/TreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/TreeNode.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Triple.cpp: -------------------------------------------------------------------------------- 1 | //#include "SmallWindows.h" -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/Triple.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/res/Calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/res/Calc.ico -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/res/Calc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/res/Calc.rc2 -------------------------------------------------------------------------------- /Cpp Windows Programming/Calc/res/Word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Calc/res/Word.ico -------------------------------------------------------------------------------- /Cpp Windows Programming/Circle/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Circle/Circle.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Circle/Circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Circle/Circle.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Circle/Logger.ini: -------------------------------------------------------------------------------- 1 | [Circle] 2 | NextColor=32768 3 | -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/Cursor.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/Debug/Draw.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/Draw.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/Draw.aps -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/Draw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/Draw.rc -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/Draw.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/Draw.vcxproj -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/DrawFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/DrawFigure.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/LineFigure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/LineFigure.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/Resource.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/res/Draw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/res/Draw.ico -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/res/Draw.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/res/Draw.rc2 -------------------------------------------------------------------------------- /Cpp Windows Programming/Draw/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Draw/resource1.h -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Cpp Windows Programming/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/Debug/Tetris.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/GameGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Tetris/GameGrid.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/Logg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Tetris/Logg -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Tetris/Resource.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/ScoreList.bin: -------------------------------------------------------------------------------- 1 | c`  -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/Tetris.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Tetris/Tetris.aps -------------------------------------------------------------------------------- /Cpp Windows Programming/Tetris/Tetris.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Tetris/Tetris.rc -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Calculate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Calculate.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/CharInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/CharInfo.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/CharInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/CharInfo.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Clipboard.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Command.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Debug/Word.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:false 2 | Debug|Win32|C:\Users\stefanb\Dropbox\C Windows Programming\| 3 | -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Header.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Header.xlsx -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/InfoList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/InfoList.c -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Keyboard.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/LineInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/LineInfo.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/LineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/LineInfo.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/PageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/PageInfo.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/PageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/PageInfo.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Paragraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Paragraph.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/ParagraphX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/ParagraphX.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Position.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Position.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Print.cpp -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Print.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Resource.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Setup.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Setup.xlsx -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Word.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Word.aps -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Word.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Word.docx -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Word.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Word.h -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/Word.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/Word.vcxproj -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/res/Word.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/res/Word.ico -------------------------------------------------------------------------------- /Cpp Windows Programming/Word/res/Word.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Cpp Windows Programming/Word/res/Word.rc2 -------------------------------------------------------------------------------- /Empty Project/EmptyProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/EmptyProject.sln -------------------------------------------------------------------------------- /Empty Project/EmptyProject.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/EmptyProject.v12.suo -------------------------------------------------------------------------------- /Empty Project/EmptyProject/EmptyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/EmptyProject/EmptyWindow.h -------------------------------------------------------------------------------- /Empty Project/EmptyProject/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/EmptyProject/MainWindow.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Accelerator.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Application.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Clipboard.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Clipboard.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Color.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Color.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Command.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Command.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Complex.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Complex.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Controls/TextField.cpp: -------------------------------------------------------------------------------- 1 | #include "..\\SmallWindows.h" -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Converter.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Converter.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Cursor.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Cursor.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Dialog.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Dialog.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Document.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Document.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/DynamicList.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Empty Project/SmallWindows/DynamicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/DynamicList.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Font.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Font.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/FontDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/FontDialog.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/FontDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/FontDialog.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Graphics.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Graphics.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/InfoList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/InfoList.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/InfoList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/InfoList.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/ListControl.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Empty Project/SmallWindows/ListControl.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Empty Project/SmallWindows/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/MainWindow.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Matrix.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" 2 | -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Matrix.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Menu.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Menu.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Point.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Point.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Rational.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Rational.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Rect.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Rect.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Reference.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Reference.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Registry.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Registry.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Size.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Size.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/SmallWindows.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Empty Project/SmallWindows/SmallWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/SmallWindows.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/String.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/String.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Template.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Template.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Tree.cpp: -------------------------------------------------------------------------------- 1 | #include "SmallWindows.h" -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Tree.h -------------------------------------------------------------------------------- /Empty Project/SmallWindows/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/WinMain.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Window.cpp -------------------------------------------------------------------------------- /Empty Project/SmallWindows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/Empty Project/SmallWindows/Window.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Cpp-Windows-Programming/HEAD/README.md --------------------------------------------------------------------------------