-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendarwindow.cpp
executable file
·641 lines (515 loc) · 23.7 KB
/
calendarwindow.cpp
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
#include "DayTithiWidget.h"
#include "panchanga.h"
#include "ui_calendarwindow.h"
#include "calendarwindow.h"
#include "bikram.h"
#include <QMessageBox>
#include <QDesktopServices>
#include <QUrl>
#include <QPalette>
#include <QScreen>
#include <QDate>
#include <QDebug>
#include <QIcon>
#include <QFile>
#include <QtWidgets>
CalendarWindow::CalendarWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::CalendarWindow),
blockSignals(false)
{
ui->setupUi(this);
this->setWindowTitle("नेपाली पात्रो तथा मिति परिवर्तक");
connect(ui->aboutbutton, &QPushButton::clicked, this, &CalendarWindow::showMenu);
// Center the window on the screen
centerOnScreen();
installEventFilter(this);
QFile file(":/resources/style.qss"); // Stylesheet file
if (file.open(QFile::ReadOnly | QFile::Text)) {
QString styleSheet = file.readAll();
qApp->setStyleSheet(styleSheet);
file.close();
}
// Initialize current date to today's date
QDate currentDate = QDate::currentDate();
// Populate AD combo boxes
for (int year = 1900; year <= 2100; ++year) {
ui->yearselectAD->addItem(QString::number(year));
ui->yearselectAD->setEditable(true);
}
for (int month = 1; month <= 12; ++month) {
ui->monthselectAD->addItem(getEnglishMonthName(month));
}
for (int day = 1; day <= 31; ++day) {
ui->dayselectAD->addItem(QString::number(day));
}
// Populate BS combo boxes
for (int year = 1970; year <= 2100; ++year) {
ui->yearselectBS->addItem(QString::number(year));
ui->yearselectBS->setEditable(true);
}
for (int month = 1; month <= 12; ++month) {
ui->monthselectBS->addItem(getBikramMonthName(month));
}
int year = ui->yearselectBS->currentText().toInt();
int month = ui->monthselectBS->currentIndex() + 1;
populateBsDays(year, month);
// Set current date in AD combo boxes
ui->yearselectAD->setCurrentText(QString::number(currentDate.year()));
ui->monthselectAD->setCurrentIndex(currentDate.month() - 1);
ui->dayselectAD->setCurrentText(QString::number(currentDate.day()));
// Convert the current Gregorian date to Bikram Sambat
converter.fromGregorian(currentDate.year(), currentDate.month(), currentDate.day());
int bsYear = converter.getYear();
int bsMonth = converter.getMonth();
int bsDay = converter.getDay();
converter.toGregorian(bsYear, bsMonth, bsDay, gYear, gMonth, gDay);
double julianDate = gregorianToJulian(gYear, gMonth, gDay);
Panchang panchang(julianDate);
QString bsMonthName = getBikramMonthName(bsMonth);
QString tithiName = QString::fromStdString(tithi[(int)panchang.tithi_index]);
QString paksha = QString::fromStdString(panchang.paksha);
QString tithipaksha = QString("%1 %2").arg(paksha).arg(tithiName);
// Set current date in BS combo boxes
ui->yearselectBS->setCurrentText(QString::number(bsYear));
ui->monthselectBS->setCurrentIndex(bsMonth - 1);
ui->dayselectBS->setCurrentText(QString::number(bsDay));
// Populate BS day combo box based on current month and year
populateBsDays(bsYear, bsMonth);
// Update the output label
int bsDaysInMonth = converter.daysInMonth(bsYear, bsMonth);
ui->output->setText(QString("आज: बिक्रम सम्वत: %1 %2 %3 गते %7\n %4 %5 मा जम्मा दिन सङ्ख्या: %6")
.arg(convertToNepaliNumerals(bsYear)).arg(bsMonthName).arg(convertToNepaliNumerals(bsDay)).arg(bsMonthName).arg(convertToNepaliNumerals(bsYear)).arg(convertToNepaliNumerals(bsDaysInMonth)).arg(tithipaksha));
// Connect signals to slots
connect(ui->yearselectAD, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &CalendarWindow::onAdYearChanged);
connect(ui->monthselectAD, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &CalendarWindow::onAdMonthChanged);
connect(ui->dayselectAD, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &CalendarWindow::onAdDayChanged);
connect(ui->yearselectBS, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &CalendarWindow::onBsYearChanged);
connect(ui->monthselectBS, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &CalendarWindow::onBsMonthChanged);
connect(ui->dayselectBS, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &CalendarWindow::onBsDayChanged);
connect(ui->previousMonthButton_2, &QPushButton::clicked, this, &CalendarWindow::onpreviousMonthButtonclicked);
connect(ui->nextMonthButton, &QPushButton::clicked, this, &CalendarWindow::onnextMonthButtonclicked);
connect(ui->todayButton, &QPushButton::clicked, this, &CalendarWindow::ontodayButtonclicked);
// Initialize the calendar
updateCalendar(bsYear, bsMonth);
// Adjust cell sizes initially
adjustCellSizes();
adjustCalendarTableSize();
}
bool CalendarWindow::eventFilter(QObject *object, QEvent *event) {
if (object == this && event->type() == QEvent::Show) {
// Perform action when the window is shown
ui->todayButton->click();
}
return QMainWindow::eventFilter(object, event);
}
const QStringList CalendarWindow::bikramMonths = {
"वैशाख", "जेठ", "असार", "श्रावण", "भाद्र",
"आश्विन", "कार्तिक", "मंसिर", "पौष", "माघ",
"फाल्गुन", "चैत्र"
};
const QStringList CalendarWindow::gregorianMonths = {"जनवरी", "फेब्रुअरी", "मार्च", "अप्रिल", "मे", "जुन",
"जुलाई", "अगस्ट", "सेप्टेम्बर", "अक्टोबर", "नोभेम्बर", "डिसेम्बर"};
QString CalendarWindow::getBikramMonthName(int month) {
if (month < 1 || month > 12) {
return ""; // Return an empty string for invalid month
}
return bikramMonths.at(month - 1); // Assuming 1-based month input
}
QString CalendarWindow::getEnglishMonthName(int month) {
if (month < 1 || month > 12) {
return ""; // Return an empty string for invalid month
}
return gregorianMonths.at(month - 1); // Assuming 1-based month input
}
QString CalendarWindow::convertToNepaliNumerals(int number) {
QString nepaliNumerals = QString::number(number);
nepaliNumerals.replace("0", "०");
nepaliNumerals.replace("1", "१");
nepaliNumerals.replace("2", "२");
nepaliNumerals.replace("3", "३");
nepaliNumerals.replace("4", "४");
nepaliNumerals.replace("5", "५");
nepaliNumerals.replace("6", "६");
nepaliNumerals.replace("7", "७");
nepaliNumerals.replace("8", "८");
nepaliNumerals.replace("9", "९");
return nepaliNumerals;
}
void CalendarWindow::ontodayButtonclicked() {
// Get today's date
QDate today = QDate::currentDate();
// Update AD combo boxes
ui->yearselectAD->setCurrentText(QString::number(today.year()));
ui->monthselectAD->setCurrentIndex(today.month() - 1);
ui->dayselectAD->setCurrentText(QString::number(today.day()));
// Convert the current Gregorian date to Bikram Sambat
converter.fromGregorian(today.year(), today.month(), today.day());
int bsYear = converter.getYear();
int bsMonth = converter.getMonth();
int bsDay = converter.getDay();
QString bsMonthName = getBikramMonthName(bsMonth);
converter.toGregorian(bsYear, bsMonth, bsDay, gYear, gMonth, gDay);
double julianDate = gregorianToJulian(gYear, gMonth, gDay);
Panchang panchang(julianDate);
QString tithiName = QString::fromStdString(tithi[(int)panchang.tithi_index]);
QString paksha = QString::fromStdString(panchang.paksha);
QString tithipaksha = QString("%1 %2").arg(paksha).arg(tithiName);
// Update BS combo boxes
ui->yearselectBS->setCurrentText(QString::number(bsYear));
ui->monthselectBS->setCurrentIndex(bsMonth - 1);
ui->dayselectBS->setCurrentText(QString::number(bsDay));
// Update the output label
int bsDaysInMonth = converter.daysInMonth(bsYear, bsMonth);
ui->output->setText(QString("आज: बिक्रम सम्वत: %1 %2 %3 गते %7\n %4 %5 मा जम्मा दिन सङ्ख्या: %6")
.arg(convertToNepaliNumerals(bsYear)).arg(bsMonthName).arg(convertToNepaliNumerals(bsDay)).arg(bsMonthName).arg(convertToNepaliNumerals(bsYear)).arg(convertToNepaliNumerals(bsDaysInMonth)).arg(tithipaksha));
// Update the calendar
updateCalendar(bsYear, bsMonth);
}
// Slot for Previous Month button
void CalendarWindow::onpreviousMonthButtonclicked() {
int currentIndex = ui->monthselectBS->currentIndex();
if (currentIndex > 0) {
ui->monthselectBS->setCurrentIndex(currentIndex - 1);
} else {
// Wrap around to December
ui->monthselectBS->setCurrentIndex(11); // December (0-based index)
}
// The change will automatically trigger the connected slot for month selection
}
// Slot for Next Month button
void CalendarWindow::onnextMonthButtonclicked() {
int currentIndex = ui->monthselectBS->currentIndex();
if (currentIndex < 11) { // 11 is December
ui->monthselectBS->setCurrentIndex(currentIndex + 1);
} else {
// Wrap around to January
ui->monthselectBS->setCurrentIndex(0); // January (0-based index)
}
// The change will automatically trigger the connected slot for month selection
}
void CalendarWindow::resizeEvent(QResizeEvent* event) {
QMainWindow::resizeEvent(event);
adjustCellSizes();
// Re-center the widgets horizontally
centerWidgets();
// Resize the calendarTable
adjustCalendarTableSize();
}
void CalendarWindow::centerWidgets() {
// Center widgets horizontally
int screenWidth = width();
int windowHeight = height();
int x = (screenWidth - ui->centralwidget->width()) / 2;
int y = (windowHeight - ui->centralwidget->height()) / 2;
ui->centralwidget->move(x, y);
}
void CalendarWindow::adjustCalendarTableSize() {
// Adjust calendarTable size
int tableWidth = ui->calendarTable->viewport()->width();
int tableHeight = ui->calendarTable->viewport()->height();
int numColumns = ui->calendarTable->columnCount();
int numRows = ui->calendarTable->rowCount();
if (numColumns > 0 && numRows > 0) {
int columnWidth = tableWidth / numColumns;
int rowHeight = tableHeight / numRows;
for (int i = 0; i < numColumns; ++i) {
ui->calendarTable->setColumnWidth(i, columnWidth);
}
for (int i = 0; i < numRows; ++i) {
ui->calendarTable->setRowHeight(i, rowHeight);
}
}
}
CalendarWindow::~CalendarWindow() {
delete ui;
}
void CalendarWindow::showMenu() {
QMenu menu(this);
QAction *aboutAction = menu.addAction("About");
QAction *sourceCodeAction = menu.addAction("Source Code");
connect(aboutAction, &QAction::triggered, this, &CalendarWindow::showAbout);
connect(sourceCodeAction, &QAction::triggered, this, &CalendarWindow::openSourceCode);
menu.exec(QCursor::pos());
}
void CalendarWindow::showAbout() {
QString version;
QFile versionFile(":/resources/VERSION.txt"); // Use the resource path
if (versionFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream in(&versionFile);
version = in.readLine(); // Read the first line
versionFile.close();
} else {
qDebug() << "Could not open version file from resources.";
version = "unknown"; // Fallback in case the file cannot be read
}
QString aboutText = QString(R"(
<center>
<h2 class='about.h2'>About</h2>
<p class='about.p'>Nepali Calendar</p>
<p><b>Author:</b> <span class='about'>khumnath</span></p>
<p><b>Version:</b> %1</p>
<p>This application is written in C++ and Qt framework. For more information, visit my
<a href="https://github.com/khumnath/nepdate" class="about">GitHub page</a>.
</p>
</center>)").arg(version);
QMessageBox msgBox(QMessageBox::Information, "About", aboutText, QMessageBox::Ok, this);
msgBox.exec();
}
void CalendarWindow::openSourceCode() {
// Open the URL using QDesktopServices
QDesktopServices::openUrl(QUrl("https://github.com/khumnath/nepdate"));
activateWindow();
}
void CalendarWindow::centerOnScreen() {
// Get the screen geometry
QScreen *screen = QGuiApplication::primaryScreen();
QRect screenGeometry = screen->availableGeometry();
// Calculate the center point of the screen
int screenWidth = screenGeometry.width();
int screenHeight = screenGeometry.height();
int windowWidth = this->width();
int windowHeight = this->height();
int x = (screenWidth - windowWidth) / 2;
int y = (screenHeight - windowHeight) / 2;
// Set the window position
this->move(x, y);
}
void CalendarWindow::onAdYearChanged(int /*index*/) {
if (blockSignals) return;
blockSignals = true;
int year = ui->yearselectAD->currentText().toInt();
int month = ui->monthselectAD->currentIndex() + 1;
int day = ui->dayselectAD->currentText().toInt();
updateBsDateFromAd(year, month, day);
blockSignals = false;
}
void CalendarWindow::onAdMonthChanged(int /*index*/) {
if (blockSignals) return;
blockSignals = true;
int year = ui->yearselectAD->currentText().toInt();
int month = ui->monthselectAD->currentIndex() + 1;
int day = ui->dayselectAD->currentText().toInt();
updateBsDateFromAd(year, month, day);
blockSignals = false;
}
void CalendarWindow::onAdDayChanged(int /*index*/) {
if (blockSignals) return;
blockSignals = true;
int year = ui->yearselectAD->currentText().toInt();
int month = ui->monthselectAD->currentIndex() + 1;
int day = ui->dayselectAD->currentText().toInt();
int bsYear = converter.getYear();
int bsMonth = converter.getMonth();
populateBsDays(bsYear, bsMonth);
updateBsDateFromAd(year, month, day);
blockSignals = false;
}
void CalendarWindow::onBsYearChanged(int /*index*/) {
if (blockSignals) return;
blockSignals = true;
int year = ui->yearselectBS->currentText().toInt();
int month = ui->monthselectBS->currentIndex() + 1;
// Update BS day combo box based on current month and year
populateBsDays(year, month);
// Now, use the current day selection to update AD date
int day = ui->dayselectBS->currentText().toInt();
updateAdDateFromBs(year, month, day);
// Update the calendar
updateCalendar(year, month);
blockSignals = false;
}
void CalendarWindow::onBsMonthChanged(int /*index*/) {
if (blockSignals) return;
blockSignals = true;
int year = ui->yearselectBS->currentText().toInt();
int month = ui->monthselectBS->currentIndex() + 1;
int day = ui->dayselectBS->currentText().toInt();
updateAdDateFromBs(year, month, day);
// Update the calendar
updateCalendar(year, month);
blockSignals = false;
}
void CalendarWindow::onBsDayChanged(int /*index*/) {
if (blockSignals) return;
blockSignals = true;
int year = ui->yearselectBS->currentText().toInt();
int month = ui->monthselectBS->currentIndex() + 1;
int day = ui->dayselectBS->currentText().toInt();
updateAdDateFromBs(year, month, day);
blockSignals = false;
}
void CalendarWindow::updateBsDateFromAd(int year, int month, int day) {
converter.fromGregorian(year, month, day);
int bsYear = converter.getYear();
int bsMonth = converter.getMonth();
int bsDay = converter.getDay();
QString bsMonthName = getBikramMonthName(bsMonth);
converter.toGregorian(bsYear, bsMonth, bsDay, gYear, gMonth, gDay);
double julianDate = gregorianToJulian(gYear, gMonth, gDay);
Panchang panchang(julianDate);
QString tithiName = QString::fromStdString(tithi[(int)panchang.tithi_index]);
QString paksha = QString::fromStdString(panchang.paksha);
QString tithipaksha = QString("%1 %2").arg(paksha).arg(tithiName);
ui->yearselectBS->setCurrentText(QString::number(bsYear));
ui->monthselectBS->setCurrentIndex(bsMonth - 1); // Adjust index to start from 0
// Populate BS day combo box based on current month and year
populateBsDays(bsYear, bsMonth);
ui->dayselectBS->setCurrentText(QString::number(bsDay));
// Populate BS day combo box based on current month and year
populateBsDays(bsYear, bsMonth);
int bsDaysInMonth = converter.daysInMonth(bsYear, bsMonth);
ui->output->setText(QString("विक्रम सम्वत मा परिवर्तन गरियो: %1 %2 %3 गते %5 \n%2 %1 मा जम्मा दिन सङ्ख्या: %4")
.arg(convertToNepaliNumerals(bsYear)).arg(bsMonthName).arg(convertToNepaliNumerals(bsDay)).arg(convertToNepaliNumerals(bsDaysInMonth)).arg(tithipaksha));
// Update the calendar
updateCalendar(bsYear, bsMonth);
}
void CalendarWindow::updateAdDateFromBs(int year, int month, int day) {
converter.toGregorian(year, month, day, gYear, gMonth, gDay);
ui->yearselectAD->setCurrentText(QString::number(gYear));
ui->monthselectAD->setCurrentIndex(gMonth - 1);
ui->dayselectAD->setCurrentText(QString::number(gDay));
int bsDaysInMonth = converter.daysInMonth(year, month);
QString bsMonthName = getBikramMonthName(month);
double julianDate = gregorianToJulian(gYear, gMonth, gDay);
Panchang panchang(julianDate);
QString tithiName = QString::fromStdString(tithi[(int)panchang.tithi_index]);
QString paksha = QString::fromStdString(panchang.paksha);
QString tithipaksha = QString("%1 %2").arg(paksha).arg(tithiName);
ui->output->setText(QString("ईसवी सन मा परिवर्तन गरियो: %1 %2 %3 गते %5 \n%2 %1 मा जम्मा दिन सङ्ख्या: %4")
.arg(convertToNepaliNumerals(gYear)).arg(bsMonthName).arg(convertToNepaliNumerals(gDay)).arg(convertToNepaliNumerals(bsDaysInMonth)).arg(tithipaksha));
// Update the calendar
updateCalendar(year, month);
// Populate BS day combo box based on current month and year
populateBsDays(year, month);
}
void CalendarWindow::updateCalendar(int year, int month) {
int daysInMonth = converter.daysInMonth(year, month);
// Clear previous items
ui->calendarTable->clear();
ui->calendarTable->setRowCount(6);
ui->calendarTable->setColumnCount(7);
// Set weekday headers
QStringList headers = {"आइत", "सोम", "मङ्गल", "बुध", "बिही", "शुक्र", "शनि"};
ui->calendarTable->setHorizontalHeaderLabels(headers);
// Apply styles to the header
ui->calendarTable->horizontalHeader()->setStyleSheet(
"QHeaderView::section {"
"background-color: #d3d3d3;"
"color: blue;"
"border: 1px solid gray;"
"}"
);
// Apply styles to the table
ui->calendarTable->setStyleSheet(
"background-color: white;"
"QTableWidget::item {"
"border: 1px solid gray;" // Border for cells
"}"
"QTableWidget .dayLabel {"
"font-size: 24px;"
"color: black;"
"}"
"QTableWidget .tithiLabel {"
"font-size: 8px;"
"color: blue;"
"}"
);
// Find the first day of the month
int gYear, gMonth, gDay;
converter.toGregorian(year, month, 1, gYear, gMonth, gDay);
QDate firstDay(gYear, gMonth, gDay);
int startDay = firstDay.dayOfWeek(); // 0 (Monday) to 6 (Sunday)
// Get today's Gregorian date
QDate today = QDate::currentDate();
// Convert today's Gregorian date to Bikram Sambat
converter.fromGregorian(today.year(), today.month(), today.day());
int todayBsYear = converter.getYear();
int todayBsMonth = converter.getMonth();
int todayBsDay = converter.getDay();
// Identify Saturday index (assuming "शनि" is at index 6)
int saturdayIndex = 6; // Modify this if "शनि" is at a different index
// Load moon icons
QIcon purnimaIcon(":/resources/purnima.png");
QIcon amavasyaIcon(":/resources/amawasya.png");
// Fill the calendar
int row = 0;
int col = (startDay - saturdayIndex + 6) % 7; // Calculate offset based on Saturday index
for (int day = 1; day <= daysInMonth; ++day) {
// Convert BS date to Gregorian date
converter.toGregorian(year, month, day, gYear, gMonth, gDay);
// Calculate Julian date
double julianDate = gregorianToJulian(gYear, gMonth, gDay);
Panchang panchang(julianDate);
QString tithiName = QString::fromStdString(tithi[(int)panchang.tithi_index]);
// Create custom widget for day and tithi
DayTithiWidget *customWidget = new DayTithiWidget(convertToNepaliNumerals(day), tithiName);
// Set tooltip
QString paksha = QString::fromStdString(panchang.paksha);
QString tooltipText = QString("%1 (%2)").arg(tithiName).arg(paksha);
customWidget->setToolTip(tooltipText);
QTableWidgetItem *item = new QTableWidgetItem();
ui->calendarTable->setItem(row, col, item);
// Check if the current cell represents today's Bikram Sambat date
bool isToday = (year == todayBsYear && month == todayBsMonth && day == todayBsDay);
bool isSaturday = (col == saturdayIndex);
if (isToday && isSaturday) {
// If today is both Saturday and the current date, apply the "today" style
item->setBackground(QColor(153, 255, 204)); // light green
customWidget->setTodayStyle(); // defined in DayTithiWidget.h
} else if (isToday) {
// If it's just today, apply the "today" style
item->setBackground(QColor(153, 255, 204)); // light green
customWidget->setTodayStyle(); // defined in DayTithiWidget.h
} else if (isSaturday) {
// If it's just Saturday, apply the "Saturday" style
customWidget->setSaturdayStyle();
}
if (panchang.tithi_index == 14) {
customWidget->setIcon(purnimaIcon, 0.8); // Example opacity set to 0.8
} else if (panchang.tithi_index == 29) {
customWidget->setIcon(amavasyaIcon, 0.8); // Example opacity set to 0.8
} else {
customWidget->setIcon(QIcon(), 0.0); // Clear icon and set transparency
}
ui->calendarTable->setCellWidget(row, col, customWidget);
col++;
if (col > 6) {
col = 0;
row++;
}
}
ui->calendarTable->resizeRowsToContents();
ui->calendarTable->resizeColumnsToContents();
// Adjust cell sizes
adjustCellSizes();
// Hide the numbers in the first column
ui->calendarTable->verticalHeader()->setVisible(false);
}
void CalendarWindow::adjustCellSizes() {
int tableWidth = ui->calendarTable->viewport()->width();
int tableHeight = ui->calendarTable->viewport()->height();
int numColumns = ui->calendarTable->columnCount();
int numRows = ui->calendarTable->rowCount();
if (numColumns > 0 && numRows > 0) {
int columnWidth = tableWidth / numColumns;
int rowHeight = tableHeight / numRows;
for (int i = 0; i < numColumns; ++i) {
ui->calendarTable->setColumnWidth(i, columnWidth);
}
for (int i = 0; i < numRows; ++i) {
ui->calendarTable->setRowHeight(i, rowHeight);
}
}
}
void CalendarWindow::populateBsDays(int year, int month) {
int daysInMonth = converter.daysInMonth(year, month);
int currentDay = converter.getDay();
// Clear previous items
ui->dayselectBS->clear();
for (int day = 1; day <= daysInMonth; ++day) {
ui->dayselectBS->addItem(QString::number(day));
}
// Set the current day
ui->dayselectBS->setCurrentText(QString::number(currentDay));
}