/* AbiWord
 * Copyright (C) 2001 Martin Sevior <msevior@physics.unimelb.edu.au>
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  
 * 02111-1307, USA.
 */


#ifndef AP_PREVIEW_ABI_H
#define AP_PREVIEW_ABI_H

#include "ut_misc.h"
#include "ut_types.h"
#include "ut_vector.h"

#include "xap_Preview.h"
#include "xap_Frame.h"
#include "xap_App.h"
#include "fv_View.h"
#include "pd_Document.h"

class GR_Font;

class ABI_EXPORT AP_Preview_Abi : public XAP_Preview
{
public:

	AP_Preview_Abi(GR_Graphics * gc, UT_uint32 iWidth,  UT_uint32 iHeight,
				   XAP_Frame * pFrame, PreViewMode previewMode, PD_Document * pDoc = NULL);
	virtual ~AP_Preview_Abi(void);

	FV_View * getView(void) const;
	PD_Document * getDoc(void) const;
	virtual void draw(const UT_Rect *clip=NULL);
	
protected:
	
private:
	XAP_Frame * m_pFrame;
	FV_View * m_pView;
	FL_DocLayout * m_pDocLayout;
    PD_Document * m_pDocument;
};

#endif /* AP_PREVIEW_ABI_H */