kde-extraapps/kdeplasma-addons/applets/comic/comicarchivedialog.cpp
2015-01-15 17:07:43 +00:00

200 lines
7.6 KiB
C++

/***************************************************************************
* Copyright (C) 2011 Matthias Fuchs <mat69@gmx.net> *
* *
* 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 "comicarchivedialog.h"
#include "comicarchivejob.h"
#include <KFileDialog>
ComicArchiveDialog::ComicArchiveDialog( const QString &pluginName, const QString &comicName, IdentifierType identifierType, const QString &currentIdentifierSuffix, const QString &firstIdentifierSuffix, const QString &savingDir, QWidget *parent )
: KDialog( parent ),
mIdentifierType( identifierType ),
mPluginName( pluginName )
{
QWidget *widget = new QWidget(this);
ui.setupUi(widget);
setCaption( i18n( "Create %1 Comic Book Archive", comicName ) );
setMainWidget( widget );
switch ( mIdentifierType ) {
case Date: {
const QDate current = QDate::fromString( currentIdentifierSuffix, "yyyy-MM-dd" );
const QDate first = QDate::fromString( firstIdentifierSuffix, "yyyy-MM-dd" );
const QDate today = QDate::currentDate();
QDate maxDate = today;
if ( current.isValid() ) {
ui.fromDate->setDate( current );
ui.toDate->setDate( current );
maxDate = ( today > current ? today : current );
}
if ( first.isValid() ) {
ui.fromDate->setMinimumDate( first );
ui.toDate->setMinimumDate( first );
}
connect( ui.fromDate, SIGNAL(dateChanged(QDate)), this, SLOT(fromDateChanged(QDate)) );
connect( ui.toDate, SIGNAL(dateChanged(QDate)), this, SLOT(toDateChanged(QDate)) );
break;
}
case Number: {
bool ok;
const int current = currentIdentifierSuffix.toInt( &ok );
if ( ok ) {
ui.fromNumber->setValue( current );
ui.toNumber->setValue( current );
}
const int first = firstIdentifierSuffix.toInt( &ok );
if ( ok ) {
ui.fromNumber->setMinimum( first );
ui.toNumber->setMinimum( first );
}
break;
}
case String: {
ui.fromString->setText( currentIdentifierSuffix );
ui.toString->setText( currentIdentifierSuffix );
connect( ui.fromString, SIGNAL(textEdited(QString)), this, SLOT(updateOkButton()) );
connect( ui.toString, SIGNAL(textEdited(QString)), this, SLOT(updateOkButton()) );
break;
}
}
ui.types->setCurrentIndex( mIdentifierType );
archiveTypeChanged( ComicArchiveJob::ArchiveAll );
//TODO suggest file name!
ui.dest->fileDialog()->setOperationMode( KFileDialog::Saving );
if ( !savingDir.isEmpty() ) {
ui.dest->setStartDir( savingDir );
}
connect( ui.archiveType, SIGNAL(currentIndexChanged(int)), this, SLOT(archiveTypeChanged(int)) );
connect( ui.dest, SIGNAL(textChanged(QString)), this, SLOT(updateOkButton()) );
connect( this, SIGNAL(okClicked()), this, SLOT(slotOkClicked()) );
}
void ComicArchiveDialog::archiveTypeChanged( int newType )
{
switch ( newType ) {
case ComicArchiveJob::ArchiveAll:
setFromVisible( false );
setToVisibile( false );
break;
break;
case ComicArchiveJob::ArchiveEndTo:
case ComicArchiveJob::ArchiveStartTo:
setFromVisible( false );
setToVisibile( true );
break;
case ComicArchiveJob::ArchiveFromTo:
setFromVisible( true );
setToVisibile( true );
break;
}
updateOkButton();
}
void ComicArchiveDialog::fromDateChanged( const QDate &newDate )
{
if ( ui.toDate->date() < newDate ) {
ui.toDate->setDate( newDate );
}
updateOkButton();
}
void ComicArchiveDialog::toDateChanged( const QDate &newDate )
{
if ( ui.fromDate->date() > newDate ) {
ui.fromDate->setDate( newDate );
}
updateOkButton();
}
void ComicArchiveDialog::updateOkButton()
{
const int archiveType = ui.archiveType->currentIndex();
bool okEnabled = true;
//string is handled here, as it is the only identifier which can be invalid (empty)
if ( mIdentifierType == String ) {
if ( archiveType == ComicArchiveJob::ArchiveAll ) {
okEnabled = true ;
} else if ( ui.archiveType->currentIndex() == ComicArchiveJob::ArchiveFromTo ) {
okEnabled = !ui.fromString->text().isEmpty() && !ui.toString->text().isEmpty();
} else {
okEnabled = !ui.toString->text().isEmpty();
}
}
okEnabled = ( okEnabled && !ui.dest->url().isEmpty() );
enableButtonOk( okEnabled );
}
void ComicArchiveDialog::slotOkClicked()
{
const int archiveType = ui.archiveType->currentIndex();
QString fromIdentifier;
QString toIdentifier;
switch ( mIdentifierType ) {
case Date:
fromIdentifier = ui.fromDate->date().toString( "yyyy-MM-dd" );
toIdentifier = ui.toDate->date().toString( "yyyy-MM-dd" );
break;
case Number: {
fromIdentifier = QString::number( ui.fromNumber->value() );
toIdentifier = QString::number( ui.toNumber->value() );
//the user entered from and to wrong, swap them
if ( ( archiveType == ComicArchiveJob::ArchiveFromTo) && ( ui.toNumber->value() < ui.fromNumber->value() ) ) {
QString temp = fromIdentifier;
fromIdentifier = toIdentifier;
toIdentifier = temp;
}
break;
}
case String:
fromIdentifier = ui.fromString->text();
toIdentifier = ui.toString->text();
break;
}
emit archive( archiveType, ui.dest->url(), fromIdentifier, toIdentifier );
}
void ComicArchiveDialog::setFromVisible( bool visible )
{
ui.fromDateLabel->setVisible( visible );
ui.fromDate->setVisible( visible );
ui.fromNumberLabel->setVisible( visible );
ui.fromNumber->setVisible( visible );
ui.fromStringLabel->setVisible( visible );
ui.fromString->setVisible( visible );
}
void ComicArchiveDialog::setToVisibile( bool visible )
{
ui.toDateLabel->setVisible( visible );
ui.toDate->setVisible( visible );
ui.toNumberLabel->setVisible( visible );
ui.toNumber->setVisible( visible );
ui.toStringLabel->setVisible( visible );
ui.toString->setVisible( visible );
}