lib: added implicit ctor converter from DatabaseDatabase to DBListType
[barry/progweb.git] / desktop / src / CUI_Evolution.h
blob3af9c7eb82eb3a3f8a6cd28461eae4c7754d4abc
1 ///
2 /// \file CUI_Evolution.h
3 /// ConfigUI derived class to configure the Evolution App
4 ///
6 /*
7 Copyright (C) 2009-2012, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_CUI_EVOLUTION_H__
23 #define __BARRY_CUI_EVOLUTION_H__
25 #include "configui.h"
26 #include "osconfig.h"
27 #include <memory>
29 class wxWindow;
31 namespace AppConfig {
33 class Evolution : public ConfigUI
35 OpenSync::Config::Evolution *m_evolution;
36 plugin_ptr m_container; // merely holds m_evolution
38 // convenience pointers
39 wxWindow *m_parent;
41 protected:
42 bool InitialRun();
44 public:
45 Evolution();
47 // virtual overrides (ConfigUI)
48 virtual std::string AppName() const;
49 virtual bool Configure(wxWindow *parent, plugin_ptr old_plugin);
50 virtual plugin_ptr GetPlugin();
51 virtual bool RunApp(wxWindow *parent);
52 virtual void PreSyncAppInit();
53 virtual bool ZapData(wxWindow *parent, plugin_ptr plugin,
54 OpenSync::API *engine);
56 // static utility functions
57 static long ForceShutdown();
62 #endif