home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Windows 95 Special 1 / WINDOWS95_1.bin / internet / vogon / textdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-29  |  1.0 KB  |  46 lines

  1. // textdlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CTextRetrievalDlg dialog
  6.  
  7. class CTextRetrievalDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CTextRetrievalDlg(_DWebster* pWebsterDispatch, CWnd* pParent = NULL);
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CTextRetrievalDlg)
  15.     enum { IDD = IDD_DIALOG_SHOWTEXT };
  16.     CStatic    m_staticTitle;
  17.     CStatic    m_staticSourceBytes;
  18.     CStatic    m_staticPureBytes;
  19.     CEdit    m_editText;
  20.     //}}AFX_DATA
  21.  
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CTextRetrievalDlg)
  26.     protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. protected:
  32.    void UpdateFromText(BOOL bPure);
  33.  
  34. protected:
  35.    _DWebster* m_pWebsterDispatch;
  36.  
  37.     // Generated message map functions
  38.     //{{AFX_MSG(CTextRetrievalDlg)
  39.     afx_msg void OnButtonSource();
  40.     afx_msg void OnButtonPure();
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnButtonCopy();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.