author | zautrix <zautrix> | 2004-10-10 16:00:04 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-10 16:00:04 (UTC) |
commit | ee6e29a5092d32165b7bf6b39069bd8a1dcd5b0a (patch) (unidiff) | |
tree | 1d908bfc23b8a49d43a58bbeadd82c4e08faeff6 /kabc/phonenumber.cpp | |
parent | 213a9d993e5a4751b64e18320cfbebb000681d13 (diff) | |
download | kdepimpi-ee6e29a5092d32165b7bf6b39069bd8a1dcd5b0a.zip kdepimpi-ee6e29a5092d32165b7bf6b39069bd8a1dcd5b0a.tar.gz kdepimpi-ee6e29a5092d32165b7bf6b39069bd8a1dcd5b0a.tar.bz2 |
many phone AB sync fixes
-rw-r--r-- | kabc/phonenumber.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kabc/phonenumber.cpp b/kabc/phonenumber.cpp index e5abc0e..6e94c7e 100644 --- a/kabc/phonenumber.cpp +++ b/kabc/phonenumber.cpp | |||
@@ -11,132 +11,130 @@ | |||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | /* | 21 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (c) 2004 Ulf Schenk |
24 | 24 | ||
25 | $Id$ | 25 | $Id$ |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include <kapplication.h> | 28 | #include <kapplication.h> |
29 | #include <klocale.h> | 29 | #include <klocale.h> |
30 | 30 | ||
31 | #include "phonenumber.h" | 31 | #include "phonenumber.h" |
32 | 32 | ||
33 | using namespace KABC; | 33 | using namespace KABC; |
34 | 34 | ||
35 | PhoneNumber::PhoneNumber() : | 35 | PhoneNumber::PhoneNumber() : |
36 | mType( Home ) | 36 | mType( Home ) |
37 | { | 37 | { |
38 | init(); | 38 | init(); |
39 | } | 39 | } |
40 | 40 | ||
41 | PhoneNumber::PhoneNumber( const QString &number, int type ) : | 41 | PhoneNumber::PhoneNumber( const QString &number, int type ) : |
42 | mType( type ), mNumber( number ) | 42 | mType( type ), mNumber( number ) |
43 | { | 43 | { |
44 | init(); | 44 | init(); |
45 | } | 45 | } |
46 | 46 | ||
47 | PhoneNumber::~PhoneNumber() | 47 | PhoneNumber::~PhoneNumber() |
48 | { | 48 | { |
49 | } | 49 | } |
50 | 50 | ||
51 | void PhoneNumber::init() | 51 | void PhoneNumber::init() |
52 | { | 52 | { |
53 | mId = KApplication::randomString( 8 ); | 53 | mId = KApplication::randomString( 8 ); |
54 | } | 54 | } |
55 | 55 | ||
56 | bool PhoneNumber::operator==( const PhoneNumber &p ) const | 56 | bool PhoneNumber::operator==( const PhoneNumber &p ) const |
57 | { | 57 | { |
58 | if ( mNumber != p.mNumber ) return false; | 58 | if ( mNumber != p.mNumber ) return false; |
59 | if ( mType != p.mType ) return false; | 59 | if ( mType != p.mType ) return false; |
60 | 60 | ||
61 | return true; | 61 | return true; |
62 | } | 62 | } |
63 | 63 | ||
64 | bool PhoneNumber::operator!=( const PhoneNumber &p ) const | 64 | bool PhoneNumber::operator!=( const PhoneNumber &p ) const |
65 | { | 65 | { |
66 | return !( p == *this ); | 66 | return !( p == *this ); |
67 | } | 67 | } |
68 | 68 | ||
69 | bool PhoneNumber::simplifyNumber() | 69 | bool PhoneNumber::simplifyNumber() |
70 | { | 70 | { |
71 | QString Number; | 71 | QString Number; |
72 | int i; | 72 | int i; |
73 | Number = mNumber.stripWhiteSpace (); | 73 | Number = mNumber.stripWhiteSpace (); |
74 | mNumber = ""; | 74 | mNumber = ""; |
75 | if ( Number.at(0) == '+' ) | ||
76 | mNumber += "+"; | ||
77 | for ( i = 0; i < Number.length(); ++i) { | 75 | for ( i = 0; i < Number.length(); ++i) { |
78 | if ( Number.at(i).isDigit() ) | 76 | if ( Number.at(i).isDigit() || Number.at(i) == '+'|| Number.at(i) == '*'|| Number.at(i) == '#' ) |
79 | mNumber += Number.at(i); | 77 | mNumber += Number.at(i); |
80 | } | 78 | } |
81 | return ( mNumber.length() > 0 ); | 79 | return ( mNumber.length() > 0 ); |
82 | } | 80 | } |
83 | // make cellphone compatible | 81 | // make cellphone compatible |
84 | void PhoneNumber::simplifyType() | 82 | void PhoneNumber::simplifyType() |
85 | { | 83 | { |
86 | if ( mType & Fax ) mType = Fax; | 84 | if ( mType & Fax ) mType = Fax; |
87 | else if ( mType & Cell ) mType = Cell; | 85 | else if ( mType & Cell ) mType = Cell; |
88 | else if ( mType & Work ) mType = Work ; | 86 | else if ( mType & Work ) mType = Work ; |
89 | else if ( mType & Home ) mType = Home; | 87 | else if ( mType & Home ) mType = Home; |
90 | else mType = Pref; | 88 | else mType = Pref; |
91 | } | 89 | } |
92 | void PhoneNumber::setId( const QString &id ) | 90 | void PhoneNumber::setId( const QString &id ) |
93 | { | 91 | { |
94 | mId = id; | 92 | mId = id; |
95 | } | 93 | } |
96 | 94 | ||
97 | QString PhoneNumber::id() const | 95 | QString PhoneNumber::id() const |
98 | { | 96 | { |
99 | return mId; | 97 | return mId; |
100 | } | 98 | } |
101 | 99 | ||
102 | void PhoneNumber::setNumber( const QString &number ) | 100 | void PhoneNumber::setNumber( const QString &number ) |
103 | { | 101 | { |
104 | mNumber = number; | 102 | mNumber = number; |
105 | } | 103 | } |
106 | 104 | ||
107 | QString PhoneNumber::number() const | 105 | QString PhoneNumber::number() const |
108 | { | 106 | { |
109 | return mNumber; | 107 | return mNumber; |
110 | } | 108 | } |
111 | 109 | ||
112 | void PhoneNumber::setType( int type ) | 110 | void PhoneNumber::setType( int type ) |
113 | { | 111 | { |
114 | mType = type; | 112 | mType = type; |
115 | } | 113 | } |
116 | 114 | ||
117 | int PhoneNumber::type() const | 115 | int PhoneNumber::type() const |
118 | { | 116 | { |
119 | return mType; | 117 | return mType; |
120 | } | 118 | } |
121 | 119 | ||
122 | QString PhoneNumber::typeLabel() const | 120 | QString PhoneNumber::typeLabel() const |
123 | { | 121 | { |
124 | QString label; | 122 | QString label; |
125 | bool first = true; | 123 | bool first = true; |
126 | 124 | ||
127 | TypeList list = typeList(); | 125 | TypeList list = typeList(); |
128 | 126 | ||
129 | TypeList::Iterator it; | 127 | TypeList::Iterator it; |
130 | for ( it = list.begin(); it != list.end(); ++it ) { | 128 | for ( it = list.begin(); it != list.end(); ++it ) { |
131 | if ( ( type() & (*it) ) && ( (*it) != Pref ) ) { | 129 | if ( ( type() & (*it) ) && ( (*it) != Pref ) ) { |
132 | label.append( ( first ? "" : "/" ) + typeLabel( *it ) ); | 130 | label.append( ( first ? "" : "/" ) + typeLabel( *it ) ); |
133 | if ( first ) | 131 | if ( first ) |
134 | first = false; | 132 | first = false; |
135 | } | 133 | } |
136 | } | 134 | } |
137 | 135 | ||
138 | return label; | 136 | return label; |
139 | } | 137 | } |
140 | 138 | ||
141 | QString PhoneNumber::label() const | 139 | QString PhoneNumber::label() const |
142 | { | 140 | { |