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_FORMATTABLE_H
21 #define AP_WIN32DIALOG_FORMATTABLE_H
22 
23 #include "ap_Dialog_FormatTable.h"
24 #include "xap_Frame.h"
25 #include "xap_Win32PreviewWidget.h"
26 #include "gr_Win32Graphics.h"
27 #include "xap_Win32ColourButton.h"
28 #include "xap_Win32DialogBase.h"
29 
30 /*****************************************************************/
31 
32 class ABI_EXPORT AP_Win32Dialog_FormatTable: public AP_Dialog_FormatTable, public XAP_Win32DialogBase
33 {
34 public:
35 	AP_Win32Dialog_FormatTable(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id);
36 	virtual ~AP_Win32Dialog_FormatTable(void);
37 
38 	virtual void			runModeless(XAP_Frame * pFrame);
39 
40 	static XAP_Dialog *		static_constructor(XAP_DialogFactory *, XAP_Dialog_Id id);
41 
42 	virtual void			event_Close(void);
43 	void					event_previewExposed(void);
44 	virtual void			setBackgroundColorInGUI(UT_RGBColor clr);
45 	virtual void            setBorderThicknessInGUI(UT_UTF8String & sThick);
46 	virtual void            setSensitivity(bool bsens);
47 	virtual void            destroy(void);
48 	virtual void            activate(void);
49 	virtual void            notifyActiveFrame(XAP_Frame * pFrame);
50 
51 	virtual BOOL			_onInitDialog(HWND hWnd, WPARAM wParam, LPARAM lParam);
52 	virtual BOOL 			_onCommand(HWND hWnd, WPARAM wParam, LPARAM lParam);
53     virtual BOOL 			_onDlgMessage(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
54 
55 
56 protected:
57 	HBITMAP					m_hBitmapBottom;
58 	HBITMAP					m_hBitmapTop;
59 	HBITMAP					m_hBitmapRight;
60 	HBITMAP					m_hBitmapLeft;
61 	XAP_Win32PreviewWidget*	m_pPreviewWidget;
62 	XAP_Win32ColourButton	m_backgButton;
63 	XAP_Win32ColourButton	m_borderButton;
64 	double					m_dThickness[FORMAT_TABLE_NUMTHICKNESS];
65 
66 };
67 
68 #endif /* AP_WIN32DIALOG_FORMATTABLE_H */
69