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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
This file is part of KOrganizer.
Copyright (c) 2003 Jonathan Singer <jsinger@leeta.net>
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 of the License, 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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <kglobal.h>
#include <kconfig.h>
#include <kstandarddirs.h>
#include <ksimpleconfig.h>
#include <kcalendarsystem.h>
#include <kcalendarsystemfactory.h>
#include "hebrew.h"
#include "configdialog.h"
#include "parsha.h"
#include "converter.h"
#include "holiday.h"
bool Hebrew::IsraelP;
class HebrewFactory:public CalendarDecorationFactory
{
public:
CalendarDecoration * create()
{
return new Hebrew;
}
};
K_EXPORT_COMPONENT_FACTORY( libkorg_hebrew, HebrewFactory )
TQString Hebrew::shortText(const TQDate & date)
{
KConfig config("korganizerrc", true, false); // Open read-only, no kdeglobals
config.setGroup("Calendar/Hebrew Calendar Plugin");
IsraelP =
config.readBoolEntry("Israel",
(KGlobal::locale()->country() == ".il"));
Holiday::ParshaP = config.readBoolEntry("Parsha", true);
Holiday::CholP = config.readBoolEntry("Chol_HaMoed", true);
Holiday::OmerP = config.readBoolEntry("Omer", true);
TQString label_text;
int day = date.day();
int month = date.month();
int year = date.year();
// core calculations!!
struct DateResult result;
Converter::SecularToHebrewConversion(year, month, day, /*0, */
&result);
int hebrew_day = result.day;
int hebrew_month = result.month;
int hebrew_year = result.year;
int hebrew_day_of_week = result.day_of_week;
bool hebrew_leap_year_p = result.hebrew_leap_year_p;
int hebrew_kvia = result.kvia;
int hebrew_day_number = result.hebrew_day_number;
TQStringList holidays =
Holiday::FindHoliday(hebrew_month, hebrew_day,
hebrew_day_of_week + 1, hebrew_kvia,
hebrew_leap_year_p, IsraelP,
hebrew_day_number, hebrew_year);
KCalendarSystem *cal = KCalendarSystemFactory::create("hebrew");
label_text = TQString("%1 %2").arg(cal->dayString(date, false))
.arg(cal->monthName(date));
if (holidays.count())
{
int count = holidays.count();
for (int h = 0; h <= count; ++h)
{
label_text += "\n" + holidays[h];
}
}
return label_text;
}
TQString Hebrew::info()
{
return
i18n("This plugin provides the date in the Jewish calendar.");
}
void Hebrew::configure(TQWidget * parent)
{
ConfigDialog *dlg = new ConfigDialog(parent); //parent?
dlg->exec();
delete dlg;
}
|