home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ript32 / sample / rtabdial.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-21  |  912 b   |  39 lines

  1. // rtabdial.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CRTabDialog dialog
  6.  
  7. class CRTabDialog : public CTabDialog
  8. {
  9. // Construction
  10. public:
  11.     CRTabDialog(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CRTabDialog)
  15.     enum { IDD = IDD_RTABDIALOG };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19. // Implementation
  20. protected:
  21.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  22.  
  23.     virtual void SwitchToNotification(int TabIndex, CString* TabName);
  24.  
  25.     // Generated message map functions
  26.     //{{AFX_MSG(CRTabDialog)
  27.     virtual BOOL OnInitDialog();
  28.     virtual void OnOK();
  29.     afx_msg void OnClickedHelp();
  30.     virtual void OnCancel();
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33.  
  34. protected:
  35.     CPtrArray*             DlgOptionsList[2];
  36.     CRtab_samView*    MyView;
  37.     CString                    ActivePage;
  38. };
  39.