X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fwidgets%2FXCCalendarManipulator.h;h=a06c726ab3936e3798177147324467f6988b9616;hb=ca1d24d80ec04ae64a7540cf8bca61c053f2a193;hp=1a69bc110dcbc1975df45513bc65a55522eb6521;hpb=fb61a8df39e632cce6dfd8b421f410f041a25760;p=xestiacalendar%2F.git diff --git a/source/widgets/XCCalendarManipulator.h b/source/widgets/XCCalendarManipulator.h index 1a69bc1..a06c726 100644 --- a/source/widgets/XCCalendarManipulator.h +++ b/source/widgets/XCCalendarManipulator.h @@ -1,14 +1,14 @@ // XCCalendarManipulator.h - Xestia Calendar XCCalendarManipulator header file. // -// (c) 2016 Xestia Software Development. +// (c) 2016-2017 Xestia Software Development. // // This file is part of Xestia Calendar. // -// Xestia Address Book is free software: you can redistribute it and/or modify +// Xestia Calendar 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, version 3 of the license. // -// Xestia Address Book is distributed in the hope that it will be useful, +// Xestia Calendar 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. @@ -20,6 +20,7 @@ #define __WIDGETS_XCCALENDARMANIPULATOR_H__ #include +#include #include #include @@ -38,18 +39,18 @@ class XCCalendarManipulator: public wxPanel wxBoxSizer *szrMain = nullptr; wxBoxSizer *szrNavigation = nullptr; wxPanel *pnlMain = nullptr; - wxButton *PreviousButton = nullptr; - wxButton *NextButton = nullptr; - wxButton *CalendarsButton = nullptr; - wxButton *DateButton = nullptr; - XCCalendarMonthSelect *Moo = nullptr; + wxButton *previousButton = nullptr; + wxButton *nextButton = nullptr; + wxButton *calendarsButton = nullptr; + wxButton *dateButton = nullptr; + XCCalendarMonthSelect *moo = nullptr; XCCalendarList *calendarList = nullptr; CalendarDataStorage *dataStorage = nullptr; - int Month = 0; - int Year = 2016; - wxBitmap NextIconBitmap; - wxBitmap PreviousIconBitmap; - wxBitmap CalendarsIconBitmap; + int month = 0; + int year = 2016; + wxBitmap nextIconBitmap; + wxBitmap previousIconBitmap; + wxBitmap calendarsIconBitmap; void UpdateDateButtonText(); protected: @@ -65,8 +66,8 @@ class XCCalendarManipulator: public wxPanel ~XCCalendarManipulator(); int GetMonth(); int GetYear(); - - DECLARE_EVENT_TABLE() + std::vector GetHiddenAccountsList(); + std::vector GetHiddenCalendarsList(); };