// Copyright (c) 2000 Phil Thompson // // This file contains the implementation of the Kugar KPart. #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(HAVE_CONFIG_H) #include "config.h" #endif #include "kugar_part.h" #include "kugar_view.h" #include "kugar_factory.h" // The view ctor. KugarView::KugarView( KugarPart *part, TQWidget *parent, const char *name ) : KoView( part, parent, name ) { setInstance( KugarFactory::global() ); ( new TQVBoxLayout( this ) ) ->setAutoAdd( true ); view = new Kugar::MReportViewer( part->reportEngine(), this ); view -> setFocusPolicy( TQWidget::ClickFocus ); view -> show(); // setWidget(view); // m_extension = new KugarBrowserExtension(this); // Define the actions. KStdAction::prior( TQT_TQOBJECT(view), TQT_SLOT( slotPrevPage() ), actionCollection(), "kuPrevPage" ); KStdAction::next( TQT_TQOBJECT(view), TQT_SLOT( slotNextPage() ), actionCollection(), "kuNextPage" ); KStdAction::firstPage( TQT_TQOBJECT(view), TQT_SLOT( slotFirstPage() ), actionCollection(), "kuFirstPage" ); KStdAction::lastPage( TQT_TQOBJECT(view), TQT_SLOT( slotLastPage() ), actionCollection(), "kuLastPage" ); setXMLFile( "kugarpart.rc" ); } // The view dtor. KugarView::~KugarView() {} void KugarView::setupPrinter( KPrinter &printer ) { view->setupPrinter( printer ); } void KugarView::print( KPrinter &printer ) { view->printReport( printer ); } #if 0 // Open a data file. bool KugarPart::openFile() { bool ok = false; TQFile f( m_file ); if ( f.open( IO_ReadOnly ) ) { if ( view -> setReportData( &f ) ) { if ( view -> renderReport() ) ok = true; } else KMessageBox::sorry( this, i18n( "Invalid data file: %1" ).arg( m_file ) ); f.close(); } else KMessageBox::sorry( this, i18n( "Unable to open data file: %1" ).arg( m_file ) ); return ok; } // Close the data file. bool KugarPart::closeURL() { // Nothing to do. return true; } // Print the report. void KugarPart::print() { view -> printReport(); } #endif bool KugarView::renderReport() { return ( view -> renderReport() ); } #include "kugar_view.moc"