listprint.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 LISTPRINT_H
25 #define LISTPRINT_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 CalPrintList : public CalPrintPluginBase
38 {
39  public:
40  CalPrintList():CalPrintPluginBase() {}
41  virtual ~CalPrintList() {}
42  virtual TQString description() { return i18n("Print list"); }
43  virtual TQString info() { return i18n("Prints a list of events and to-dos"); }
44  virtual int sortID() { return 950; }
45  virtual TQWidget *createConfigWidget( TQWidget* );
46 
47  public:
48  virtual void print(TQPainter &p, int width, int height);
49  virtual void readSettingsWidget();
50  virtual void setSettingsWidget();
51  virtual void loadConfig();
52  virtual void saveConfig();
53  virtual void setDateRange( const TQDate& from, const TQDate& to );
54 
55  protected:
56  bool mUseDateRange;
57 };
58 
59 
60 #endif
61 #endif
Base class for KOrganizer printing classes.