You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
262 lines
6.8 KiB
262 lines
6.8 KiB
// kmaddrbookdlg.cpp |
|
// Author: Stefan Taferner <taferner@kde.org> |
|
|
|
#include "kmaddrbookdlg.h" |
|
#include "kmaddrbook.h" |
|
#include <assert.h> |
|
#include <kapp.h> |
|
#include <klocale.h> |
|
#include <kmessagebox.h> |
|
|
|
//----------------------------------------------------------------------------- |
|
KMAddrBookSelDlg::KMAddrBookSelDlg(KMAddrBook* aAddrBook, const char* aCap): |
|
KMAddrBookSelDlgInherited(NULL, aCap, TRUE), mGrid(this, 2, 2), |
|
mListBox(this), |
|
mBtnOk(i18n("OK"),this), |
|
mBtnCancel(i18n("Cancel"),this) |
|
{ |
|
QString addr; |
|
|
|
initMetaObject(); |
|
setCaption(aCap ? QString(aCap) : i18n("Addressbook")); |
|
|
|
assert(aAddrBook != NULL); |
|
mAddrBook = aAddrBook; |
|
mAddress = QString::null; |
|
|
|
mBtnOk.adjustSize(); |
|
mBtnOk.setMinimumSize(mBtnOk.size()); |
|
mBtnCancel.adjustSize(); |
|
mBtnCancel.setMinimumSize(mBtnCancel.size()); |
|
|
|
mGrid.addMultiCellWidget(&mListBox, 0, 0, 0, 1); |
|
mGrid.addWidget(&mBtnOk, 1, 0); |
|
mGrid.addWidget(&mBtnCancel, 1, 1); |
|
|
|
mGrid.setRowStretch(0,10); |
|
mGrid.setRowStretch(1,0); |
|
mGrid.setColStretch(0,10); |
|
mGrid.setColStretch(1,10); |
|
mGrid.activate(); |
|
|
|
mListBox.setSelectionMode(QListBox::Multi); |
|
|
|
connect(&mBtnOk, SIGNAL(clicked()), SLOT(slotOk())); |
|
connect(&mListBox, SIGNAL(selected(int)), SLOT(slotOk())); |
|
connect(&mBtnCancel, SIGNAL(clicked()), SLOT(slotCancel())); |
|
|
|
for (addr=mAddrBook->first(); addr; addr=mAddrBook->next()) |
|
{ |
|
mListBox.insertItem(addr); |
|
} |
|
resize(350, 450); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
KMAddrBookSelDlg::~KMAddrBookSelDlg() |
|
{ |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookSelDlg::slotOk() |
|
{ |
|
mAddress = QString::null; |
|
unsigned int idx; |
|
unsigned int count = 0; |
|
for (idx = 0; idx < mListBox.count(); idx++) |
|
{ |
|
if( mListBox.isSelected(idx) ) { |
|
if( count > 0 ) { |
|
mAddress += ", "; |
|
} |
|
mAddress += mListBox.text(idx); |
|
count++; |
|
} |
|
} |
|
accept(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookSelDlg::slotCancel() |
|
{ |
|
mAddress = QString::null; |
|
reject(); |
|
} |
|
|
|
|
|
//============================================================================= |
|
// |
|
// Class KMAddrBookEditDlg |
|
// |
|
//============================================================================= |
|
|
|
KMAddrBookEditDlg::KMAddrBookEditDlg(KMAddrBook* aAddrBook, const char* aCap): |
|
KMAddrBookEditDlgInherited(NULL, NULL, TRUE), mGrid(this, 3, 4), |
|
mListBox(this), mEdtAddress(this), |
|
mBtnOk(i18n("OK"),this), |
|
mBtnCancel(i18n("Cancel"),this), |
|
mBtnAdd(i18n("Add"),this), |
|
mBtnRemove(i18n("Remove"),this) |
|
{ |
|
QString addr; |
|
|
|
initMetaObject(); |
|
setCaption(aCap ? QString(aCap) : i18n("Addressbook Manager")); |
|
|
|
assert(aAddrBook != NULL); |
|
mAddrBook = aAddrBook; |
|
mIndex = -1; |
|
|
|
mEdtAddress.adjustSize(); |
|
mEdtAddress.setMinimumSize(mEdtAddress.size()); |
|
mBtnOk.adjustSize(); |
|
mBtnOk.setMinimumSize(mBtnOk.size()); |
|
mBtnCancel.adjustSize(); |
|
mBtnCancel.setMinimumSize(mBtnCancel.size()); |
|
mBtnAdd.adjustSize(); |
|
mBtnAdd.setMinimumSize(mBtnAdd.size()); |
|
mBtnAdd.setEnabled(false); |
|
mBtnRemove.adjustSize(); |
|
mBtnRemove.setMinimumSize(mBtnRemove.size()); |
|
mBtnRemove.setEnabled(false); |
|
|
|
mGrid.addMultiCellWidget(&mListBox, 0, 0, 0, 3); |
|
mGrid.addMultiCellWidget(&mEdtAddress, 1, 1, 0, 3); |
|
mGrid.addWidget(&mBtnOk, 2, 0); |
|
mGrid.addWidget(&mBtnCancel, 2, 1); |
|
mGrid.addWidget(&mBtnAdd, 2, 2); |
|
mGrid.addWidget(&mBtnRemove, 2, 3); |
|
|
|
mGrid.setRowStretch(0,10); |
|
mGrid.setRowStretch(1,0); |
|
mGrid.setRowStretch(2,0); |
|
mGrid.setColStretch(0,10); |
|
mGrid.setColStretch(1,10); |
|
mGrid.setColStretch(2,10); |
|
mGrid.setColStretch(3,10); |
|
mGrid.activate(); |
|
|
|
connect(&mListBox, SIGNAL(highlighted(const QString&)), |
|
SLOT(slotLbxHighlighted(const QString&))); |
|
connect(&mBtnOk, SIGNAL(clicked()), SLOT(slotOk())); |
|
connect(&mBtnCancel, SIGNAL(clicked()), SLOT(slotCancel())); |
|
connect(&mBtnAdd, SIGNAL(clicked()), SLOT(slotAdd())); |
|
connect(&mBtnRemove, SIGNAL(clicked()), SLOT(slotRemove())); |
|
connect(&mEdtAddress, SIGNAL(textChanged(const QString&)), SLOT(slotEnableAdd())); |
|
connect(&mListBox, SIGNAL(selectionChanged()), SLOT(slotEnableRemove())); |
|
|
|
for (addr=mAddrBook->first(); addr; addr=mAddrBook->next()) |
|
{ |
|
mListBox.insertItem(addr); |
|
} |
|
resize(350, 450); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
KMAddrBookEditDlg::~KMAddrBookEditDlg() |
|
{ |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotLbxHighlighted(const QString& aItem) |
|
{ |
|
|
|
mBtnRemove.setEnabled(true); |
|
|
|
int oldIndex = mIndex; |
|
disconnect(&mListBox, SIGNAL(highlighted(const QString&)), |
|
this, SLOT(slotLbxHighlighted(const QString&))); |
|
mIndex = mListBox.currentItem(); |
|
|
|
// Change of behaviour between QT 2.1b1 and QT2.1b2 |
|
// changeItem below changes the currentItem! |
|
if (oldIndex>=0) |
|
mListBox.changeItem(mEdtAddress.text(), oldIndex); |
|
mListBox.setCurrentItem( mIndex ); // keep currentItem the same |
|
mEdtAddress.setText(aItem); |
|
|
|
connect(&mListBox, SIGNAL(highlighted(const QString&)), |
|
SLOT(slotLbxHighlighted(const QString&))); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotOk() |
|
{ |
|
int idx, num; |
|
QString addr = mEdtAddress.text(); |
|
|
|
if (mIndex>=0) |
|
mListBox.changeItem(addr, mIndex); |
|
else if (!addr.isEmpty()) |
|
mListBox.insertItem(mEdtAddress.text(), mListBox.currentItem()); |
|
|
|
mAddrBook->clear(); |
|
num = mListBox.count(); |
|
for(idx=0; idx<num; idx++) |
|
{ |
|
addr = mListBox.text(idx); |
|
mAddrBook->insert(addr); |
|
} |
|
if(mAddrBook->store() == IO_FatalError) |
|
{ |
|
KMessageBox::sorry(0, i18n("The addressbook could not be stored.")); |
|
return; |
|
} |
|
accept(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotCancel() |
|
{ |
|
reject(); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotEnableAdd() |
|
{ |
|
mBtnAdd.setEnabled(true); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotAdd() |
|
{ |
|
const char* addr = mEdtAddress.text(); |
|
|
|
if (!addr || !*addr) return; |
|
mIndex = -1; |
|
mListBox.insertItem(addr, mListBox.currentItem()); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotEnableRemove() |
|
{ |
|
mBtnRemove.setEnabled(true); |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
void KMAddrBookEditDlg::slotRemove() |
|
{ |
|
int idx = mListBox.currentItem(); |
|
mIndex = -1; |
|
if (idx >= 0) mListBox.removeItem(idx); |
|
if (idx >= (int)mListBox.count()) idx--; |
|
mListBox.setCurrentItem(idx); |
|
if( mListBox.count() == 0 ) { |
|
mBtnRemove.setEnabled(false); |
|
} |
|
} |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
#include "kmaddrbookdlg.moc"
|
|
|