home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / winfe / advopdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.8 KB  |  65 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. // AdvOpDlg.h : header file
  19. //
  20. #ifndef _ADVOPDLG__H_
  21. #define _ADVOPDLG__H_
  22.  
  23. #include <afxwin.h>
  24.  
  25. #define WM_ADVANCED_OPTIONS_DONE (WM_USER + 1555)
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CAdvSearchOptionsDlg dialog
  28.  
  29. class CAdvSearchOptionsDlg : public CDialog
  30. {
  31. // Construction
  32. public:
  33.     CAdvSearchOptionsDlg(CWnd* pParent = NULL);   // standard constructor
  34.  
  35.     void PostNcDestroy();
  36. // Dialog Data
  37.     //{{AFX_DATA(CAdvSearchOptionsDlg)
  38.     enum { IDD = IDD_ADVANCED_SEARCH };
  39.     BOOL    m_bIncludeSubfolders;
  40.     int        m_iSearchArea;
  41.     //}}AFX_DATA
  42.     BOOL m_bChanges;
  43.     CWnd *m_pParent;
  44. // Overrides
  45.     // ClassWizard generated virtual function overrides
  46.     //{{AFX_VIRTUAL(CAdvSearchOptionsDlg)
  47.     protected:
  48.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  49.     //}}AFX_VIRTUAL
  50.  
  51. // Implementation
  52. protected:
  53.     // Generated message map functions
  54.     //{{AFX_MSG(CAdvSearchOptionsDlg)
  55.     afx_msg void OnOK();
  56.     afx_msg BOOL OnInitDialog();
  57.     afx_msg void OnHelp();
  58.     afx_msg void OnClose();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. #endif
  64.  
  65.