/* * * KEduca - Interactive Tests and Exams for KDE * * Copyright (c) * * 2004: Henrique Pinto * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "keduca_part.h" #include "keducaview.h" #include "settings.h" #include "configdialogbase.h" #include #include #include #include typedef KParts::GenericFactory KEducaPartFactory; K_EXPORT_COMPONENT_FACTORY( libkeducapart, KEducaPartFactory ) KEducaPart::KEducaPart( TQWidget *parentWidget, const char *widgetName, TQObject *parent, const char *name, const TQStringList &/*args*/ ) : KParts::ReadOnlyPart( parent, name ) { setInstance( KEducaPartFactory::instance() ); m_view = new KEducaView( parentWidget, widgetName ); m_view->show(); setWidget( m_view ); setupActions(); setXMLFile( "keduca_partui.rc" ); } KEducaPart::~KEducaPart() { } TDEAboutData* KEducaPart::createAboutData() { TDEAboutData *data = new TDEAboutData( "keduca", I18N_NOOP( "KEducaPart" ), "0.2", I18N_NOOP( "KEduca KParts Component" ), TDEAboutData::License_GPL, "(c) 2004, Henrique Pinto " ); return data; } bool KEducaPart::openFile() { return m_view->openURL( KURL( m_file ) ); } void KEducaPart::setupActions() { KStdAction::preferences( this, TQT_SLOT( slotConfigure() ), actionCollection(), "configure" ); } void KEducaPart::slotConfigure() { if ( TDEConfigDialog::showDialog( "KEducaSettings" ) ) return; TDEConfigDialog *dialog = new TDEConfigDialog( widget(), "KEducaSettings", Settings::self() ); ConfigDialogBase *confDlg = new ConfigDialogBase( 0, "ConfigDialogBase" ); dialog->addPage( confDlg, i18n("General"), "keduca" ); connect( dialog, TQT_SIGNAL( settingsChanged() ), TQT_SLOT( updateConfiguration() ) ); dialog->show(); } void KEducaPart::updateConfiguration() { Settings::writeConfig(); } #include "keduca_part.moc"