home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / winfe / dlghtmmq.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.9 KB  |  68 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18.  
  19. // dlghtmmq.h : header file
  20. //
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CHtmlMailQuestionDlg dialog
  24. #ifndef __dlghtmmq__
  25. #define __dlghtmmq__
  26.  
  27. class CHtmlMailQuestionDlg : public CDialog
  28. {
  29. // Construction
  30. public:
  31.     CHtmlMailQuestionDlg(MSG_Pane* pComposePane,CWnd* pParent = NULL);   // standard constructor
  32.  
  33. // Dialog Data
  34.     //{{AFX_DATA(CHtmlMailQuestionDlg)
  35.     enum { IDD = IDD_HTML_MAIL_QUESTION };
  36.     int        m_nRadioValue;
  37.     //}}AFX_DATA
  38.     MSG_Pane* m_pComposePane;
  39.     MSG_HTMLComposeAction m_HTMLComposeAction;
  40.  
  41.  
  42. // Overrides
  43.     // ClassWizard generated virtual function overrides
  44.     //{{AFX_VIRTUAL(CHtmlMailQuestionDlg)
  45.     protected:
  46.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. protected:
  51.  
  52.     // Generated message map functions
  53.     //{{AFX_MSG(CHtmlMailQuestionDlg)
  54.     virtual BOOL OnInitDialog();
  55.     afx_msg void OnBtnRecipients();
  56.     virtual void OnOK();
  57.     virtual void OnCancel();
  58.     afx_msg void OnHelp();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63.  
  64. int CreateAskHTMLDialog (MSG_Pane* composepane, void* closure);
  65.  
  66. #endif
  67.  
  68.