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
31namespace KCal {
32class Calendar;
33}
34
35using namespace KCal;
36
37class 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.
virtual void loadConfig()=0
Load print format configuration from config file.
virtual TQWidget * createConfigWidget(TQWidget *)
Returns widget for configuring the print format.
virtual void print(TQPainter &p, int width, int height)=0
Actually do the printing.
virtual void saveConfig()=0
Write print format configuration to config file.
virtual void setSettingsWidget()
Set configuration widget to reflect settings of current object.
Definition: printplugin.h:136
virtual void setDateRange(const TQDate &from, const TQDate &to)
Set date range which should be printed.
Definition: printplugin.h:141
virtual TQString description()=0
Returns short description of print format.
virtual TQString info()=0
Returns long description of print format.
virtual int sortID()
Returns the sort ID of the plugin.
Definition: printplugin.h:86
virtual void readSettingsWidget()
Read settings from configuration widget and apply them to current object.
Definition: printplugin.h:132