home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / leadtools / ocx32.lt / ZOOMDLG.H < prev   
Encoding:
C/C++ Source or Header  |  1995-11-22  |  1.0 KB  |  46 lines

  1. // tkickdlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CZoomDlg dialog
  6.  
  7. class CZoomDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.         CZoomDlg(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.         //{{AFX_DATA(CZoomDlg)
  15.     enum { IDD = IDD_THICKOPT };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.         //{{AFX_VIRTUAL(CZoomDlg)
  23.     protected:
  24.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25.     //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.  
  30.     // Generated message map functions
  31.         //{{AFX_MSG(CZoomDlg)
  32.     afx_msg void OnChangeEdit1();
  33.     virtual void OnOK();
  34.     virtual BOOL OnInitDialog();
  35.     afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38.  
  39. public:
  40.     int nZoomFactor;
  41.     int nZoomMin;
  42.     int nZoomMax;
  43.     int nZoomLineInc;
  44.     int nZoomPageInc;
  45. };
  46.