Fix url
[kdepim.git] / korganizer / src / koglobals.h
blob96d3db9d4fee7731e8b56290d06a710fe237a22b
1 /*
2 This file is part of KOrganizer.
4 Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org>
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.
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.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 As a special exception, permission is given to link this program
21 with any edition of Qt, and distribute the resulting executable,
22 without including the source code for Qt in the source distribution.
25 #ifndef KORG_KOGLOBALS_H
26 #define KORG_KOGLOBALS_H
28 #include "korganizerprivate_export.h"
30 #include <QPixmap>
31 #include <QString>
32 #include <QDate>
33 #include <QMap>
34 #include <QList>
36 namespace KHolidays
38 class HolidayRegion;
41 class KORGANIZERPRIVATE_EXPORT KOGlobals
43 friend class KOGlobalsSingletonPrivate;
44 public:
45 static KOGlobals *self();
47 static bool reverseLayout();
49 ~KOGlobals();
51 QPixmap smallIcon(const QString &name) const;
53 QMap<QDate, QStringList> holiday(const QDate &start, const QDate &end) const;
55 bool isWorkDay(const QDate &qd) const;
57 /**
58 Returns a list containing work days between @p start and @end.
60 QList<QDate> workDays(const QDate &start, const QDate &end) const;
62 int getWorkWeekMask();
64 /**
65 Set which holidays the user wants to use.
66 @param h a HolidayRegion object initialized with the desired locale.
67 We capture this object, so you must not delete it.
69 void setHolidays(KHolidays::HolidayRegion *h);
71 /** return the HolidayRegion object or 0 if none has been defined
73 KHolidays::HolidayRegion *holidays() const;
75 protected:
76 KOGlobals();
78 private:
79 KHolidays::HolidayRegion *mHolidays;
82 #endif