home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / SOFT / FONTC.ZIP / TEMP / FontTest / FontTestDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-25  |  4.1 KB  |  173 lines

  1. // FontTestDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "FontTest.h"
  6. #include "FontTestDlg.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. // CFontTestDlg dialog
  61.  
  62. CFontTestDlg::CFontTestDlg(CWnd* pParent /*=NULL*/)
  63.     : CDialog(CFontTestDlg::IDD, pParent)
  64. {
  65.     //{{AFX_DATA_INIT(CFontTestDlg)
  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 CFontTestDlg::DoDataExchange(CDataExchange* pDX)
  73. {
  74.     CDialog::DoDataExchange(pDX);
  75.     //{{AFX_DATA_MAP(CFontTestDlg)
  76.     //}}AFX_DATA_MAP
  77. }
  78.  
  79. BEGIN_MESSAGE_MAP(CFontTestDlg, CDialog)
  80.     //{{AFX_MSG_MAP(CFontTestDlg)
  81.     ON_WM_SYSCOMMAND()
  82.     ON_WM_PAINT()
  83.     ON_WM_QUERYDRAGICON()
  84.     //}}AFX_MSG_MAP
  85. END_MESSAGE_MAP()
  86.  
  87. /////////////////////////////////////////////////////////////////////////////
  88. // CFontTestDlg message handlers
  89.  
  90. BOOL CFontTestDlg::OnInitDialog()
  91. {
  92.     CDialog::OnInitDialog();
  93.  
  94.     // Add "About..." menu item to system menu.
  95.  
  96.     // IDM_ABOUTBOX must be in the system command range.
  97.     ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  98.     ASSERT(IDM_ABOUTBOX < 0xF000);
  99.  
  100.     CMenu* pSysMenu = GetSystemMenu(FALSE);
  101.     if (pSysMenu != NULL)
  102.     {
  103.         CString strAboutMenu;
  104.         strAboutMenu.LoadString(IDS_ABOUTBOX);
  105.         if (!strAboutMenu.IsEmpty())
  106.         {
  107.             pSysMenu->AppendMenu(MF_SEPARATOR);
  108.             pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  109.         }
  110.     }
  111.  
  112.     // Set the icon for this dialog.  The framework does this automatically
  113.     //  when the application's main window is not a dialog
  114.     SetIcon(m_hIcon, TRUE);            // Set big icon
  115.     SetIcon(m_hIcon, FALSE);        // Set small icon
  116.     
  117.     // TODO: Add extra initialization here
  118.  
  119.     m_cboFont.SubclassDlgItem(IDC_COMBO1,this);
  120.     m_cboFont.Initialize();
  121.     
  122.     return TRUE;  // return TRUE  unless you set the focus to a control
  123. }
  124.  
  125. void CFontTestDlg::OnSysCommand(UINT nID, LPARAM lParam)
  126. {
  127.     if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  128.     {
  129.         CAboutDlg dlgAbout;
  130.         dlgAbout.DoModal();
  131.     }
  132.     else
  133.     {
  134.         CDialog::OnSysCommand(nID, lParam);
  135.     }
  136. }
  137.  
  138. // If you add a minimize button to your dialog, you will need the code below
  139. //  to draw the icon.  For MFC applications using the document/view model,
  140. //  this is automatically done for you by the framework.
  141.  
  142. void CFontTestDlg::OnPaint() 
  143. {
  144.     if (IsIconic())
  145.     {
  146.         CPaintDC dc(this); // device context for painting
  147.  
  148.         SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  149.  
  150.         // Center icon in client rectangle
  151.         int cxIcon = GetSystemMetrics(SM_CXICON);
  152.         int cyIcon = GetSystemMetrics(SM_CYICON);
  153.         CRect rect;
  154.         GetClientRect(&rect);
  155.         int x = (rect.Width() - cxIcon + 1) / 2;
  156.         int y = (rect.Height() - cyIcon + 1) / 2;
  157.  
  158.         // Draw the icon
  159.         dc.DrawIcon(x, y, m_hIcon);
  160.     }
  161.     else
  162.     {
  163.         CDialog::OnPaint();
  164.     }
  165. }
  166.  
  167. // The system calls this to obtain the cursor to display while the user drags
  168. //  the minimized window.
  169. HCURSOR CFontTestDlg::OnQueryDragIcon()
  170. {
  171.     return (HCURSOR) m_hIcon;
  172. }
  173.