home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / mycalc.cpp < prev    next >
C/C++ Source or Header  |  1995-10-16  |  3KB  |  144 lines

  1. // MyCalc.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MyCalc.h"
  6.  
  7. #include "mainfrm.h"
  8. #include "MyCaldoc.h"
  9. #include "MyCalvw.h"
  10. #include "calcdial.h"
  11.  
  12. #ifdef _DEBUG
  13. #undef THIS_FILE
  14. static char BASED_CODE THIS_FILE[] = __FILE__;
  15. #endif
  16.  
  17.  
  18. extern "C"
  19. {
  20.     extern __main( void );
  21. };
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CMyCalcApp
  25.  
  26. BEGIN_MESSAGE_MAP(CMyCalcApp, CWinApp)
  27.     //{{AFX_MSG_MAP(CMyCalcApp)
  28.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  29.         // NOTE - the ClassWizard will add and remove mapping macros here.
  30.         //    DO NOT EDIT what you see in these blocks of generated code!
  31.     //}}AFX_MSG_MAP
  32.     // Standard file based document commands
  33.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  34.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  35. END_MESSAGE_MAP()
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMyCalcApp construction
  39.  
  40. CMyCalcApp::CMyCalcApp()
  41. {
  42.     // TODO: add construction code here,
  43.     // Place all significant initialization in InitInstance
  44. }
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // The one and only CMyCalcApp object
  48.  
  49. CMyCalcApp theApp;
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CMyCalcApp initialization
  53.  
  54. BOOL CMyCalcApp::InitInstance()
  55. {
  56.     // Standard initialization
  57.     // If you are not using these features and wish to reduce the size
  58.     //  of your final executable, you should remove from the following
  59.     //  the specific initialization routines you do not need.
  60.  
  61. #ifndef __GNUC__
  62.     __main();
  63. #endif 
  64.  
  65.     Enable3dControls();
  66.  
  67.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  68.  
  69.     // Register the application's document templates.  Document templates
  70.     //  serve as the connection between documents, frame windows and views.
  71.  
  72.     CSingleDocTemplate* pDocTemplate;
  73.     pDocTemplate = new CSingleDocTemplate(
  74.         IDR_MAINFRAME,
  75.         RUNTIME_CLASS(CMyCalcDoc),
  76.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  77.         RUNTIME_CLASS(CMyCalcView));
  78.     AddDocTemplate(pDocTemplate);
  79.  
  80.     // create a new (empty) document
  81.     CCalcDialog calcDlg;
  82.     calcDlg.DoModal();
  83.  
  84.     // OnFileNew();
  85.  
  86. //    if (m_lpCmdLine[0] != '\0')
  87. //    {
  88.         // TODO: add command line processing here
  89. //    }
  90.  
  91.     return TRUE;
  92. }
  93.  
  94. /////////////////////////////////////////////////////////////////////////////
  95. // CAboutDlg dialog used for App About
  96.  
  97. class CAboutDlg : public CDialog
  98. {
  99. public:
  100.     CAboutDlg();
  101.  
  102. // Dialog Data
  103.     //{{AFX_DATA(CAboutDlg)
  104.     enum { IDD = IDD_ABOUTBOX };
  105.     //}}AFX_DATA
  106.  
  107. // Implementation
  108. protected:
  109.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  110.     //{{AFX_MSG(CAboutDlg)
  111.         // No message handlers
  112.     //}}AFX_MSG
  113.     DECLARE_MESSAGE_MAP()
  114. };
  115.  
  116. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  117. {
  118.     //{{AFX_DATA_INIT(CAboutDlg)
  119.     //}}AFX_DATA_INIT
  120. }
  121.  
  122. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  123. {
  124.     CDialog::DoDataExchange(pDX);
  125.     //{{AFX_DATA_MAP(CAboutDlg)
  126.     //}}AFX_DATA_MAP
  127. }
  128.  
  129. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  130.     //{{AFX_MSG_MAP(CAboutDlg)
  131.         // No message handlers
  132.     //}}AFX_MSG_MAP
  133. END_MESSAGE_MAP()
  134.  
  135. // App command to run the dialog
  136. void CMyCalcApp::OnAppAbout()
  137. {
  138.     CAboutDlg aboutDlg;
  139.     aboutDlg.DoModal();
  140. }
  141.  
  142. /////////////////////////////////////////////////////////////////////////////
  143. // CMyCalcApp commands
  144.