#ifndef __frmMain__ #define __frmMain__ /** @file Subclass of frmMainADT, which is generated by wxFormBuilder. */ #include #include #include #include #include "../../AppXestiaCalendar.h" #include "../about/frmAbout.h" #include "../update/frmUpdate.h" #include "../../widgets/XCCalendarCtrl.h" #include "../../libraries/CalendarDataStorage/CalendarDataStorage.h" #include "../../objects/calendarlist/CalendarList.h" #include "events.h" #include "preferences.h" #include "dirs.h" //// end generated include /** Implementing frmMainADT */ class frmMain : public frmMainADT { private: XCCalendarCtrl *mainCalendarCtrl = nullptr; XCCalendarMonthView *monthViewCtrl = nullptr; XCALPreferences *preferences = nullptr; CalendarDataStorage calendarData; protected: void QuitApp( wxCloseEvent& event ); void QuitApp( wxCommandEvent& event ); void QuitApp(); void ShowUpdateWindow( wxCommandEvent& event ); void ShowAboutWindow( wxCommandEvent& event ); void LoadAccountData(); public: /** Constructor */ frmMain( wxWindow* parent ); //// end generated class members }; #endif // __frmMain__