home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c11 / lab04 / ex01 / baseline / gpsnkdlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  4.2 KB  |  175 lines

  1. // gpsnkDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "gpsnk.h"
  6. #include "gpsnkDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CAboutDlg dialog used for App About
  16.  
  17. class CAboutDlg : public CDialog
  18. {
  19. public:
  20.     CAboutDlg();
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CAboutDlg)
  24.     enum { IDD = IDD_ABOUTBOX };
  25.     //}}AFX_DATA
  26.  
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CAboutDlg)
  29.     protected:
  30.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. protected:
  35.     //{{AFX_MSG(CAboutDlg)
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  41. {
  42.     //{{AFX_DATA_INIT(CAboutDlg)
  43.     //}}AFX_DATA_INIT
  44. }
  45.  
  46. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  47. {
  48.     CDialog::DoDataExchange(pDX);
  49.     //{{AFX_DATA_MAP(CAboutDlg)
  50.     //}}AFX_DATA_MAP
  51. }
  52.  
  53. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  54.     //{{AFX_MSG_MAP(CAboutDlg)
  55.         // No message handlers
  56.     //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CGpsnkDlg dialog
  61.  
  62. CGpsnkDlg::CGpsnkDlg(CWnd* pParent /*=NULL*/)
  63.     : CDialog(CGpsnkDlg::IDD, pParent)
  64. {
  65.     //{{AFX_DATA_INIT(CGpsnkDlg)
  66.         // NOTE: the ClassWizard will add member initialization here
  67.     m_strLatitude = _T("waiting...");
  68.     m_strLongitude = _T("waiting...");
  69.     //}}AFX_DATA_INIT
  70.     // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  71.     m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  72. }
  73.  
  74. void CGpsnkDlg::DoDataExchange(CDataExchange* pDX)
  75. {
  76.     CDialog::DoDataExchange(pDX);
  77.     //{{AFX_DATA_MAP(CGpsnkDlg)
  78.         // NOTE: the ClassWizard will add DDX and DDV calls here
  79.     DDX_Text(pDX, IDC_EDIT_LAT, m_strLatitude);
  80.     DDX_Text(pDX, IDC_EDIT_LON, m_strLongitude);
  81.     //}}AFX_DATA_MAP
  82. }
  83.  
  84. BEGIN_MESSAGE_MAP(CGpsnkDlg, CDialog)
  85.     //{{AFX_MSG_MAP(CGpsnkDlg)
  86.     ON_WM_SYSCOMMAND()
  87.     ON_WM_PAINT()
  88.     ON_WM_QUERYDRAGICON()
  89.     //}}AFX_MSG_MAP
  90. END_MESSAGE_MAP()
  91.  
  92. /////////////////////////////////////////////////////////////////////////////
  93. // CGpsnkDlg message handlers
  94.  
  95. BOOL CGpsnkDlg::OnInitDialog()
  96. {
  97.     CDialog::OnInitDialog();
  98.  
  99.     // Add "About..." menu item to system menu.
  100.  
  101.     // IDM_ABOUTBOX must be in the system command range.
  102.     ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  103.     ASSERT(IDM_ABOUTBOX < 0xF000);
  104.  
  105.     CMenu* pSysMenu = GetSystemMenu(FALSE);
  106.     if (pSysMenu != NULL)
  107.     {
  108.         CString strAboutMenu;
  109.         strAboutMenu.LoadString(IDS_ABOUTBOX);
  110.         if (!strAboutMenu.IsEmpty())
  111.         {
  112.             pSysMenu->AppendMenu(MF_SEPARATOR);
  113.             pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  114.         }
  115.     }
  116.  
  117.     // Set the icon for this dialog.  The framework does this automatically
  118.     //  when the application's main window is not a dialog
  119.     SetIcon(m_hIcon, TRUE);            // Set big icon
  120.     SetIcon(m_hIcon, FALSE);        // Set small icon
  121.     
  122.     // TODO: Add extra initialization here
  123.     
  124.     return TRUE;  // return TRUE  unless you set the focus to a control
  125. }
  126.  
  127. void CGpsnkDlg::OnSysCommand(UINT nID, LPARAM lParam)
  128. {
  129.     if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  130.     {
  131.         CAboutDlg dlgAbout;
  132.         dlgAbout.DoModal();
  133.     }
  134.     else
  135.     {
  136.         CDialog::OnSysCommand(nID, lParam);
  137.     }
  138. }
  139.  
  140. // If you add a minimize button to your dialog, you will need the code below
  141. //  to draw the icon.  For MFC applications using the document/view model,
  142. //  this is automatically done for you by the framework.
  143.  
  144. void CGpsnkDlg::OnPaint() 
  145. {
  146.     if (IsIconic())
  147.     {
  148.         CPaintDC dc(this); // device context for painting
  149.  
  150.         SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  151.  
  152.         // Center icon in client rectangle
  153.         int cxIcon = GetSystemMetrics(SM_CXICON);
  154.         int cyIcon = GetSystemMetrics(SM_CYICON);
  155.         CRect rect;
  156.         GetClientRect(&rect);
  157.         int x = (rect.Width() - cxIcon + 1) / 2;
  158.         int y = (rect.Height() - cyIcon + 1) / 2;
  159.  
  160.         // Draw the icon
  161.         dc.DrawIcon(x, y, m_hIcon);
  162.     }
  163.     else
  164.     {
  165.         CDialog::OnPaint();
  166.     }
  167. }
  168.  
  169. // The system calls this to obtain the cursor to display while the user drags
  170. //  the minimized window.
  171. HCURSOR CGpsnkDlg::OnQueryDragIcon()
  172. {
  173.     return (HCURSOR) m_hIcon;
  174. }
  175.