blob: d66e6525c2ac00110abd567a906c579b2cc018f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/* ============================================================
* File : calformatter.h
* Author: Maciek Borowka <maciek_AT_borowka.net>
* Date : 2005-11-23
* Description : The declaration of a class that decides which
* cell of the calendar should be painted with which color.
*
* Copyright 2005 by Maciek Borowka
*
* 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 KIPICALENDARPLUGINCALFORMATTER_H
#define KIPICALENDARPLUGINCALFORMATTER_H
#include <qobject.h>
namespace KIPICalendarPlugin {
/**
@author Maciek Borowka
*/
class CalFormatter : public QObject
{
Q_OBJECT
public:
CalFormatter();
~CalFormatter();
bool isSpecial(int month, int day);
QColor getDayColor(int month, int day);
QString getDayDescr(int month, int day);
void init(int year, const QString & ohFile, const QString & fhFile);
protected:
int year_;
bool isPrayDay(int month, int day);
bool initialized;
class Data;
Data *d;
};
}
#endif
|