1 /* AbiWord
2  * Copyright (C) 2000 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_GOTO_H
21 #define AP_WIN32DIALOG_GOTO_H
22 
23 #include "ap_Dialog_Goto.h"
24 #include "xap_Frame.h"
25 #include "xap_Win32DialogBase.h"
26 
27 /*****************************************************************/
28 
29 class ABI_EXPORT AP_Win32Dialog_Goto: public AP_Dialog_Goto, public XAP_Win32DialogBase
30 {
31 public:
32 	AP_Win32Dialog_Goto(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id);
33 	virtual ~AP_Win32Dialog_Goto(void);
34 
35 	static XAP_Dialog * 	static_constructor(XAP_DialogFactory *, XAP_Dialog_Id id);
36 
37 	virtual void			runModeless(XAP_Frame * pFrame);
38 	virtual void			destroy(void);
39 	virtual void			activate(void);
40 	virtual void			notifyActiveFrame(XAP_Frame *pFrame);
41 	virtual void			notifyCloseFrame(XAP_Frame *pFrame);
42 	static BOOL CALLBACK	s_dlgProc(HWND,UINT,WPARAM,LPARAM);
43 	void					GoTo (const char *number);
44 	void					setSelectedRow (int row);
45 	int 					getSelectedRow (void);
46 
pGetWindowHandle(void)47 	virtual  void * 		pGetWindowHandle( void ) { return (void *)  m_hWnd; }
48 
49 protected:
50 	BOOL					_onInitDialog(HWND hWnd, WPARAM wParam, LPARAM lParam);
51 	BOOL					_onCommand(HWND hWnd, WPARAM wParam, LPARAM lParam);
52 
53 	int 					    m_iRow;
54 	HWND					m_hWnd;
55 
56     UT_Win32LocaleString	m_oldvalue;
57 };
58 
59 #endif /* AP_WIN32DIALOG_GOTO_H */
60 
61