X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditorPicture.cpp;h=0be593115f491336237c5d711ccebe75096910c4;hb=56eff3f03cf38a27161b3279318c474e0421111c;hp=d548c9adb7ab54031d4e8db1eecc208b0b9732d8;hpb=da64d37d0a13895554e4ad945c46dd0af6d1c0e6;p=xestiaab%2F.git diff --git a/source/contacteditor/frmContactEditorPicture.cpp b/source/contacteditor/frmContactEditorPicture.cpp index d548c9a..0be5931 100644 --- a/source/contacteditor/frmContactEditorPicture.cpp +++ b/source/contacteditor/frmContactEditorPicture.cpp @@ -29,21 +29,27 @@ #include "../common/base64.h" #include "../common/mime.h" - frmContactEditorPicture::frmContactEditorPicture( wxWindow* parent ) : frmContactEditorPictureADT( parent ) { + + // Setup the window. + EditorMode = FALSE; sliPriority->Disable(); cmbType->Append(wxT("")); cmbType->Append(_("Home")); cmbType->Append(_("Work")); + } void frmContactEditorPicture::EnablePriority( wxCommandEvent& event ) { + + // Enable/disable the priority. + if (chkUsePref->IsChecked()){ sliPriority->Enable(); } else { @@ -53,6 +59,9 @@ void frmContactEditorPicture::EnablePriority( wxCommandEvent& event ) void frmContactEditorPicture::ProcessData( wxCommandEvent& event ) { + + // Process data. + long ListCtrlIndex; if (EditorMode == FALSE){ @@ -186,7 +195,17 @@ void frmContactEditorPicture::ProcessData( wxCommandEvent& event ) coldata.SetId(PictureListIndex); coldata.SetData(PictureListIndex); - coldata.SetText(_("Picture")); + + if (PictureLogo == TRUE){ + + coldata.SetText(_("Picture")); + + } else { + + coldata.SetText(_("Logo")); + + } + ListCtrlIndex = PictureListCtrlPtr->InsertItem(coldata); if (strValue == _("Home")) { @@ -258,7 +277,15 @@ void frmContactEditorPicture::ProcessData( wxCommandEvent& event ) return; } - PictureListCtrlPtr->SetItem(longSelected, 0, wxT("Picture")); + if (PictureLogo == TRUE){ + PictureListCtrlPtr->SetItem(longSelected, 0, _("Picture")); + + } else { + + PictureListCtrlPtr->SetItem(longSelected, 0, _("Logo")); + + } + PictureListCtrlPtr->SetItem(longSelected, 1, strValue); if (chkUsePref->IsChecked()){ @@ -278,11 +305,18 @@ void frmContactEditorPicture::ProcessData( wxCommandEvent& event ) void frmContactEditorPicture::CloseWindow( wxCommandEvent& event ) { + + // Close this window. + this->Close(); + } void frmContactEditorPicture::SetEditorMode(bool EditMode) { + + // Set the editor mode. + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -308,7 +342,8 @@ void frmContactEditorPicture::SetEditorMode(bool EditMode) striter = PictureListTypePtr->find(PictureListIndex); - if (striter->first == PictureListIndex){ + if (striter->first == PictureListIndex && + striter != PictureListTypePtr->end()){ strValue = striter->second; @@ -334,7 +369,8 @@ void frmContactEditorPicture::SetEditorMode(bool EditMode) intiter = PictureListPrefPtr->find(PictureListIndex); - if (intiter->first == PictureListIndex && intiter->second > 0){ + if (intiter->first == PictureListIndex && intiter->second > 0 && + intiter != PictureListPrefPtr->end()){ sliPriority->SetValue(intiter->second); sliPriority->Enable(); @@ -356,9 +392,12 @@ void frmContactEditorPicture::SetupPointers(std::map *PictureL std::map *PictureListMediatype, std::map *PictureListPref, wxListCtrl *PictureListCtrl, - int PictureIndex ) + int PictureIndex, + bool PictureLogoIn ) { + // Setup the pointers. + PictureListPtr = PictureList; PictureListAltIDPtr = PictureListAltID; PictureListPIDPtr = PictureListPID; @@ -370,5 +409,6 @@ void frmContactEditorPicture::SetupPointers(std::map *PictureL PictureListPrefPtr = PictureListPref; PictureListCtrlPtr = PictureListCtrl; PictureListIndex = PictureIndex; + PictureLogo = PictureLogoIn; } \ No newline at end of file