yearprint.h
1 /*
2  This file is part of KOrganizer.
3 
4  Copyright (c) 2004 Reinhold Kainhofer <reinhold@kainhofer.com>
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10 
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 
20  As a special exception, permission is given to link this program
21  with any edition of TQt, and distribute the resulting executable,
22  without including the source code for TQt in the source distribution.
23 */
24 #ifndef YEARPRINT_H
25 #define YEARPRINT_H
26 
27 #include <tdelocale.h>
28 #include "calprintpluginbase.h"
29 
30 #ifndef KORG_NOPRINTER
31 namespace KCal {
32 class Calendar;
33 }
34 
35 using namespace KCal;
36 
37 class CalPrintYear : public CalPrintPluginBase
38 {
39  public:
40  CalPrintYear():CalPrintPluginBase() {}
41  virtual ~CalPrintYear() {}
42  virtual TQString description() { return i18n("Print &Year"); }
43  virtual TQString info() { return i18n("Prints a calendar for an entire year"); }
44  virtual int sortID() { return 900; }
45  virtual bool enabled() { return true; }
46  virtual TQWidget *createConfigWidget( TQWidget* );
47  virtual KPrinter::Orientation defaultOrientation();
48 
49  public:
50  virtual void print(TQPainter &p, int width, int height);
51  virtual void readSettingsWidget();
52  virtual void setSettingsWidget();
53  virtual void loadConfig();
54  virtual void saveConfig();
55  virtual void setDateRange( const TQDate& from, const TQDate& to );
56 
57  protected:
58  int mYear;
59  int mPages;
60  int mSubDaysEvents, mHolidaysEvents;
61 };
62 
63 
64 #endif
65 #endif
Base class for KOrganizer printing classes.