|
|
|
/*
|
|
|
|
This file is part of KAddressBook.
|
|
|
|
Copyright (c) 2002 Mike Pilone <mpilone@slac.com>
|
|
|
|
|
|
|
|
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 TQt, and distribute the resulting executable,
|
|
|
|
without including the source code for TQt in the source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <tqbuttongroup.h>
|
|
|
|
#include <tqcheckbox.h>
|
|
|
|
#include <tqlabel.h>
|
|
|
|
#include <tqlayout.h>
|
|
|
|
#include <tqlistbox.h>
|
|
|
|
#include <tqlistview.h>
|
|
|
|
#include <tqpushbutton.h>
|
|
|
|
#include <tqsignalmapper.h>
|
|
|
|
#include <tqstring.h>
|
|
|
|
#include <tqtooltip.h>
|
|
|
|
|
|
|
|
#include <tdeapplication.h>
|
|
|
|
#include <kbuttonbox.h>
|
|
|
|
#include <kcombobox.h>
|
|
|
|
#include <tdeconfig.h>
|
|
|
|
#include <kdebug.h>
|
|
|
|
#include <kiconloader.h>
|
|
|
|
#include <klineedit.h>
|
|
|
|
#include <tdelistview.h>
|
|
|
|
#include <tdelocale.h>
|
|
|
|
|
|
|
|
#include <tdeabc/phonenumber.h>
|
|
|
|
|
|
|
|
#include "phoneeditwidget.h"
|
|
|
|
|
|
|
|
PhoneTypeCombo::PhoneTypeCombo( TQWidget *parent )
|
|
|
|
: KComboBox( parent, "TypeCombo" ),
|
|
|
|
mType( TDEABC::PhoneNumber::Home ),
|
|
|
|
mLastSelected( 0 ),
|
|
|
|
mTypeList( TDEABC::PhoneNumber::typeList() )
|
|
|
|
{
|
|
|
|
mTypeList.append( -1 ); // Others...
|
|
|
|
|
|
|
|
update();
|
|
|
|
|
|
|
|
connect( this, TQT_SIGNAL( activated( int ) ),
|
|
|
|
this, TQT_SLOT( selected( int ) ) );
|
|
|
|
connect( this, TQT_SIGNAL( activated( int ) ),
|
|
|
|
this, TQT_SIGNAL( modified() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
PhoneTypeCombo::~PhoneTypeCombo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneTypeCombo::setType( int type )
|
|
|
|
{
|
|
|
|
if ( !mTypeList.contains( type ) )
|
|
|
|
mTypeList.insert( mTypeList.at( mTypeList.count() - 1 ), type );
|
|
|
|
|
|
|
|
mType = type;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
int PhoneTypeCombo::type() const
|
|
|
|
{
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneTypeCombo::update()
|
|
|
|
{
|
|
|
|
bool blocked = signalsBlocked();
|
|
|
|
blockSignals( true );
|
|
|
|
|
|
|
|
clear();
|
|
|
|
TQValueList<int>::ConstIterator it;
|
|
|
|
for ( it = mTypeList.begin(); it != mTypeList.end(); ++it ) {
|
|
|
|
if ( *it == -1 ) { // "Other..." entry
|
|
|
|
insertItem( i18n( "Other..." ) );
|
|
|
|
} else {
|
|
|
|
TDEABC::PhoneNumber number;
|
|
|
|
number.setType( *it );
|
|
|
|
insertItem( number.typeLabel() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setCurrentItem( mLastSelected = mTypeList.findIndex( mType ) );
|
|
|
|
|
|
|
|
blockSignals( blocked );
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneTypeCombo::selected( int pos )
|
|
|
|
{
|
|
|
|
if ( mTypeList[ pos ] == -1 )
|
|
|
|
otherSelected();
|
|
|
|
else {
|
|
|
|
mType = mTypeList[ pos ];
|
|
|
|
mLastSelected = pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneTypeCombo::otherSelected()
|
|
|
|
{
|
|
|
|
PhoneTypeDialog dlg( mType, this );
|
|
|
|
if ( dlg.exec() ) {
|
|
|
|
mType = dlg.type();
|
|
|
|
if ( !mTypeList.contains( mType ) )
|
|
|
|
mTypeList.insert( mTypeList.at( mTypeList.count() - 1 ), mType );
|
|
|
|
} else {
|
|
|
|
setType( mTypeList[ mLastSelected ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
PhoneNumberWidget::PhoneNumberWidget( TQWidget *parent )
|
|
|
|
: TQWidget( parent )
|
|
|
|
{
|
|
|
|
TQHBoxLayout *layout = new TQHBoxLayout( this, 6, 11 );
|
|
|
|
|
|
|
|
mTypeCombo = new PhoneTypeCombo( this );
|
|
|
|
mNumberEdit = new KLineEdit( this );
|
|
|
|
|
|
|
|
layout->addWidget( mTypeCombo );
|
|
|
|
layout->addWidget( mNumberEdit );
|
|
|
|
|
|
|
|
connect( mTypeCombo, TQT_SIGNAL( modified() ), TQT_SIGNAL( modified() ) );
|
|
|
|
connect( mNumberEdit, TQT_SIGNAL( textChanged( const TQString& ) ), TQT_SIGNAL( modified() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneNumberWidget::setNumber( const TDEABC::PhoneNumber &number )
|
|
|
|
{
|
|
|
|
mNumber = number;
|
|
|
|
|
|
|
|
mTypeCombo->setType( number.type() );
|
|
|
|
mNumberEdit->setText( number.number() );
|
|
|
|
}
|
|
|
|
|
|
|
|
TDEABC::PhoneNumber PhoneNumberWidget::number() const
|
|
|
|
{
|
|
|
|
TDEABC::PhoneNumber number( mNumber );
|
|
|
|
|
|
|
|
number.setType( mTypeCombo->type() );
|
|
|
|
number.setNumber( mNumberEdit->text() );
|
|
|
|
|
|
|
|
return number;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneNumberWidget::setReadOnly( bool readOnly )
|
|
|
|
{
|
|
|
|
mTypeCombo->setEnabled( !readOnly );
|
|
|
|
mNumberEdit->setReadOnly( readOnly );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PhoneEditWidget::PhoneEditWidget( TQWidget *parent, const char *name )
|
|
|
|
: TQWidget( parent, name ), mReadOnly( false )
|
|
|
|
{
|
|
|
|
TQGridLayout *layout = new TQGridLayout( this, 2, 2 );
|
|
|
|
layout->setSpacing( KDialog::spacingHint() );
|
|
|
|
|
|
|
|
mWidgetLayout = new TQVBoxLayout( layout );
|
|
|
|
layout->addMultiCellLayout( mWidgetLayout, 0, 0, 0, 1 );
|
|
|
|
|
|
|
|
mAddButton = new TQPushButton( i18n( "Add" ), this );
|
|
|
|
mAddButton->setMaximumSize( mAddButton->sizeHint() );
|
|
|
|
layout->addWidget( mAddButton, 1, 0, TQt::AlignRight );
|
|
|
|
|
|
|
|
mRemoveButton = new TQPushButton( i18n( "Remove" ), this );
|
|
|
|
mRemoveButton->setMaximumSize( mRemoveButton->sizeHint() );
|
|
|
|
layout->addWidget( mRemoveButton, 1, 1 );
|
|
|
|
|
|
|
|
mMapper = new TQSignalMapper( TQT_TQOBJECT(this) );
|
|
|
|
connect( mMapper, TQT_SIGNAL( mapped( int ) ), TQT_SLOT( changed( int ) ) );
|
|
|
|
|
|
|
|
connect( mAddButton, TQT_SIGNAL( clicked() ), TQT_SLOT( add() ) );
|
|
|
|
connect( mRemoveButton, TQT_SIGNAL( clicked() ), TQT_SLOT( remove() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
PhoneEditWidget::~PhoneEditWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::setReadOnly( bool readOnly )
|
|
|
|
{
|
|
|
|
mReadOnly = readOnly;
|
|
|
|
mAddButton->setEnabled( !readOnly );
|
|
|
|
mRemoveButton->setEnabled( !readOnly && mPhoneNumberList.count() > 3 );
|
|
|
|
|
|
|
|
TQPtrListIterator<PhoneNumberWidget> it( mWidgets );
|
|
|
|
while ( it.current() ) {
|
|
|
|
it.current()->setReadOnly( readOnly );
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::setPhoneNumbers( const TDEABC::PhoneNumber::List &list )
|
|
|
|
{
|
|
|
|
mPhoneNumberList = list;
|
|
|
|
|
|
|
|
TDEABC::PhoneNumber::TypeList types;
|
|
|
|
types << TDEABC::PhoneNumber::Home;
|
|
|
|
types << TDEABC::PhoneNumber::Work;
|
|
|
|
types << TDEABC::PhoneNumber::Cell;
|
|
|
|
|
|
|
|
// add an empty entry per default
|
|
|
|
if ( mPhoneNumberList.count() < 3 )
|
|
|
|
for ( int i = mPhoneNumberList.count(); i < 3; ++i )
|
|
|
|
mPhoneNumberList.append( TDEABC::PhoneNumber( "", types[ i ] ) );
|
|
|
|
|
|
|
|
recreateNumberWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
TDEABC::PhoneNumber::List PhoneEditWidget::phoneNumbers() const
|
|
|
|
{
|
|
|
|
TDEABC::PhoneNumber::List list;
|
|
|
|
|
|
|
|
TDEABC::PhoneNumber::List::ConstIterator it;
|
|
|
|
for ( it = mPhoneNumberList.begin(); it != mPhoneNumberList.end(); ++it )
|
|
|
|
if ( !(*it).number().isEmpty() )
|
|
|
|
list.append( *it );
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::changed()
|
|
|
|
{
|
|
|
|
if ( !mReadOnly )
|
|
|
|
emit modified();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::add()
|
|
|
|
{
|
|
|
|
mPhoneNumberList.append( TDEABC::PhoneNumber() );
|
|
|
|
|
|
|
|
recreateNumberWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::remove()
|
|
|
|
{
|
|
|
|
mPhoneNumberList.remove( mPhoneNumberList.last() );
|
|
|
|
changed();
|
|
|
|
|
|
|
|
recreateNumberWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::recreateNumberWidgets()
|
|
|
|
{
|
|
|
|
for ( TQWidget *w = mWidgets.first(); w; w = mWidgets.next() ) {
|
|
|
|
mWidgetLayout->remove( w );
|
|
|
|
w->deleteLater();
|
|
|
|
}
|
|
|
|
mWidgets.clear();
|
|
|
|
|
|
|
|
TDEABC::PhoneNumber::List::ConstIterator it;
|
|
|
|
int counter = 0;
|
|
|
|
for ( it = mPhoneNumberList.begin(); it != mPhoneNumberList.end(); ++it ) {
|
|
|
|
PhoneNumberWidget *wdg = new PhoneNumberWidget( this );
|
|
|
|
wdg->setNumber( *it );
|
|
|
|
|
|
|
|
mMapper->setMapping( TQT_TQOBJECT(wdg), counter );
|
|
|
|
connect( wdg, TQT_SIGNAL( modified() ), mMapper, TQT_SLOT( map() ) );
|
|
|
|
|
|
|
|
mWidgetLayout->addWidget( wdg );
|
|
|
|
mWidgets.append( wdg );
|
|
|
|
wdg->show();
|
|
|
|
|
|
|
|
++counter;
|
|
|
|
}
|
|
|
|
setReadOnly(mReadOnly);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhoneEditWidget::changed( int pos )
|
|
|
|
{
|
|
|
|
mPhoneNumberList[ pos ] = mWidgets.at( pos )->number();
|
|
|
|
changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////
|
|
|
|
// PhoneTypeDialog
|
|
|
|
PhoneTypeDialog::PhoneTypeDialog( int type, TQWidget *parent )
|
|
|
|
: KDialogBase( Plain, i18n( "Edit Phone Number" ), Ok | Cancel, Ok,
|
|
|
|
parent, "PhoneTypeDialog", true ),
|
|
|
|
mType( type )
|
|
|
|
{
|
|
|
|
TQWidget *page = plainPage();
|
|
|
|
|
|
|
|
TQVBoxLayout *layout = new TQVBoxLayout( page, spacingHint() );
|
|
|
|
|
|
|
|
mPreferredBox = new TQCheckBox( i18n( "This is the preferred phone number" ), page );
|
|
|
|
layout->addWidget( mPreferredBox );
|
|
|
|
|
|
|
|
mGroup = new TQButtonGroup( 2, Qt::Horizontal, i18n( "Types" ), page );
|
|
|
|
layout->addWidget( mGroup );
|
|
|
|
|
|
|
|
// fill widgets
|
|
|
|
mTypeList = TDEABC::PhoneNumber::typeList();
|
|
|
|
mTypeList.remove( TDEABC::PhoneNumber::Pref );
|
|
|
|
|
|
|
|
TDEABC::PhoneNumber::TypeList::ConstIterator it;
|
|
|
|
for ( it = mTypeList.begin(); it != mTypeList.end(); ++it )
|
|
|
|
new TQCheckBox( TDEABC::PhoneNumber::typeLabel( *it ), mGroup );
|
|
|
|
|
|
|
|
for ( int i = 0; i < mGroup->count(); ++i ) {
|
|
|
|
TQCheckBox *box = (TQCheckBox*)mGroup->find( i );
|
|
|
|
box->setChecked( mType & mTypeList[ i ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
mPreferredBox->setChecked( mType & TDEABC::PhoneNumber::Pref );
|
|
|
|
}
|
|
|
|
|
|
|
|
int PhoneTypeDialog::type() const
|
|
|
|
{
|
|
|
|
int type = 0;
|
|
|
|
|
|
|
|
for ( int i = 0; i < mGroup->count(); ++i ) {
|
|
|
|
TQCheckBox *box = (TQCheckBox*)mGroup->find( i );
|
|
|
|
if ( box->isChecked() )
|
|
|
|
type += mTypeList[ i ];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( mPreferredBox->isChecked() )
|
|
|
|
type = type | TDEABC::PhoneNumber::Pref;
|
|
|
|
else
|
|
|
|
type = type & ~TDEABC::PhoneNumber::Pref;
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#include "phoneeditwidget.moc"
|