1 /* AbiSource Application Framework
2  * Copyright (C) 1998-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 XAP_WIN32FONTPREVIEW_H
21 #define XAP_WIN32FONTPREVIEW_H
22 
23 #include "xap_App.h"
24 #include "xap_FontPreview.h"
25 #include "xap_Frame.h"
26 
27 class GR_Win32Graphics;
28 
29 class ABI_EXPORT XAP_Win32FontPreview : public XAP_FontPreview
30 {
31 public:
32 	XAP_Win32FontPreview(XAP_Frame * pFrame, UT_sint32 left, UT_uint32 top);
33 	virtual ~XAP_Win32FontPreview(void);
34 
35 	GR_Win32Graphics * 		m_gc;
36 protected:
37 private:
38 	/*
39 	? 					m_pPreviewWindow;
40 	? 					m_pDrawingArea;
41 	*/
42 	UT_sint32				m_left;
43 	UT_sint32				m_top;
44 };
45 
46 #endif /* XAP_WIN32FONTPREVIEW_H */
47