mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
57 lines
2.4 KiB
C++
57 lines
2.4 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 . *
|
|
***************************************************************************/
|
|
|
|
#ifndef COMIC_ARCHIVE_DIALOG_H
|
|
#define COMIC_ARCHIVE_DIALOG_H
|
|
|
|
#include "comicinfo.h"
|
|
|
|
#include "ui_comicarchivedialog.h"
|
|
|
|
#include <KDialog>
|
|
|
|
|
|
class ComicArchiveDialog : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ComicArchiveDialog( const QString &pluginName, const QString &comicName, IdentifierType identifierType, const QString ¤tIdentifierSuffix, const QString &firstIdentifierSuffix, const QString &savingDir = QString(), QWidget *parent = 0 );
|
|
|
|
signals:
|
|
void archive( int archiveType, const KUrl &dest, const QString &fromIdentifier, const QString &toIdentifier );
|
|
|
|
private slots:
|
|
void archiveTypeChanged( int newType );
|
|
void fromDateChanged( const QDate &newDate );
|
|
void toDateChanged( const QDate &newDate );
|
|
void slotOkClicked();
|
|
void updateOkButton();
|
|
|
|
private:
|
|
void setFromVisible( bool visible );
|
|
void setToVisibile( bool visible );
|
|
|
|
private:
|
|
Ui::ComicArchiveDialog ui;
|
|
IdentifierType mIdentifierType;
|
|
QString mPluginName;
|
|
};
|
|
|
|
#endif
|