home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / HISTORY.ZIP / Hacks / HistoryEditDemo / HistoryEditDemoDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-15  |  4.8 KB  |  201 lines

  1. // HistoryEditDemoDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "HistoryEditDemo.h"
  6. #include "HistoryEditDemoDlg.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. // CHistoryEditDemoDlg dialog
  61.  
  62. CHistoryEditDemoDlg::CHistoryEditDemoDlg(CWnd* pParent /*=NULL*/)
  63.     : CDialog(CHistoryEditDemoDlg::IDD, pParent)
  64. {
  65.     //{{AFX_DATA_INIT(CHistoryEditDemoDlg)
  66.         // NOTE: the ClassWizard will add member initialization here
  67.     //}}AFX_DATA_INIT
  68.     // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  69.     m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  70. }
  71.  
  72. void CHistoryEditDemoDlg::DoDataExchange(CDataExchange* pDX)
  73. {
  74.     CDialog::DoDataExchange(pDX);
  75.     //{{AFX_DATA_MAP(CHistoryEditDemoDlg)
  76.         // NOTE: the ClassWizard will add DDX and DDV calls here
  77.     //}}AFX_DATA_MAP
  78. }
  79.  
  80. BEGIN_MESSAGE_MAP(CHistoryEditDemoDlg, CDialog)
  81.     //{{AFX_MSG_MAP(CHistoryEditDemoDlg)
  82.     ON_WM_SYSCOMMAND()
  83.     ON_WM_PAINT()
  84.     ON_WM_QUERYDRAGICON()
  85.     ON_BN_CLICKED(CHECK_ALLOWSELECT, OnAllowselect)
  86.     ON_BN_CLICKED(BUTTON_ADD, OnAdd)
  87.     ON_BN_CLICKED(BUTTON_CLEAR, OnClear)
  88.     ON_BN_CLICKED(BUTTON_CLOSE, OnClose)
  89.     //}}AFX_MSG_MAP
  90. END_MESSAGE_MAP()
  91.  
  92. /////////////////////////////////////////////////////////////////////////////
  93. // CHistoryEditDemoDlg message handlers
  94.  
  95. BOOL CHistoryEditDemoDlg::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.     // Subclass the history edit control
  123.   m_HistoryEdit.SubclassDlgItem (EDIT_HISTORY, this);
  124.     
  125.     return TRUE;  // return TRUE  unless you set the focus to a control
  126. }
  127.  
  128. void CHistoryEditDemoDlg::OnSysCommand(UINT nID, LPARAM lParam)
  129. {
  130.     if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  131.     {
  132.         CAboutDlg dlgAbout;
  133.         dlgAbout.DoModal();
  134.     }
  135.     else
  136.     {
  137.         CDialog::OnSysCommand(nID, lParam);
  138.     }
  139. }
  140.  
  141. // If you add a minimize button to your dialog, you will need the code below
  142. //  to draw the icon.  For MFC applications using the document/view model,
  143. //  this is automatically done for you by the framework.
  144.  
  145. void CHistoryEditDemoDlg::OnPaint() 
  146. {
  147.     if (IsIconic())
  148.     {
  149.         CPaintDC dc(this); // device context for painting
  150.  
  151.         SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  152.  
  153.         // Center icon in client rectangle
  154.         int cxIcon = GetSystemMetrics(SM_CXICON);
  155.         int cyIcon = GetSystemMetrics(SM_CYICON);
  156.         CRect rect;
  157.         GetClientRect(&rect);
  158.         int x = (rect.Width() - cxIcon + 1) / 2;
  159.         int y = (rect.Height() - cyIcon + 1) / 2;
  160.  
  161.         // Draw the icon
  162.         dc.DrawIcon(x, y, m_hIcon);
  163.     }
  164.     else
  165.     {
  166.         CDialog::OnPaint();
  167.     }
  168. }
  169.  
  170. // The system calls this to obtain the cursor to display while the user drags
  171. //  the minimized window.
  172. HCURSOR CHistoryEditDemoDlg::OnQueryDragIcon()
  173. {
  174.     return (HCURSOR) m_hIcon;
  175. }
  176.  
  177. void CHistoryEditDemoDlg::OnAllowselect() 
  178. {
  179.   m_HistoryEdit.AllowSelection (IsDlgButtonChecked (CHECK_ALLOWSELECT));
  180. }
  181.  
  182. void CHistoryEditDemoDlg::OnAdd() 
  183. {
  184. CString   strText;
  185.  
  186.   GetDlgItemText (EDIT_TEXT, strText);
  187.   m_HistoryEdit.AppendString (strText);
  188.   SetDlgItemText (EDIT_TEXT, "");
  189. }
  190.  
  191. void CHistoryEditDemoDlg::OnClear() 
  192. {
  193.   SetDlgItemText (EDIT_HISTORY, "");
  194. }
  195.  
  196. void CHistoryEditDemoDlg::OnClose() 
  197. {
  198.   CDialog::OnOK();
  199. }
  200.  
  201.