// Copyright (c) 2000 Phil Thompson // // This file contains the definition of the interface to the Kugar KPart. #ifndef _KUGAR_VIEW_H #define _KUGAR_VIEW_H #include "mreportviewer.h" #include class KugarPart; class KugarView: public KoView { Q_OBJECT public: KugarView( KugarPart *part, TQWidget *parent, const char *name ); virtual ~KugarView(); void setForcedUserTemplate( const TQString &name ); void updateReadWrite( bool ) { ; } bool renderReport(); bool setReportTemplate( const TQString &data ) { return view -> setReportTemplate( data ); } virtual void setupPrinter( KPrinter &printer ); virtual void print( KPrinter &printer ); //protected: // virtual bool openFile(); // virtual bool closeURL(); private: Kugar::MReportViewer *view; TQString m_forcedUserTemplate; }; #endif