From 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- korganizer/publishdialog.cpp | 168 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 168 insertions(+) create mode 100644 korganizer/publishdialog.cpp (limited to 'korganizer/publishdialog.cpp') diff --git a/korganizer/publishdialog.cpp b/korganizer/publishdialog.cpp new file mode 100644 index 000000000..a6d0881eb --- /dev/null +++ b/korganizer/publishdialog.cpp @@ -0,0 +1,168 @@ +/* + This file is part of KOrganizer. + Copyright (c) 2001 Cornelius Schumacher + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + As a special exception, permission is given to link this program + with any edition of Qt, and distribute the resulting executable, + without including the source code for Qt in the source distribution. +*/ + +#include +#include +#include +#include + +#include +#include +#ifndef KORG_NOKABC +#include +#endif +#include + +#include "koprefs.h" +#include "publishdialog.h" +#include "publishdialog_base.h" + +PublishDialog::PublishDialog( QWidget* parent, const char* name, + bool modal ) + : KDialogBase( parent, name, modal, + i18n("Select Addresses"), Ok|Cancel|Help, Ok, true ) +{ + mWidget = new PublishDialog_base( this, "PublishFreeBusy" ); + setMainWidget( mWidget ); + mWidget->mNameLineEdit->setEnabled( false ); + mWidget->mEmailLineEdit->setEnabled( false ); + connect( mWidget->mAddressListView, SIGNAL( selectionChanged(QListViewItem *) ), + SLOT(updateInput())); + connect( mWidget->mNew, SIGNAL( clicked() ), + SLOT( addItem() ) ); + connect( mWidget->mRemove, SIGNAL( clicked() ), + SLOT( removeItem() ) ); + connect( mWidget->mSelectAddressee, SIGNAL( clicked() ), + SLOT( openAddressbook() ) ); + connect( mWidget->mNameLineEdit, SIGNAL( textChanged(const QString&) ), + SLOT( updateItem() ) ); + connect( mWidget->mEmailLineEdit, SIGNAL( textChanged(const QString&) ), + SLOT( updateItem() ) ); +} + +PublishDialog::~PublishDialog() +{ +} + +void PublishDialog::addAttendee( Attendee *attendee ) +{ + mWidget->mNameLineEdit->setEnabled( true ); + mWidget->mEmailLineEdit->setEnabled( true ); + QListViewItem *item = new QListViewItem( mWidget->mAddressListView ); + item->setText( 0, attendee->name() ); + item->setText( 1, attendee->email() ); + mWidget->mAddressListView->insertItem( item ); +} + +QString PublishDialog::addresses() +{ + QString to = ""; + QListViewItem *item; + int i, count; + count = mWidget->mAddressListView->childCount(); + for ( i=0; imAddressListView->firstChild(); + mWidget->mAddressListView->takeItem( item ); + to += item->text( 1 ); + if ( i < count-1 ) { + to += ", "; + } + } + return to; +} + +void PublishDialog::addItem() +{ + mWidget->mNameLineEdit->setEnabled( true ); + mWidget->mEmailLineEdit->setEnabled( true ); + QListViewItem *item = new QListViewItem( mWidget->mAddressListView ); + mWidget->mAddressListView->insertItem( item ); + mWidget->mAddressListView->setSelected( item, true ); + mWidget->mNameLineEdit->setText( i18n("(EmptyName)") ); + mWidget->mEmailLineEdit->setText( i18n("(EmptyEmail)") ); +} + +void PublishDialog::removeItem() +{ + QListViewItem *item; + item = mWidget->mAddressListView->selectedItem(); + if (!item) return; + mWidget->mAddressListView->takeItem( item ); + item = mWidget->mAddressListView->selectedItem(); + if ( !item ) { + mWidget->mNameLineEdit->setText( "" ); + mWidget->mEmailLineEdit->setText( "" ); + mWidget->mNameLineEdit->setEnabled( false ); + mWidget->mEmailLineEdit->setEnabled( false ); + } + if ( mWidget->mAddressListView->childCount() == 0 ) { + mWidget->mNameLineEdit->setEnabled( false ); + mWidget->mEmailLineEdit->setEnabled( false ); + } +} + +void PublishDialog::openAddressbook() +{ +#ifndef KORG_NOKABC + KABC::Addressee::List addressList; + addressList = KABC::AddresseeDialog::getAddressees( this ); + //KABC::Addressee a = KABC::AddresseeDialog::getAddressee(this); + KABC::Addressee a = addressList.first(); + if ( !a.isEmpty() ) { + uint i; + for ( i=0; imNameLineEdit->setEnabled( true ); + mWidget->mEmailLineEdit->setEnabled( true ); + QListViewItem *item = new QListViewItem( mWidget->mAddressListView ); + mWidget->mAddressListView->setSelected( item, true ); + mWidget->mNameLineEdit->setText( a.realName() ); + mWidget->mEmailLineEdit->setText( a.preferredEmail() ); + mWidget->mAddressListView->insertItem( item ); + } + } +#endif +} + +void PublishDialog::updateItem() +{ + QListViewItem *item; + item = mWidget->mAddressListView->selectedItem(); + if (!item) return; + item->setText( 0, mWidget->mNameLineEdit->text() ); + item->setText( 1, mWidget->mEmailLineEdit->text() ); +} + +void PublishDialog::updateInput() +{ + QListViewItem *item; + item = mWidget->mAddressListView->selectedItem(); + if (!item) return; + mWidget->mNameLineEdit->setEnabled( true ); + mWidget->mEmailLineEdit->setEnabled( true ); + QString mail = item->text( 1 ); + mWidget->mNameLineEdit->setText( item->text( 0 ) ); + mWidget->mEmailLineEdit->setText( mail ); +} + +#include "publishdialog.moc" -- cgit v1.2.1