From: Steve Brokenshire Date: Sun, 6 Mar 2016 17:27:23 +0000 (+0000) Subject: Implemented support for the -d switch to display contact information. X-Git-Tag: release-0.10~4 X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=commitdiff_plain;h=6e7e508af65b6a65b491f2727006ce53f90f4b8e Implemented support for the -d switch to display contact information. --- diff --git a/source/main.cpp b/source/main.cpp index 42dda48..4bc7249 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -28,6 +28,8 @@ #include "contacteditor/frmContactEditor.h" #include "frmMain.h" +#include "frmContact.h" +#include "vcard/vcard.h" #include "bitmaps.h" #include "version.h" #include "convert.h" @@ -81,6 +83,8 @@ bool XestiaABApp::OnInit() wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL }, { wxCMD_LINE_OPTION, wxT_2("ofile"), NULL, wxTRANSLATE(_("Output filename to write to (don't use to pipe to console). (used with -c)")), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL }, + { wxCMD_LINE_OPTION, wxT_2("d"), wxT_2("display"), wxTRANSLATE(_("Display a contact in the contact information window.")), + wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL }, { wxCMD_LINE_SWITCH, wxT_2("s"), wxT_2("search"), wxTRANSLATE(_("Display the search window instead of starting normally")), wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL }, { wxCMD_LINE_SWITCH, wxT_2("v"), wxT_2("version"), wxTRANSLATE(_("Displays version number")), @@ -246,7 +250,7 @@ bool XestiaABApp::OnInit() wxIcon contacticon; contacticon.CopyFromBitmap(contacticonbmp); - // Get the filename of the selected contact. + // Setup the contact editor with the filename given. frmContactEditor *ContactEditor = new frmContactEditor( NULL ); ContactEditor->SetupHeaders(); @@ -261,6 +265,94 @@ bool XestiaABApp::OnInit() } + if (XABArgs.Found(wxT("d"), &wxSContactFilename)){ + + // Check if the filename exists. + + wxFileName contactfile(wxSContactFilename); + + if (!contactfile.FileExists()){ + + wxMessageBox(_("The file with the filename given does not exist."), _("Error loading contact"), wxICON_ERROR); + return false; + + } + + // Check if file is in the user's Xestia Address Book data storage + // path. If it is, refuse to open it. + + wxString UserDir = GetUserDir(); + long UserDirLength = UserDir.Len(); + + if (UserDir == contactfile.GetFullPath().Mid(0, UserDirLength)){ + + wxMessageBox(_("The file with the filename given is in the directories that Xestia Address Book stores it's data and cannot be opened directly."), _("Error loading contact"), wxICON_ERROR); + return false; + + } + + wxMemoryInputStream istream(bigimgs_contactpersonicon48_png, sizeof(bigimgs_contactpersonicon48_png)); + wxImage bigimgs_contactpersonicon48i(istream, wxBITMAP_TYPE_PNG); + wxBitmap contacticonbmp(bigimgs_contactpersonicon48i, -1); + wxIcon contacticon; + contacticon.CopyFromBitmap(contacticonbmp); + + // Setup the contact information icons for later. + + wxFileSystem::AddHandler(new wxMemoryFSHandler); + wxImage ciicon_png; + + wxMemoryInputStream ciptostream(icons_cipto_png, sizeof(icons_cipto_png)); + ciicon_png.LoadFile(ciptostream, wxBITMAP_TYPE_PNG); + wxMemoryFSHandler::AddFile(wxT("cipto.png"), ciicon_png, wxBITMAP_TYPE_PNG); + + wxMemoryInputStream cilogstream(icons_cilog_png, sizeof(icons_cilog_png)); + ciicon_png.LoadFile(cilogstream, wxBITMAP_TYPE_PNG); + wxMemoryFSHandler::AddFile(wxT("cilog.png"), ciicon_png, wxBITMAP_TYPE_PNG); + + wxMemoryInputStream cisndstream(icons_cisnd_png, sizeof(icons_cisnd_png)); + ciicon_png.LoadFile(cisndstream, wxBITMAP_TYPE_PNG); + wxMemoryFSHandler::AddFile(wxT("cisnd.png"), ciicon_png, wxBITMAP_TYPE_PNG); + + wxMemoryInputStream cikeystream(icons_cikey_png, sizeof(icons_cikey_png)); + ciicon_png.LoadFile(cikeystream, wxBITMAP_TYPE_PNG); + wxMemoryFSHandler::AddFile(wxT("cikey.png"), ciicon_png, wxBITMAP_TYPE_PNG); + + wxMemoryInputStream civenstream(icons_civen_png, sizeof(icons_civen_png)); + ciicon_png.LoadFile(civenstream, wxBITMAP_TYPE_PNG); + wxMemoryFSHandler::AddFile(wxT("civen.png"), ciicon_png, wxBITMAP_TYPE_PNG); + + wxMemoryInputStream ciextstream(icons_ciext_png, sizeof(icons_ciext_png)); + ciicon_png.LoadFile(ciextstream, wxBITMAP_TYPE_PNG); + wxMemoryFSHandler::AddFile(wxT("ciext.png"), ciicon_png, wxBITMAP_TYPE_PNG); + + // Setup the contact information window. + + frmContact *ContactWindow = new frmContact( NULL ); + + std::map MemoryFileSystem; + + vCard FileLoadData; + FileLoadData.LoadFile(wxSContactFilename); + ContactWindow->SetMode(true); + ContactWindow->SetUID(0); + ContactWindow->SetupPointers(&MemoryFileSystem); + ContactWindow->SetupContactData(&FileLoadData); + ContactWindow->Show(true); + + /*frmContactEditor *ContactEditor = new frmContactEditor( NULL ); + ContactEditor->SetupHeaders(); + ContactEditor->SetMode(TRUE); + ContactEditor->LoadContact(wxSContactFilename); + ContactEditor->SetIcon(contacticon); + ContactEditor->Show(true);*/ + + SetTopWindow(ContactWindow); + + return true; + + } + /*if (!XABArgs.Found(wxT(""))){ return false;