home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / Colormer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-10  |  1.3 KB  |  56 lines

  1. // colormer.h : header file
  2. // Copyright (C) 1990, 1998 LEAD Technologies, Inc.
  3. // All rights reserved.
  4.  
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CColorMergeDlg dialog
  7.  
  8. class CColorMergeDlg : public CDialog
  9. {
  10. // Construction
  11. public:
  12.     CColorMergeDlg(CWnd* pParent = NULL, CDocument *pDoc = NULL);   // standard constructor
  13.     CDocument *pDoc;
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CColorMergeDlg)
  17.     enum { IDD = IDD_COLORMERGE };
  18.     CStatic    m_Static4;
  19.     CStatic    m_Static3;
  20.     CStatic    m_Static2;
  21.     CStatic    m_Static1;
  22.     CComboBox    m_Combo4;
  23.     CComboBox    m_Combo3;
  24.     CComboBox    m_Combo2;
  25.     CComboBox    m_Combo1;
  26.    CPtrArray* m_pDocArray;
  27.    DWORD m_dwFlags;
  28.    CDocument* m_pDocument[4];
  29.     //}}AFX_DATA
  30.  
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(CColorMergeDlg)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(CColorMergeDlg)
  45.     virtual BOOL OnInitDialog();
  46.     afx_msg void OnDestroy();
  47.     virtual void OnOK();
  48.     afx_msg void OnRadio1();
  49.     afx_msg void OnRadio2();
  50.     afx_msg void OnRadio3();
  51.     afx_msg void OnRadio4();
  52.     afx_msg void OnRadio5();
  53.     //}}AFX_MSG
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.