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.
162 lines
4.1 KiB
162 lines
4.1 KiB
15 years ago
|
/*
|
||
|
This file is part of libkabc.
|
||
|
Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library 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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef KABC_PHONENUMBER_H
|
||
|
#define KABC_PHONENUMBER_H
|
||
|
|
||
14 years ago
|
#include <tqvaluelist.h>
|
||
|
#include <tqstring.h>
|
||
15 years ago
|
|
||
13 years ago
|
#include <tdelibs_export.h>
|
||
15 years ago
|
|
||
|
namespace KABC {
|
||
|
|
||
|
/**
|
||
|
@short Phonenumber information.
|
||
|
|
||
|
This class provides phone number information. A phone number is classified by
|
||
|
a type. The following types are available, it's possible to use multiple types
|
||
|
Types for a number by combining them through a logical or.
|
||
|
*/
|
||
|
class KABC_EXPORT PhoneNumber
|
||
|
{
|
||
14 years ago
|
friend KABC_EXPORT TQDataStream &operator<<( TQDataStream &, const PhoneNumber & );
|
||
|
friend KABC_EXPORT TQDataStream &operator>>( TQDataStream &, PhoneNumber & );
|
||
15 years ago
|
|
||
|
public:
|
||
14 years ago
|
typedef TQValueList<PhoneNumber> List;
|
||
|
typedef TQValueList<int> TypeList;
|
||
15 years ago
|
|
||
|
/**
|
||
|
@li @p Home - Home number
|
||
|
@li @p Work - Office number
|
||
|
@li @p Msg - Messaging
|
||
|
@li @p Pref - Preferred number
|
||
|
@li @p Voice - Voice
|
||
|
@li @p Fax - Fax machine
|
||
|
@li @p Cell - Cell phone
|
||
|
@li @p Video - Video phone
|
||
|
@li @p Bbs - Mailbox
|
||
|
@li @p Modem - Modem
|
||
|
@li @p Car - Car phone
|
||
|
@li @p Isdn - ISDN connection
|
||
|
@li @p Pcs - Personal Communication Service
|
||
|
@li @p Pager - Pager
|
||
|
*/
|
||
|
enum Types { Home = 1, Work = 2, Msg = 4, Pref = 8, Voice = 16, Fax = 32,
|
||
|
Cell = 64, Video = 128, Bbs = 256, Modem = 512, Car = 1024,
|
||
|
Isdn = 2048, Pcs = 4096, Pager = 8192 };
|
||
|
|
||
|
/**
|
||
|
Create an empty phone number object.
|
||
|
*/
|
||
|
PhoneNumber();
|
||
|
|
||
|
/**
|
||
|
Create a phonenumber object.
|
||
|
|
||
|
@param number Number
|
||
|
@param type Type as defined in enum. Multiple types can be
|
||
|
specified by combining them by a logical or.
|
||
|
*/
|
||
14 years ago
|
PhoneNumber( const TQString &number, int type = Home );
|
||
15 years ago
|
|
||
|
/**
|
||
|
Destructor.
|
||
|
*/
|
||
|
~PhoneNumber();
|
||
|
|
||
|
bool operator==( const PhoneNumber & ) const;
|
||
|
bool operator!=( const PhoneNumber & ) const;
|
||
|
|
||
|
/**
|
||
|
Sets the unique identifier.
|
||
|
*/
|
||
14 years ago
|
void setId( const TQString &id );
|
||
15 years ago
|
|
||
|
/**
|
||
|
Returns the unique identifier.
|
||
|
*/
|
||
14 years ago
|
TQString id() const;
|
||
15 years ago
|
|
||
|
/**
|
||
|
Sets the number.
|
||
|
*/
|
||
14 years ago
|
void setNumber( const TQString & );
|
||
15 years ago
|
|
||
|
/**
|
||
|
Returns the number.
|
||
|
*/
|
||
14 years ago
|
TQString number() const;
|
||
15 years ago
|
|
||
|
/**
|
||
|
Sets the type. Multiple types can be specified by combining them by
|
||
|
a logical or.
|
||
|
*/
|
||
|
void setType( int );
|
||
|
|
||
|
/**
|
||
|
Returns the type. Can be a multiple types combined by a logical or.
|
||
|
*/
|
||
|
int type() const;
|
||
|
|
||
|
/**
|
||
|
Returns a translated string of all types the address has.
|
||
|
*/
|
||
14 years ago
|
TQString typeLabel() const;
|
||
15 years ago
|
|
||
|
/**
|
||
|
Returns the translated label for phone number depending on its type.
|
||
|
*/
|
||
14 years ago
|
TQString label() const;
|
||
15 years ago
|
|
||
|
/**
|
||
|
Returns a list of all available types
|
||
|
*/
|
||
|
static TypeList typeList();
|
||
|
|
||
|
/**
|
||
|
Returns the translated label for phone number type.
|
||
|
*/
|
||
14 years ago
|
static TQString typeLabel( int type );
|
||
15 years ago
|
|
||
|
/**
|
||
|
Returns the translated label for phone number type.
|
||
|
@obsolete
|
||
|
*/
|
||
14 years ago
|
static TQString label( int type );
|
||
15 years ago
|
|
||
|
private:
|
||
|
void init();
|
||
14 years ago
|
void validateNumber( const TQString& );
|
||
15 years ago
|
|
||
14 years ago
|
TQString mId;
|
||
15 years ago
|
|
||
|
int mType;
|
||
14 years ago
|
TQString mNumber;
|
||
15 years ago
|
};
|
||
|
|
||
14 years ago
|
KABC_EXPORT TQDataStream &operator<<( TQDataStream &, const PhoneNumber & );
|
||
|
KABC_EXPORT TQDataStream &operator>>( TQDataStream &, PhoneNumber & );
|
||
15 years ago
|
|
||
|
}
|
||
|
|
||
|
#endif
|