X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fforms%2Feditaccount%2FfrmEditAccount.h;h=6a1b5575e938b28f0754f26ab2e8ba9adacf22f8;hb=cba151c4b833a26c63984769f921bab5e755decd;hp=d19cbc68f7965a65868bc2d20a2e48e7c28bb705;hpb=a5f6f2cc97062e1ec82b7d50b47f68f447353073;p=xestiacalendar%2F.git diff --git a/source/forms/editaccount/frmEditAccount.h b/source/forms/editaccount/frmEditAccount.h index d19cbc6..6a1b557 100644 --- a/source/forms/editaccount/frmEditAccount.h +++ b/source/forms/editaccount/frmEditAccount.h @@ -1,3 +1,21 @@ +// frmEditAccount.h - frmEditAccount form functions. +// +// (c) 2016-2017 Xestia Software Development. +// +// This file is part of Xestia Calendar. +// +// 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 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. +// +// You should have received a copy of the GNU General Public License along +// with Xestia Calendar. If not, see + #ifndef __frmEditAccount__ #define __frmEditAccount__ @@ -6,13 +24,22 @@ Subclass of frmEditAccountADT, which is generated by wxFormBuilder. */ +#include +#include + #include "../AppXestiaCalendar.h" +#include "svrblist.h" + //// end generated include /** Implementing frmEditAccountADT */ class frmEditAccount : public frmEditAccountADT { + private: + wxFileConfig *cfgfile; + wxString AccName; + bool DialogResult = false; protected: // Handlers for frmEditAccountADT events. void DetectAddressBook( wxCommandEvent& event ); @@ -21,6 +48,9 @@ class frmEditAccount : public frmEditAccountADT public: /** Constructor */ frmEditAccount( wxWindow* parent ); + void LoadPointers( wxFileConfig* cfgin ); + void LoadSettings( wxString AccNameIn ); + bool GetDialogResult(); //// end generated class members };