jce-manager/main/CalendarTab/CalendarManager.cpp
liranbg da009ed027 fix #16
more debugging detailes from mainscreen.cpp
add version variable to .pro
changed location of jcelogger
~still need to add translations
2014-09-23 01:17:05 +03:00

43 lines
1.1 KiB
C++

#include "CalendarManager.h"
CalendarManager::CalendarManager(QGridLayout *ptr)
{
caliSchedPtr = new calendarSchedule();
ptr->addWidget(caliSchedPtr);
caliDialog = new CalendarDialog();
}
void CalendarManager::setCalendar(QString html)
{
caliSchedPtr->setPage(html);
}
void CalendarManager::exportCalendarCSV() //need to add fix to the null pointer bug
{
if (this->caliSchedPtr->getCourses() == NULL)
return;
QMessageBox msgBox;
int buttonClicked = caliDialog->exec();
if (buttonClicked == 0) //cancel?
return;
//calDialog.getStartDate(),calDialog.getEndDate()
if (caliDialog->ok())
{
if (CSV_Exporter::exportCalendar(caliSchedPtr, caliDialog))
{
msgBox.setIcon(QMessageBox::Information);
msgBox.setText(QObject::tr("Exported Successfuly!"));
msgBox.exec();
}
}
else
{
msgBox.setIcon(QMessageBox::Critical);
msgBox.setText(QObject::tr("Dates not valid"));
msgBox.exec();
}
}