/* ============================================================ * File : calwizard.h * Author: Renchi Raju * Date : 2003-11-03 * Description : * * Copyright 2003 by Renchi Raju * * 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, 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. * * ============================================================ */ #ifndef CALWIZARD_H #define CALWIZARD_H // TQt includes. #include #include // KDE includes. #include // LibKIPI includes. #include // Local includes #include "kpaboutdata.h" class TQLabel; class TQVBox; class TQPainter; class TQProgressBar; class TQPushButton; class KPrinter; namespace KIPICalendarPlugin { class CalTemplate; class CalSelect; class CalSettings; class CalEvents; class CalFormatter; class CalBlockPainter; class CalWizard : public KWizard { Q_OBJECT TQ_OBJECT public: CalWizard( KIPI::Interface* interface, TQWidget *tqparent=0L ); ~CalWizard(); private: CalSettings *cSettings_; CalTemplate *wTemplate_; CalSelect *wSelect_; CalEvents *wEvents_; TQVBox *wPrint_; TQLabel *wPrintLabel_; TQWidget *wFinish_; TQLabel *wFinishLabel_; TQProgressBar *wFinishProgressTotal_; TQProgressBar *wFinishProgressCurrent_; TQPushButton *m_helpButton; KPrinter *printer_; TQPainter *painter_; CalFormatter *formatter_; TQValueList monthNumbers_; KURL::List monthImages_; int totPages_; int currPage_; TQGuardedPtr cb_; KIPI::Interface* interface_; KIPIPlugins::KPAboutData *m_about; private slots: void slotPageSelected(const TQString& name); void slotPrintOnePage(); void slotHelp(); }; } // NameSpace KIPICalendarPlugin #endif /* CALWIZARD_H */