home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch03 / ch3_menu / readme.txt < prev    next >
Text File  |  1995-09-23  |  4KB  |  105 lines

  1. ========================================================================
  2.        MICROSOFT FOUNDATION CLASS LIBRARY : ch3_menu
  3. ========================================================================
  4.  
  5.  
  6. AppWizard has created this ch3_menu application for you.  This application
  7. not only demonstrates the basics of using the Microsoft Foundation classes
  8. but is also a starting point for writing your application.
  9.  
  10. This file contains a summary of what you will find in each of the files that
  11. make up your ch3_menu application.
  12.  
  13. ch3_menu.h
  14.     This is the main header file for the application.  It includes other
  15.     project specific headers (including Resource.h) and declares the
  16.     CChapter03MenApp application class.
  17.  
  18. ch3_menu.cpp
  19.     This is the main application source file that contains the application
  20.     class CChapter03MenApp.
  21.  
  22. ch3_menu.rc
  23.     This is a listing of all of the Microsoft Windows resources that the
  24.     program uses.  It includes the icons, bitmaps, and cursors that are stored
  25.     in the RES subdirectory.  This file can be directly edited in Microsoft
  26.     Developer Studio.
  27.  
  28. res\ch3_menu.ico
  29.     This is an icon file, which is used as the application's icon.  This
  30.     icon is included by the main resource file ch3_menu.rc.
  31.  
  32. res\ch3_menu.rc2
  33.     This file contains resources that are not edited by Microsoft 
  34.     Developer Studio.  You should place all resources not
  35.     editable by the resource editor in this file.
  36.  
  37. ch3_menu.reg
  38.     This is an example .REG file that shows you the kind of registration
  39.     settings the framework will set for you.  You can use this as a .REG
  40.     file to go along with your application or just delete it and rely
  41.     on the default RegisterShellFileTypes registration.
  42.  
  43. ch3_menu.clw
  44.     This file contains information used by ClassWizard to edit existing
  45.     classes or add new classes.  ClassWizard also uses this file to store
  46.     information needed to create and edit message maps and dialog data
  47.     maps and to create prototype member functions.
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.  
  51. For the main frame window:
  52.  
  53. MainFrm.h, MainFrm.cpp
  54.     These files contain the frame class CMainFrame, which is derived from
  55.     CFrameWnd and controls all SDI frame features.
  56.  
  57. res\Toolbar.bmp
  58.     This bitmap file is used to create tiled images for the toolbar.
  59.     The initial toolbar and status bar are constructed in the
  60.     CMainFrame class.  Edit this toolbar bitmap along with the
  61.     array in MainFrm.cpp to add more toolbar buttons.
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.  
  65. AppWizard creates one document type and one view:
  66.  
  67. ch3mDoc.h, ch3mDoc.cpp - the document
  68.     These files contain your CChapter03MenuDoc class.  Edit these files to
  69.     add your special document data and to implement file saving and loading
  70.     (via CChapter03MenuDoc::Serialize).
  71.  
  72. ch3mView.h, ch3mView.cpp - the view of the document
  73.     These files contain your CChapter03MenuView class.
  74.     CChapter03MenuView objects are used to view CChapter03MenuDoc objects.
  75.  
  76.  
  77.  
  78. /////////////////////////////////////////////////////////////////////////////
  79. Other standard files:
  80.  
  81. StdAfx.h, StdAfx.cpp
  82.     These files are used to build a precompiled header (PCH) file
  83.     named ch3_menu.pch and a precompiled types file named StdAfx.obj.
  84.  
  85. Resource.h
  86.     This is the standard header file, which defines new resource IDs.
  87.     Microsoft Developer Studio reads and updates this file.
  88.  
  89. /////////////////////////////////////////////////////////////////////////////
  90. Other notes:
  91.  
  92. AppWizard uses "TODO:" to indicate parts of the source code you
  93. should add to or customize.
  94.  
  95. If your application uses MFC in a shared DLL, and your application is 
  96. in a language other than the operating system's current language, you
  97. will need to copy the corresponding localized resources MFC40XXX.DLL
  98. from the Microsoft Visual C++ CD-ROM onto the system or system32 directory,
  99. and rename it to be MFCLOC.DLL.  ("XXX" stands for the language abbreviation.
  100. For example, MFC40DEU.DLL contains resources translated to German.)  If you
  101. don't do this, some of the UI elements of your application will remain in the
  102. language of the operating system.
  103.  
  104. /////////////////////////////////////////////////////////////////////////////
  105.