-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmainwindow.cpp
495 lines (427 loc) · 15.9 KB
/
mainwindow.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
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QtSql/QtSql>
#include<QtSql/QSqlDatabase>
#include <QtSql/QSqlQuery>
#include<iostream>
#include<QtWidgets/QMessageBox>
#include<QDate>
#include<Qt>
#include<QLocale>
#include<QtWebKitWidgets/QWebFrame>
#include<QtWebKit/QWebElement>
#include<QtWebKitWidgets/QtWebKitWidgets>
#include<QTimer>
#include<QDateTime>
#include<QVector>
#include<time.h>
#include<QSettings>
#include"settings.h"
using namespace std;
//Settings sett;
QString PrintCalender(int d, int m, int y);
inline void delay(int millisecondsWait);
void MainWindow::updateDayInterface(){
QString* pray= new QString[7];
pray=get_info();
ui->Fajer->setText(pray[0]);
// qDebug()<<pray[0]<<;
// Updating the times on current GUI
//MainWindow::ui->Fajer->setText("test");
ui->Shourq->setText(pray[1]);
ui->Duhur->setText(pray[2]);
ui->Asr->setText(pray[3]);
ui->Magrib->setText(pray[4]);
ui->Asha->setText(pray[5]);
// Updating Hadith arabic and English with Automatic sizing of the font
ui->label_13->setText(pray[6]);
ui->label_15->setText(pray[7]);
}
//void MainWindow::setter_triggerDayUpdate(bool x){
// qDebug()<<"function wroks"<<x;
// triggerDayUpdate=x;
// qDebug()<<"function wroks"<<triggerDayUpdate<<x;
//}
void MainWindow::aqamHideelement(){
ui->graphicsView->hide();
ui->graphicsView_2->hide();
ui->label_14->hide();
ui->AqamaLabelCounter->hide();
ui->time_remain_en->hide();
ui->time_value->hide();
ui->time_remain_ar->hide();
}
void MainWindow::aqamShowElement(){
ui->AqamaLabelCounter->show();
ui->graphicsView->show();
ui->graphicsView_2->show();
ui->label_14->show();
ui->time_remain_en->show();
ui->time_value->show();
ui->time_remain_ar->show();
}
QString PrintCalend() {
const time_t current_time = time(NULL);
tm * t = localtime(¤t_time);
int d = t -> tm_mday, m = (t -> tm_mon) + 1, y = (t -> tm_year) + 1900;
QString Dateah=PrintCalender(d, m , y);
return Dateah;
}
int LastDayOfGregorianMonth(int month, int year) {
// Compute the last date of the month for the Gregorian calendar.
switch (month) {
case 2:
if ((((year % 4) == 0) && ((year % 100) != 0))
|| ((year % 400) == 0))
return 29;
else
return 28;
case 4:
case 6:
case 9:
case 11: return 30;
default: return 31;
}
}
int calcAbsGregorianDays(int d, int m, int y) {
int N = d;
for (int i = m - 1; i > 0; i--)
N += LastDayOfGregorianMonth(i, y);
return N + (y - 1) * 365
+ (y - 1) / 4
- (y - 1) / 100
+ (y - 1) / 400;
}
bool IsIslamicLeapYear(int year) {
// True if year is an Islamic leap year
if ((((11 * year) + 14) % 30) < 11)
return true;
else
return false;
}
int LastDayOfIslamicMonth(int month, int year) {
// Last day in month during year on the Islamic calendar.
if (((month % 2) == 1) || ((month == 12) && IsIslamicLeapYear(year)))
return 30;
else
return 29;
}
const int IslamicEpoch = 227014; // Absolute date of start of Islamic calendar
int IslamicDate(int month, int day, int year) {
return (day // days so far this month
+ 29 * (month - 1) // days so far...
+ month/2 // ...this year
+ 354 * (year - 1) // non-leap days in prior years
+ (3 + (11 * year)) / 30 // leap days in prior years
+ IslamicEpoch); // days before start of calendar
}
char const *getMonthName(int m)
{
switch (m)
{
case 1:
return "محرّم";
case 2:
return "صفر";
case 3:
return "ربيع الأول";
case 4:
return " ربيع الاخر";
case 5:
return "جمادى الأولى";
case 6:
return "جمادى الآخرة";
case 7:
return "رجب";
case 8:
return "شعبان";
case 9:
return "رمضان";
case 10:
return "شوال";
case 11:
return "ذو العقدة";
case 12:
return "ذو الحجة";
}
return "";
}
QString PrintCalender(int d, int m, int y){
d = calcAbsGregorianDays(d, m, y);
int month, day, year;
// Search forward year by year from approximate year
year = (d - IslamicEpoch) / 355;
while (d >= IslamicDate(1, 1, year))
year++;
year--;
// Search forward month by month from Muharram
month = 1;
while (d > IslamicDate(month, LastDayOfIslamicMonth(month, year), year))
month++;
day = d - IslamicDate(month, 1, year);// adding days for hijri month by + and -
QString Hijri =QVariant(day).toString()+"-"+ getMonthName(month) +"-"+QVariant(year).toString() ;
//cout<<year<<"-"<<getMonthName(month)<<"-"<<day;
return Hijri;
}
void MainWindow::showTime()
{
//qDebug()<<eventDayUpdate<<endl;
QTime time = QTime::currentTime();
QString text = time.toString("hh:mm");
QString Date_interface= QDate::currentDate().toString(Qt::ISODate);
ui->Magrib_2->setText(Date_interface);
ui->label_16->setText(PrintCalend());
// qDebug()<<triggerDayUpdate;
if ((time.second() % 2) == 0)
text[2] = ' '; updateDayInterface();
ui->min->setText(text);
if(ui->Fajer->text()=="00:00")
eventDayUpdate=true;
if(time.toString()=="00:01:00")
eventDayUpdate=true;
if(QDate::currentDate().month()!=storedMonth)
eventMonthUpdate=true;
// if(sett.tests()==true){
// updateDayInterface();
// // sett->triggerDayUpdate=false;
// qDebug()<<"it triggered";
// }
if(eventDayUpdate)
{
// updateDayInterface();
eventDayUpdate=false;
}
if(eventMonthUpdate)
{
grabbing_times();
eventMonthUpdate=false;
//Settings->setValue("Gerenal/StoredMonth",QDate::currentDate().month());
}
}
void MainWindow::aqamEvent(){
QTime time = QTime::currentTime();
QString Fajer_con=ui->Fajer->text()+":00";
QString Dhuhr_con=ui->Duhur->text()+":00";
QString Asr_con=ui->Asr->text()+":00";
QString Magrib_con=ui->Magrib->text()+":00";
QString Ashaa_con=ui->Asha->text()+":00";
// qDebug()<<Fajer_con<<Dhuhr_con<<Asr_con<<Magrib_con<<Ashaa_con;
if(time.toString()==Fajer_con){
eventAqama=true;
aqamaTime=20;
ui->time_remain_ar->setText("الوقت المتبقي لإقامة صلاة الفجر");
ui->time_remain_en->setText("Time remaining for Iqamah of Fajar Prayer");
}
if(time.toString()==Dhuhr_con){
eventAqama=true;
aqamaTime=15;
ui->time_remain_ar->setText("الوقت المتبقي لإقامة صلاة الظهر");
ui->time_remain_en->setText("Time remaining for Iqamah of Dhuhr Prayer");
}
if(time.toString()==Asr_con){
eventAqama=true;
aqamaTime=15;
ui->time_remain_ar->setText("الوقت المتبقي لإقامة صلاة العصر");
ui->time_remain_en->setText("Time remaining for Iqamah of Assr Prayer");
}
if (time.toString()==Magrib_con)
{
eventAqama=true;
aqamaTime=5;
ui->time_remain_ar->setText("الوقت المتبقي لإقامة صلاة المغرب");
ui->time_remain_en->setText("Time remaining for Iqamah of Maghrib Prayer");
}
if (time.toString()==Ashaa_con)
{
eventAqama=true;
aqamaTime=5;
ui->time_remain_ar->setText("الوقت المتبقي لإقامة صلاة العشاء");
ui->time_remain_en->setText("Time remaining for Iqamah of Isha Prayer");
}
if(eventAqama)
{
for(int i=aqamaTime ; i>=1 ;--i)
{
QString counter=QVariant(i).toString();
aqamShowElement();
ui->AqamaLabelCounter->setText(counter);
delay(60000);
}
eventAqama=false;
aqamHideelement();
}
}
inline void delay(int millisecondsWait)
{
QEventLoop loop;
QTimer t;
t.connect(&t, &QTimer::timeout, &loop, &QEventLoop::quit);
t.start(millisecondsWait);
loop.exec();
}
void grabbing_times(){
QUrl url = QUrl("https://www.gebetszeiten.de/Chemnitz/gebetszeiten-Chemnitz/169213-dit17de");
QWebView *view = new QWebView();
view->load(url);
QString fajer_search_elements="tr.fajrRow";
QString Shrouq_search_elements="tr.shuruukRow";
QString dhuhr_search_elements="tr.dhuhrRow";
QString assr_search_elements="tr.assrRow";
QString magrib_search_elements="tr.maghrebRow";
QString ishaa_search_elements="tr.ishaaRow";
QEventLoop loop;
QNetworkAccessManager num;
QNetworkRequest req(url);
QNetworkReply *reply = num.get(req);
MainWindow::connect(reply,&QNetworkReply::finished,&loop,&QEventLoop::quit);
loop.exec();
QString buffer = reply->readAll();
QWebFrame *frame =view->page()->mainFrame();
frame->setHtml(buffer);
QWebElement document = frame->documentElement();
QWebElementCollection fajer_elements = document.findAll(fajer_search_elements);
QWebElementCollection Shrouq_elements = document.findAll(Shrouq_search_elements);
QWebElementCollection dhuhr_elements = document.findAll(dhuhr_search_elements);
QWebElementCollection assr_elements = document.findAll(assr_search_elements);
QWebElementCollection magrib_elements = document.findAll(magrib_search_elements);
QWebElementCollection ishaa_elements = document.findAll(ishaa_search_elements);
QRegExp rx("(\\ |\\,|\\.|\\t|\\n)");
QStringList fajer_list;
QStringList Shrouq_list;
QStringList dhuhr_list;
QStringList assr_list;
QStringList magrib_list;
QStringList ishaa_list;
QStringList fajer_list_new;
QStringList Shrouq_list_new;
QStringList dhuhr_list_new;
QStringList assr_list_new;
QStringList magrib_list_new;
QStringList ishaa_list_new;
foreach (QWebElement fajer, fajer_elements){fajer_list= fajer.toPlainText().split(rx);for(int i=0;i<fajer_list.size();i++){if(fajer_list[i]=="Fadschr"|| fajer_list[i]=="*"){}else{fajer_list_new.append(fajer_list[i]);}}}
foreach (QWebElement Shrouq, Shrouq_elements){Shrouq_list= Shrouq.toPlainText().split(rx);for(int i=0;i<Shrouq_list.size();i++){if(Shrouq_list[i]=="S'Aufgang"|| Shrouq_list[i]=="*"){}else{Shrouq_list_new.append(Shrouq_list[i]);}}}
foreach (QWebElement dhuhr, dhuhr_elements){dhuhr_list= dhuhr.toPlainText().split(rx);for(int i=0;i<dhuhr_list.size();i++){if(dhuhr_list[i]=="Dhuhur"|| dhuhr_list[i]=="*"){}else{dhuhr_list_new.append(dhuhr_list[i]);}}}
foreach (QWebElement assr, assr_elements){assr_list= assr.toPlainText().split(rx);for(int i=0;i<assr_list.size();i++){if(assr_list[i]=="'Assr"|| assr_list[i]=="*"){}else{assr_list_new.append(assr_list[i]);}}}
foreach (QWebElement magrib, magrib_elements){magrib_list= magrib.toPlainText().split(rx);for(int i=0;i<magrib_list.size();i++){if(magrib_list[i]=="Maghrib"|| magrib_list[i]=="*"){}else{magrib_list_new.append(magrib_list[i]);}}}
foreach (QWebElement ishaa, ishaa_elements){ishaa_list= ishaa.toPlainText().split(rx);for(int i=0;i<ishaa_list.size();i++){if(ishaa_list[i]=="Ischaa"|| ishaa_list[i]=="*"){}else{ishaa_list_new.append(ishaa_list[i]);}}}
// qDebug()<<fajer_list_new;
// qDebug()<<dhuhr_list_new;
// qDebug()<<Shrouq_list_new;
// qDebug()<<assr_list_new;
// qDebug()<<magrib_list_new;
// qDebug()<<ishaa_list_new;
//query to delete the table before we insert the new data for one month
QSqlQuery query_delete_table;
query_delete_table.prepare("TRUNCATE TABLE pry_table");
query_delete_table.exec();
for(int i=0; i<fajer_list_new.size();i++){
QString fajer=fajer_list_new[i];
QString shrouq=Shrouq_list_new[i];
QString dhuhr=dhuhr_list_new[i];
QString assr=assr_list_new[i];
QString mgrb=magrib_list_new[i];
QString ishaa=ishaa_list_new[i];
QDate current_date= QDate::currentDate();
QDate date1;
date1.setDate(current_date.year(),current_date.month(),1);
QString date = date1.addDays(i).toString(Qt::ISODate);
QSqlQuery query1;
QString ha="";
QString he="";
query1.prepare("INSERT INTO `pry_table` (`date`, `fjr`, `shrq`, `dhr`, `asr`, `mgrb`, `ash`, `midnight`, `hadith_eng`, `hadith_de`) VALUES ('"+date+"', '"+fajer+"', '"+shrouq+"', '"+dhuhr+"', '"+assr+"', '"+mgrb+"', '"+ishaa+"', '', '"+ha+"', '"+he+"')");
query1.bindValue("date",date);
query1.bindValue("fajer",fajer);
query1.bindValue("shrouq",shrouq);
query1.bindValue("dhuhr",dhuhr);
query1.bindValue("assr",assr);
query1.bindValue("mgrb",mgrb);
query1.bindValue("ishaa",ishaa);
query1.bindValue("ha",ha);
query1.bindValue("he",he);
query1.exec();
}
}
void connect_database(){
QMessageBox msg;
QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
db.setHostName("localhost");
db.setUserName("root");
db.setPassword("root");
db.setDatabaseName("db_ib");
if(db.open()){
// msg.setText("the database connected");
// msg.exec();
}
else{
msg.setText("the database unconnected");
msg.exec();
}
}
QString* get_info(){struct QVariant;
{
//define a variable for Date and convert it to string and this variable has a method to add days
//so by increase g the date will increase
QString date1 =QDate::currentDate().toString(Qt::ISODate);
// qDebug()<<date1<<a;
QSqlQuery query;
query.prepare("SELECT `date`,TIME_FORMAT(`fjr`,'%H:%i'), TIME_FORMAT(`shrq`,'%H:%i'),TIME_FORMAT(`dhr`,'%H:%i') ,TIME_FORMAT(`asr`,'%H:%i'),TIME_FORMAT(`mgrb`,'%H:%i'),TIME_FORMAT(`ash`,'%H:%i'),`midnight`, `hadith_eng`, `hadith_de` FROM `pry_table` WHERE `date`='"+date1+"'");
query.bindValue("date",date1);
query.exec();
//qDebug(query);
query.first();
//put the date in variables to use later
QString fajer= query.value(1).toString();
QString shrq= query.value(2).toString();
QString dhr= query.value(3).toString();
QString asr= query.value(4).toString();
QString mgrb= query.value(5).toString();
QString ash= query.value(6).toString();
QString ha= query.value(8).toString();
QString he= query.value(9).toString();
QString* pray= new QString[8];
pray[0]=fajer;
pray[1]=shrq;
pray[2]=dhr;
pray[3]=asr;
pray[4]=mgrb;
pray[5]=ash;
pray[6]=ha;
pray[7]=he;
QString Dir_setting_file=QApplication::applicationDirPath()+"/Settings.ini";
QSettings* Settings_Pro = new QSettings(Dir_setting_file, QSettings::IniFormat);
if(Settings_Pro->value("Prayer/CheckBox",false).toBool()==true){
int isha_Spec = Settings_Pro->value("Prayer/IshaTime",0).toInt();
QTime isha = QTime::fromString(pray[4],"hh:mm");
pray[5]=isha.addSecs(isha_Spec*60).toString("hh:mm");
// qDebug()<<isha<<pray[5]<<isha_Spec;
}
return pray;
}}
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
connect_database();
QTimer *timer = new QTimer();
connect(timer, SIGNAL(timeout()),this,SLOT(showTime()));
timer->start(1000);
QTimer *timerEvent = new QTimer();
connect(timerEvent, SIGNAL(timeout()),this,SLOT(aqamEvent()));
timerEvent->start(1000);
QMainWindow::showFullScreen();
aqamHideelement();
}
MainWindow::~MainWindow()
{
delete ui;
}
//intial g by -4 cause the date i have it is less then the current day by 4
void MainWindow::on_pushButton_clicked()
{
//just uncomment the next function for grabbing date from Gebetszeit
// grabbing_times();
Settings settingForm ;
settingForm.setModal(true);
settingForm.exec();
}