1 /* AbiWord
2  * Copyright (C) 1998 AbiSource, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA.
18  */
19 
20 #ifndef AP_WIN32DIALOG_REPLACE_H
21 #define AP_WIN32DIALOG_REPLACE_H
22 
23 #include "ap_Dialog_Replace.h"
24 #include "xap_Frame.h"
25 #include "xap_Win32DialogBase.h"
26 
27 
28 /*****************************************************************/
29 
30 class ABI_EXPORT AP_Win32Dialog_Replace: public AP_Dialog_Replace, XAP_Win32DialogBase
31 {
32 public:
33 	AP_Win32Dialog_Replace(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id);
34 	virtual ~AP_Win32Dialog_Replace(void);
35 
runModal(XAP_Frame *)36 	virtual void			runModal(XAP_Frame * /*pFrame*/){};
37 	virtual void			runModeless(XAP_Frame * pFrame);
38 	virtual void			notifyActiveFrame(XAP_Frame *pFrame);
39 	virtual void			notifyCloseFrame(XAP_Frame *pFrame);
40 	virtual void			destroy(void);
41 	virtual void			activate(void);
pGetWindowHandle(void)42 	virtual void *			pGetWindowHandle( void ) { return (void*)m_hDlg; }
43 
44 	static XAP_Dialog * 	static_constructor(XAP_DialogFactory *, XAP_Dialog_Id id);
45 
46     virtual void                    _updateLists();
47 
48 protected:
49 	void					    _initButtons(HWND hWnd);
50 	BOOL					_onInitDialog(HWND hWnd, WPARAM wParam, LPARAM lParam);
51 	BOOL					_onCommand(HWND hWnd, WPARAM wParam, LPARAM lParam);
52 	BOOL					_onBtn_Find(HWND hWnd, tFindType tFindType);
53 	void 					_updateList(HWND hWnd, UT_GenericVector<UT_UCS4Char*>* vec);
54 };
55 
56 #endif /* AP_WIN32DIALOG_REPLACE_H */
57