You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/keduca/keduca/keduca.cpp

131 lines
3.4 KiB

/***************************************************************************
keduca.cpp - description
-------------------
begin : mi<6D> may 23 20:36:15 CEST 2001
copyright : (C) 2001 by Javier Campos
email : javi@asyris.org
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "keduca.h"
#include "keduca.moc"
#include "keduca_part.h"
#include "../libkeduca/kgallerydialog.h"
#include <kapplication.h>
#include <klocale.h>
#include <kstandarddirs.h>
#include <kfiledialog.h>
#include <kdebug.h>
#include <kparts/componentfactory.h>
#include <tqlabel.h>
Keduca::Keduca( TQWidget* parent, const char *name, WFlags f )
: KParts::MainWindow( parent, name, f ), _part( 0 )
{
setXMLFile( "keducaui.rc" );
_part = KParts::ComponentFactory::createPartInstanceFromLibrary< KParts::ReadOnlyPart >
( "libkeducapart", this, name, TQT_TQOBJECT(this), "KEducaPart" );
if ( _part )
{
setCentralWidget( _part->widget() );
setupActions();
configRead();
createGUI( _part );
}
else
{
kdFatal() << "The library \"libkeducapart\" could not be found. Aborting." << endl;
}
if (!initialGeometrySet())
resize( TQSize(550, 450).expandedTo(minimumSizeHint()));
}
Keduca::~Keduca()
{
}
void Keduca::setupActions()
{
KStdAction::open( TQT_TQOBJECT(this), TQT_SLOT( slotFileOpen() ), actionCollection() );
(void)new KAction( i18n( "Open &Gallery..." ), 0, 0, TQT_TQOBJECT(this), TQT_SLOT( slotGallery() ),
actionCollection(), "open_gallery" );
_recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT ( slotFileOpenURL(const KURL &) ),
actionCollection());
KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT( quit() ), actionCollection());
}
void Keduca::slotFileOpen()
{
KURL url = KFileDialog::getOpenURL( TQString(), "application/x-edu", this, i18n("Open Educa File") );
if( !url.isEmpty() )
slotFileOpenURL( url );
}
void Keduca::slotFileOpenURL( const KURL &url )
{
if( !_part->openURL(url) ) return;
_recentFiles->addURL( url );
}
/*void Keduca::slotFileClose()
{
init();
}*/
bool Keduca::queryClose()
{
configWrite();
return( TRUE );
}
void Keduca::configRead()
{
KConfig *config = KGlobal::config();
config->setGroup( "keduca" );
applyMainWindowSettings( config, "keduca" );
_recentFiles->loadEntries(config);
}
void Keduca::configWrite()
{
KConfig *config = KGlobal::config();
config->setGroup( "keduca" );
saveMainWindowSettings( config, "keduca" );
_recentFiles->saveEntries(config);
config->sync();
}
void Keduca::slotGallery()
{
initGallery();
}
void Keduca::initGallery(const KURL &urlFile)
{
KGalleryDialog galleries;
if( !urlFile.url().isEmpty() )
galleries.putURL( urlFile );
if( galleries.exec() == TQDialog::Accepted )
slotFileOpenURL( galleries.getURL() );
}