1 /* 2 BobToolz plugin for GtkRadiant 3 Copyright (C) 2001 Gordon Biggans 4 5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 10 This library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Lesser General Public License for more details. 14 15 You should have received a copy of the GNU Lesser General Public 16 License along with this library; if not, write to the Free Software 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 #if !defined( AFX_INTERSECTDIALOG_H__03507C01_D3B3_11D4_AE97_004095A18133__INCLUDED_ ) 21 #define AFX_INTERSECTDIALOG_H__03507C01_D3B3_11D4_AE97_004095A18133__INCLUDED_ 22 23 #if _MSC_VER > 1000 24 #pragma once 25 #endif // _MSC_VER > 1000 26 // IntersectDialog.h : header file 27 // 28 29 #define BRUSH_OPT_WHOLE_MAP 0 30 #define BRUSH_OPT_SELECTED 1 31 32 ///////////////////////////////////////////////////////////////////////////// 33 // CIntersectDialog dialog 34 35 class CIntersectDialog : public CDialog 36 { 37 // Construction 38 public: 39 CIntersectDialog( CWnd* pParent = NULL ); // standard constructor 40 41 // Dialog Data 42 //{{AFX_DATA(CIntersectDialog) 43 enum { IDD = IDD_INTERSECT_DIALOG }; 44 int m_nBrushOptions; 45 BOOL m_bUseDetail; 46 BOOL m_bDuplicateOnly; 47 //}}AFX_DATA 48 49 50 // Overrides 51 // ClassWizard generated virtual function overrides 52 //{{AFX_VIRTUAL(CIntersectDialog) 53 protected: 54 virtual void DoDataExchange( CDataExchange* pDX ); // DDX/DDV support 55 //}}AFX_VIRTUAL 56 57 // Implementation 58 protected: 59 60 // Generated message map functions 61 //{{AFX_MSG(CIntersectDialog) 62 // NOTE: the ClassWizard will add member functions here 63 //}}AFX_MSG 64 DECLARE_MESSAGE_MAP() 65 }; 66 67 //{{AFX_INSERT_LOCATION}} 68 // Microsoft Visual C++ will insert additional declarations immediately before the previous line. 69 70 #endif // !defined(AFX_INTERSECTDIALOG_H__03507C01_D3B3_11D4_AE97_004095A18133__INCLUDED_) 71