Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Contact editing and search from command line switches to be implemented at a later...
[xestiaab/.git] / source / main.cpp
1 #include <stdlib.h>
3 #include <wx/wx.h>
4 #include <wx/icon.h>
5 #include <wx/mstream.h>
6 #include <wx/cmdline.h>
7 #include <wx/wxprec.h>
8 #include <wx/filename.h>
9 #include <curl/curl.h>
11 #include "contacteditor/frmContactEditor.h"
12 #include "frmMain.h"
13 #include "bitmaps.h"
14 #include "version.h"
15 #include "frmActivityMgr.h"
16 #include "common/timers.h"
17 #include "common/defaults.h"
19 class XestiaABApp: public wxApp
20 {
21     virtual bool OnInit();
22 };
24 IMPLEMENT_APP(XestiaABApp);
26 bool XestiaABApp::OnInit()
27 {
29         // Setup the locale.
31         wxLocale locale;
32         locale.Init(wxLANGUAGE_DEFAULT, wxLOCALE_LOAD_DEFAULT);
34 #if defined(__WIN32__)
36         // Check that the minimum version of Xestia Common Components is installed on the system.
38 #include <xestiaccdll.h>
40         if (!CheckXCCVersion(1, 0, 0)){
41                 MessageBox(0, L"The version of Xestia Common Components installed is an older version not supported by this version of Xestia Address Book.\n\nPlease visit http://xestia.co.uk/commoncomponents and follow the page instructions to download the version required.", L"Older version of Xestia Common Components installed", MB_OK|MB_ICONSTOP);
42                 this->Exit();
43         }
45 #endif
47     static const wxCmdLineEntryDesc g_cmdLineDesc [] =
48     {
49          { wxCMD_LINE_SWITCH, wxT_2("h"), wxT_2("help"), wxTRANSLATE("Displays help on command line parameters"),
50              wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
51          /*{ wxCMD_LINE_OPTION, wxT_2("e"), wxT_2("edit"), wxTRANSLATE("Edit a vCard 4.0 formatted contact"),
52              wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL }, 
53          { wxCMD_LINE_SWITCH, wxT_2("s"), wxT_2("search"), wxTRANSLATE("Display the search window instead of starting normally"),
54              wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },*/
55          { wxCMD_LINE_SWITCH, wxT_2("v"), wxT_2("version"), wxTRANSLATE("Displays version number"),
56              wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
57          { wxCMD_LINE_NONE }
58     };
60     wxString wxSContactFilename;
61     wxCmdLineParser XABArgs (g_cmdLineDesc, argc, argv);
62     XABArgs.Parse();
63     
64     if (XABArgs.Found(wxT("h"))){
65     
66         return false;
67     
68     }
69     
70     if (XABArgs.Found(wxT("v"))){
71     
72         exit(0);
73     
74     }
75     
76     wxInitAllImageHandlers();
77     
78     /*if (XABArgs.Found(wxT("e"), &wxSContactFilename)){
79         
80         // Check if the filename exists.
81         
82         //wxImage::AddHandler(new wxPNGHandler);
84         wxFileName contactfile(wxSContactFilename);
85         
86         if (!contactfile.FileExists()){
87         
88                 return false;
89         
90         }
91         
92         curl_global_init(CURL_GLOBAL_ALL);
93         
94         wxMemoryInputStream istream(bigimgs_contactpersonicon48_png, sizeof(bigimgs_contactpersonicon48_png));
95         wxImage bigimgs_contactpersonicon48i(istream, wxBITMAP_TYPE_PNG);
96         wxBitmap contacticonbmp(bigimgs_contactpersonicon48i, -1);
97         wxIcon contacticon;
98         contacticon.CopyFromBitmap(contacticonbmp); 
100         // Get the filename of the selected contact.
102         frmContactEditor *ContactEditor = new frmContactEditor( NULL );
103         ContactEditor->SetupHeaders();    
104         ContactEditor->LoadContact(wxSContactFilename);
105         //ContactEditor->SetupContact(ActiveAccount);
106         ContactEditor->SetIcon(contacticon);
107         ContactEditor->Show(true);
108         
109         SetTopWindow(ContactEditor);
110         
111         return true;
112     
113     }*/
114     
115     // Setup default settings and accounts if they don't exist.
116     
117     SetupDirectories();
118     SetupDefaultSettings();
119     SetupDefaultAddressBook();
121     //wxImage::AddHandler(new wxPNGHandler); 
122     wxMemoryInputStream istream(bigimgs_appicon48_png, sizeof(bigimgs_appicon_png));
123     wxImage bigimgs_appicon48i(istream, wxBITMAP_TYPE_PNG);
124     wxBitmap appiconbmp(bigimgs_appicon48i, -1);    
125     wxIcon appicon;
126     
127     appicon.CopyFromBitmap(appiconbmp);
128     frmMain *frame = new frmMain( NULL );
129         frame->Show(true);
130     frmActivityMgr *frameActMgr = new frmActivityMgr ( frame );
131     frame->SetupPointers(frameActMgr);
132     frame->SetupForm();
133     frame->SetIcon(appicon);
134    
135     SetTopWindow(frame);
136    
137     return true;
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy