-rw-r--r-- | libkdepim/addresseeview.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/libkdepim/addresseeview.cpp b/libkdepim/addresseeview.cpp index e9dc1e9..aa9b7f3 100644 --- a/libkdepim/addresseeview.cpp +++ b/libkdepim/addresseeview.cpp | |||
@@ -1,341 +1,345 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkdepim. | 2 | This file is part of libkdepim. |
3 | 3 | ||
4 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> | 4 | Copyright (c) 2003 Tobias Koenig <tokoe@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <kabc/address.h> | 22 | #include <kabc/address.h> |
23 | #include <kabc/addressee.h> | 23 | #include <kabc/addressee.h> |
24 | #include <kabc/phonenumber.h> | 24 | #include <kabc/phonenumber.h> |
25 | #include <kglobal.h> | 25 | #include <kglobal.h> |
26 | //US#include <kglobalsettings.h> | 26 | //US#include <kglobalsettings.h> |
27 | #include <kiconloader.h> | 27 | #include <kiconloader.h> |
28 | #include <klocale.h> | 28 | #include <klocale.h> |
29 | //US #include <kstringhandler.h> | 29 | //US #include <kstringhandler.h> |
30 | #include <qscrollview.h> | 30 | #include <qscrollview.h> |
31 | #include <qregexp.h> | 31 | #include <qregexp.h> |
32 | #include <qfile.h> | 32 | #include <qfile.h> |
33 | #include <qapplication.h> | 33 | #include <qapplication.h> |
34 | 34 | ||
35 | 35 | ||
36 | #include "addresseeview.h" | 36 | #include "addresseeview.h" |
37 | 37 | ||
38 | 38 | ||
39 | #ifndef DESKTOP_VERSION | 39 | #ifndef DESKTOP_VERSION |
40 | #include <qtopia/qcopenvelope_qws.h> | 40 | #include <qtopia/qcopenvelope_qws.h> |
41 | #include <qpe/qpeapplication.h> | 41 | #include <qpe/qpeapplication.h> |
42 | #endif | 42 | #endif |
43 | 43 | ||
44 | int kphoneInstalled = 0; | 44 | static int kphoneInstalled = 0; |
45 | 45 | ||
46 | using namespace KPIM; | 46 | using namespace KPIM; |
47 | 47 | ||
48 | AddresseeView::AddresseeView( QWidget *parent, const char *name ) | 48 | AddresseeView::AddresseeView( QWidget *parent, const char *name ) |
49 | //US : KTextBrowser( parent, name ) | 49 | //US : KTextBrowser( parent, name ) |
50 | : QTextBrowser( parent, name ) | 50 | : QTextBrowser( parent, name ) |
51 | 51 | ||
52 | 52 | ||
53 | { | 53 | { |
54 | //US setWrapPolicy( QTextEdit::AtWordBoundary ); | 54 | //US setWrapPolicy( QTextEdit::AtWordBoundary ); |
55 | setLinkUnderline( false ); | 55 | setLinkUnderline( false ); |
56 | // setVScrollBarMode( QScrollView::AlwaysOff ); | 56 | // setVScrollBarMode( QScrollView::AlwaysOff ); |
57 | //setHScrollBarMode( QScrollView::AlwaysOff ); | 57 | //setHScrollBarMode( QScrollView::AlwaysOff ); |
58 | 58 | ||
59 | //US QStyleSheet *sheet = styleSheet(); | 59 | //US QStyleSheet *sheet = styleSheet(); |
60 | //US QStyleSheetItem *link = sheet->item( "a" ); | 60 | //US QStyleSheetItem *link = sheet->item( "a" ); |
61 | //US link->setColor( KGlobalSettings::linkColor() ); | 61 | //US link->setColor( KGlobalSettings::linkColor() ); |
62 | 62 | ||
63 | } | 63 | } |
64 | void AddresseeView::setSource(const QString& n) | 64 | void AddresseeView::setSource(const QString& n) |
65 | { | 65 | { |
66 | qDebug("********AddresseeView::setSource %s", n.latin1()); | 66 | qDebug("********AddresseeView::setSource %s", n.latin1()); |
67 | #ifndef DESKTOP_VERSION | 67 | #ifndef DESKTOP_VERSION |
68 | if ( n.left( 6 ) == "mailto" ) { | 68 | if ( n.left( 6 ) == "mailto" ) { |
69 | QCopEnvelope e("QPE/Application/kmpi", "newMail(QString)"); | 69 | QCopEnvelope e("QPE/Application/kmpi", "newMail(QString)"); |
70 | e << n.mid(7); | 70 | e << n.mid(7); |
71 | } | 71 | } |
72 | if ( n.left( 7 ) == "phoneto" ) { | 72 | if ( n.left( 7 ) == "phoneto" ) { |
73 | QString mess = "-ring:" + n.mid(8); | 73 | QString mess = "-ring:" + n.mid(8); |
74 | QCopEnvelope e("QPE/Application/kppi", mess.latin1()); | 74 | QCopEnvelope e("QPE/Application/kppi", mess.latin1()); |
75 | } | 75 | } |
76 | #endif | 76 | #endif |
77 | 77 | ||
78 | } | 78 | } |
79 | void AddresseeView::setAddressee( const KABC::Addressee& addr ) | 79 | void AddresseeView::setAddressee( const KABC::Addressee& addr ) |
80 | { | 80 | { |
81 | bool kphoneAvail = false; | 81 | bool kphoneAvail = false; |
82 | 82 | ||
83 | #ifndef DESKTOP_VERSION | 83 | #ifndef DESKTOP_VERSION |
84 | if ( ! kphoneInstalled ) { | 84 | if ( ! kphoneInstalled ) { |
85 | if ( QFile::exists( QPEApplication::qpeDir() + "/bin/kppi" ) ) | 85 | if ( QFile::exists( QPEApplication::qpeDir() + "/bin/kppi" ) ) |
86 | kphoneInstalled = 1; | 86 | kphoneInstalled = 1; |
87 | else | 87 | else |
88 | kphoneInstalled = -1; | 88 | kphoneInstalled = -1; |
89 | } else { | 89 | } |
90 | if ( kphoneInstalled > 0 ) | 90 | if ( kphoneInstalled > 0 ) |
91 | kphoneAvail = true; | 91 | kphoneAvail = true; |
92 | } | 92 | #if 0 |
93 | //if ( kphoneAvail ) | 93 | if ( kphoneAvail ) |
94 | // qDebug("KPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPone avail "); | 94 | qDebug("KPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPone avail "); |
95 | else | ||
96 | qDebug("NOOOOOOOOOOOo KPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPone avail "); | ||
97 | #endif | ||
98 | |||
95 | #endif | 99 | #endif |
96 | mAddressee = addr; | 100 | mAddressee = addr; |
97 | // clear view | 101 | // clear view |
98 | setText( QString::null ); | 102 | setText( QString::null ); |
99 | 103 | ||
100 | if ( mAddressee.isEmpty() ) | 104 | if ( mAddressee.isEmpty() ) |
101 | return; | 105 | return; |
102 | 106 | ||
103 | QString name = ( mAddressee.formattedName().isEmpty() ? | 107 | QString name = ( mAddressee.formattedName().isEmpty() ? |
104 | mAddressee.assembledName() : mAddressee.formattedName() ); | 108 | mAddressee.assembledName() : mAddressee.formattedName() ); |
105 | 109 | ||
106 | QString dynamicPart; | 110 | QString dynamicPart; |
107 | 111 | ||
108 | QStringList emails = mAddressee.emails(); | 112 | QStringList emails = mAddressee.emails(); |
109 | QStringList::ConstIterator emailIt; | 113 | QStringList::ConstIterator emailIt; |
110 | QString type = i18n( "Email" ); | 114 | QString type = i18n( "Email" ); |
111 | emailIt = emails.begin(); | 115 | emailIt = emails.begin(); |
112 | if ( emailIt != emails.end() ) { | 116 | if ( emailIt != emails.end() ) { |
113 | dynamicPart += QString( | 117 | dynamicPart += QString( |
114 | "<tr><td align=\"right\"><b>%1</b></td>" | 118 | "<tr><td align=\"right\"><b>%1</b></td>" |
115 | "<td align=\"left\"><a href=\"mailto:%2 <%3> \">%4</a></td></tr>" ) | 119 | "<td align=\"left\"><a href=\"mailto:%2 <%3> \">%4</a></td></tr>" ) |
116 | .arg( type ) | 120 | .arg( type ) |
117 | .arg( name ) | 121 | .arg( name ) |
118 | .arg( *emailIt ) | 122 | .arg( *emailIt ) |
119 | .arg( *emailIt ); | 123 | .arg( *emailIt ); |
120 | ++emailIt; | 124 | ++emailIt; |
121 | } | 125 | } |
122 | 126 | ||
123 | KABC::PhoneNumber::List phones = mAddressee.phoneNumbers(); | 127 | KABC::PhoneNumber::List phones = mAddressee.phoneNumbers(); |
124 | KABC::PhoneNumber::List::ConstIterator phoneIt; | 128 | KABC::PhoneNumber::List::ConstIterator phoneIt; |
125 | for ( phoneIt = phones.begin(); phoneIt != phones.end(); ++phoneIt ) { | 129 | for ( phoneIt = phones.begin(); phoneIt != phones.end(); ++phoneIt ) { |
126 | if ( kphoneAvail ) { | 130 | if ( kphoneAvail ) { |
127 | dynamicPart += QString( | 131 | dynamicPart += QString( |
128 | "<tr><td align=\"right\"><b>%1</b></td>" | 132 | "<tr><td align=\"right\"><b>%1</b></td>" |
129 | "<td align=\"left\"><a href=\"phoneto:%2 \">%3</a></td></tr>" ) | 133 | "<td align=\"left\"><a href=\"phoneto:%2 \">%3</a></td></tr>" ) |
130 | .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) | 134 | .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) |
131 | .arg( (*phoneIt).number() ) | 135 | .arg( (*phoneIt).number() ) |
132 | .arg( (*phoneIt).number() ); | 136 | .arg( (*phoneIt).number() ); |
133 | 137 | ||
134 | } else { | 138 | } else { |
135 | dynamicPart += QString( | 139 | dynamicPart += QString( |
136 | "<tr><td align=\"right\"><b>%1</b></td>" | 140 | "<tr><td align=\"right\"><b>%1</b></td>" |
137 | "<td align=\"left\">%2</td></tr>" ) | 141 | "<td align=\"left\">%2</td></tr>" ) |
138 | .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) | 142 | .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) |
139 | .arg( (*phoneIt).number() ); | 143 | .arg( (*phoneIt).number() ); |
140 | } | 144 | } |
141 | } | 145 | } |
142 | 146 | ||
143 | 147 | ||
144 | for ( ; emailIt != emails.end(); ++emailIt ) { | 148 | for ( ; emailIt != emails.end(); ++emailIt ) { |
145 | dynamicPart += QString( | 149 | dynamicPart += QString( |
146 | "<tr><td align=\"right\"><b>%1</b></td>" | 150 | "<tr><td align=\"right\"><b>%1</b></td>" |
147 | "<td align=\"left\"><a href=\"mailto:%2 <%3> \">%4</a></td></tr>" ) | 151 | "<td align=\"left\"><a href=\"mailto:%2 <%3> \">%4</a></td></tr>" ) |
148 | .arg( type ) | 152 | .arg( type ) |
149 | .arg( name ) | 153 | .arg( name ) |
150 | .arg( *emailIt ) | 154 | .arg( *emailIt ) |
151 | .arg( *emailIt ); | 155 | .arg( *emailIt ); |
152 | } | 156 | } |
153 | 157 | ||
154 | if ( !mAddressee.url().url().isEmpty() ) { | 158 | if ( !mAddressee.url().url().isEmpty() ) { |
155 | dynamicPart += QString( | 159 | dynamicPart += QString( |
156 | "<tr><td align=\"right\"><b>%1</b></td>" | 160 | "<tr><td align=\"right\"><b>%1</b></td>" |
157 | "<td align=\"left\">%2</td></tr>" ) | 161 | "<td align=\"left\">%2</td></tr>" ) |
158 | .arg( i18n( "Homepage" ) ) | 162 | .arg( i18n( "Homepage" ) ) |
159 | //US .arg( KStringHandler::tagURLs( mAddressee.url().url() ) ); | 163 | //US .arg( KStringHandler::tagURLs( mAddressee.url().url() ) ); |
160 | .arg( mAddressee.url().url() ); | 164 | .arg( mAddressee.url().url() ); |
161 | //qDebug("AddresseeView::setAddressee has to be verified."); | 165 | //qDebug("AddresseeView::setAddressee has to be verified."); |
162 | } | 166 | } |
163 | 167 | ||
164 | KABC::Address::List addresses = mAddressee.addresses(); | 168 | KABC::Address::List addresses = mAddressee.addresses(); |
165 | KABC::Address::List::ConstIterator addrIt; | 169 | KABC::Address::List::ConstIterator addrIt; |
166 | for ( addrIt = addresses.begin(); addrIt != addresses.end(); ++addrIt ) { | 170 | for ( addrIt = addresses.begin(); addrIt != addresses.end(); ++addrIt ) { |
167 | if ( true /*(*addrIt).label().isEmpty()*/ ) { | 171 | if ( true /*(*addrIt).label().isEmpty()*/ ) { |
168 | QString formattedAddress = (*addrIt).formattedAddress().stripWhiteSpace(); | 172 | QString formattedAddress = (*addrIt).formattedAddress().stripWhiteSpace(); |
169 | //US formattedAddress = formattedAddress.replace( '\n', "<br>" ); | 173 | //US formattedAddress = formattedAddress.replace( '\n', "<br>" ); |
170 | //qDebug("adresss %s ",formattedAddress.latin1() ); | 174 | //qDebug("adresss %s ",formattedAddress.latin1() ); |
171 | formattedAddress = formattedAddress.replace( QRegExp("\n"), "<br>" ); | 175 | formattedAddress = formattedAddress.replace( QRegExp("\n"), "<br>" ); |
172 | //qDebug("AddresseeView::setAddressee has to be verified."); | 176 | //qDebug("AddresseeView::setAddressee has to be verified."); |
173 | 177 | ||
174 | dynamicPart += QString( | 178 | dynamicPart += QString( |
175 | "<tr><td align=\"right\"><b>%1</b></td>" | 179 | "<tr><td align=\"right\"><b>%1</b></td>" |
176 | "<td align=\"left\">%2</td></tr>" ) | 180 | "<td align=\"left\">%2</td></tr>" ) |
177 | .arg( KABC::Address::typeLabel( (*addrIt).type() ) ) | 181 | .arg( KABC::Address::typeLabel( (*addrIt).type() ) ) |
178 | .arg( formattedAddress ); | 182 | .arg( formattedAddress ); |
179 | } else { | 183 | } else { |
180 | 184 | ||
181 | dynamicPart += QString( | 185 | dynamicPart += QString( |
182 | "<tr><td align=\"right\"><b>%1</b></td>" | 186 | "<tr><td align=\"right\"><b>%1</b></td>" |
183 | "<td align=\"left\">%2</td></tr>" ) | 187 | "<td align=\"left\">%2</td></tr>" ) |
184 | .arg( KABC::Address::typeLabel( (*addrIt).type() ) ) | 188 | .arg( KABC::Address::typeLabel( (*addrIt).type() ) ) |
185 | //US .arg( (*addrIt).label().replace( '\n', "<br>" ) ); | 189 | //US .arg( (*addrIt).label().replace( '\n', "<br>" ) ); |
186 | .arg( (*addrIt).label() /*replace( QRegExp("\n"), "<br>" )*/ ); | 190 | .arg( (*addrIt).label() /*replace( QRegExp("\n"), "<br>" )*/ ); |
187 | 191 | ||
188 | } | 192 | } |
189 | } | 193 | } |
190 | 194 | ||
191 | QString notes; | 195 | QString notes; |
192 | if ( !mAddressee.note().isEmpty() ) { | 196 | if ( !mAddressee.note().isEmpty() ) { |
193 | notes = QString( | 197 | notes = QString( |
194 | "<tr>" | 198 | "<tr>" |
195 | "<td align=\"right\" valign=\"top\"><b>%1</b></td>" // note label | 199 | "<td align=\"right\" valign=\"top\"><b>%1</b></td>" // note label |
196 | "<td align=\"left\">%2</td>" // note | 200 | "<td align=\"left\">%2</td>" // note |
197 | "</tr>" ).arg( i18n( "Notes" ) ) | 201 | "</tr>" ).arg( i18n( "Notes" ) ) |
198 | //US .arg( mAddressee.note().replace( '\n', "<br>" ) ); | 202 | //US .arg( mAddressee.note().replace( '\n', "<br>" ) ); |
199 | .arg( mAddressee.note().replace( QRegExp("\n"), "<br>" ) ); | 203 | .arg( mAddressee.note().replace( QRegExp("\n"), "<br>" ) ); |
200 | //qDebug("AddresseeView::setAddressee has to be verified."); | 204 | //qDebug("AddresseeView::setAddressee has to be verified."); |
201 | } | 205 | } |
202 | 206 | ||
203 | QString aRole = ""; | 207 | QString aRole = ""; |
204 | QString aOrga = ""; | 208 | QString aOrga = ""; |
205 | if ( true /*!mAddressee.role().isEmpty()*/ ) { | 209 | if ( true /*!mAddressee.role().isEmpty()*/ ) { |
206 | aRole = "<tr>" | 210 | aRole = "<tr>" |
207 | "<td align=\"left\">" + mAddressee.role() + "</td>" | 211 | "<td align=\"left\">" + mAddressee.role() + "</td>" |
208 | "</tr>"; | 212 | "</tr>"; |
209 | } | 213 | } |
210 | if ( true /*!mAddressee.organization().isEmpty()*/ ) { | 214 | if ( true /*!mAddressee.organization().isEmpty()*/ ) { |
211 | aOrga = "<tr>" | 215 | aOrga = "<tr>" |
212 | "<td align=\"left\">" + mAddressee.organization() + "</td>" ; | 216 | "<td align=\"left\">" + mAddressee.organization() + "</td>" ; |
213 | "</tr>"; | 217 | "</tr>"; |
214 | } | 218 | } |
215 | mText = ""; | 219 | mText = ""; |
216 | QString picString = ""; | 220 | QString picString = ""; |
217 | KABC::Picture picture = mAddressee.photo(); | 221 | KABC::Picture picture = mAddressee.photo(); |
218 | bool picAvailintern = false; | 222 | bool picAvailintern = false; |
219 | bool picAvailUrl = false; | 223 | bool picAvailUrl = false; |
220 | if (! picture.undefined() ) { | 224 | if (! picture.undefined() ) { |
221 | picAvailintern = (picture.isIntern() && !picture.data().isNull()); | 225 | picAvailintern = (picture.isIntern() && !picture.data().isNull()); |
222 | picAvailUrl = !picture.isIntern() && QFile::exists(picture.url() ); | 226 | picAvailUrl = !picture.isIntern() && QFile::exists(picture.url() ); |
223 | } | 227 | } |
224 | if ( picAvailUrl || picAvailintern || QApplication::desktop()->width() > 320 ) { | 228 | if ( picAvailUrl || picAvailintern || QApplication::desktop()->width() > 320 ) { |
225 | if ( picAvailintern ) { | 229 | if ( picAvailintern ) { |
226 | QMimeSourceFactory::defaultFactory()->setImage( "myimage", picture.data() ); | 230 | QMimeSourceFactory::defaultFactory()->setImage( "myimage", picture.data() ); |
227 | } else { | 231 | } else { |
228 | if ( picAvailUrl ) { | 232 | if ( picAvailUrl ) { |
229 | QMimeSourceFactory::defaultFactory()->setPixmap( "myimage", QPixmap( picture.url() )); | 233 | QMimeSourceFactory::defaultFactory()->setPixmap( "myimage", QPixmap( picture.url() )); |
230 | } else { | 234 | } else { |
231 | QMimeSourceFactory::defaultFactory()->setPixmap( "myimage", KGlobal::iconLoader()->loadIcon( "package_toys", KIcon::Desktop, 128 ) ); | 235 | QMimeSourceFactory::defaultFactory()->setPixmap( "myimage", KGlobal::iconLoader()->loadIcon( "package_toys", KIcon::Desktop, 128 ) ); |
232 | } | 236 | } |
233 | } | 237 | } |
234 | picString = "<img src=\"myimage\" width=\"50\" height=\"70\">"; | 238 | picString = "<img src=\"myimage\" width=\"50\" height=\"70\">"; |
235 | mText = QString::fromLatin1( | 239 | mText = QString::fromLatin1( |
236 | "<html>" | 240 | "<html>" |
237 | "<body text=\"%1\" bgcolor=\"%2\">" // text and background color | 241 | "<body text=\"%1\" bgcolor=\"%2\">" // text and background color |
238 | "<table>" | 242 | "<table>" |
239 | "<tr>" | 243 | "<tr>" |
240 | "<td rowspan=\"3\" align=\"right\" valign=\"top\">" | 244 | "<td rowspan=\"3\" align=\"right\" valign=\"top\">" |
241 | "%3" | 245 | "%3" |
242 | "</td>" | 246 | "</td>" |
243 | "<td align=\"left\"><font size=\"+2\"><b>%4</b></font></td>" // name | 247 | "<td align=\"left\"><font size=\"+2\"><b>%4</b></font></td>" // name |
244 | "</tr>" | 248 | "</tr>" |
245 | "%5" // role | 249 | "%5" // role |
246 | "%6" // organization | 250 | "%6" // organization |
247 | "<td colspan=\"2\"> </td>" | 251 | "<td colspan=\"2\"> </td>" |
248 | "%7" // dynamic part | 252 | "%7" // dynamic part |
249 | "%8" // notes | 253 | "%8" // notes |
250 | "</table>" | 254 | "</table>" |
251 | "</body>" | 255 | "</body>" |
252 | "</html>") | 256 | "</html>") |
253 | //US | 257 | //US |
254 | .arg( /*KGlobalSettings::textColor().name()*/ "black" ) | 258 | .arg( /*KGlobalSettings::textColor().name()*/ "black" ) |
255 | //US | 259 | //US |
256 | .arg( /*KGlobalSettings::baseColor().name()*/ "white" ) | 260 | .arg( /*KGlobalSettings::baseColor().name()*/ "white" ) |
257 | .arg( picString ) | 261 | .arg( picString ) |
258 | .arg( name ) | 262 | .arg( name ) |
259 | .arg( aRole ) | 263 | .arg( aRole ) |
260 | .arg( aOrga ) | 264 | .arg( aOrga ) |
261 | .arg( dynamicPart ) | 265 | .arg( dynamicPart ) |
262 | .arg( notes ); | 266 | .arg( notes ); |
263 | 267 | ||
264 | } else { // no picture! | 268 | } else { // no picture! |
265 | 269 | ||
266 | mText = "<table width=\"100%\">\n"; | 270 | mText = "<table width=\"100%\">\n"; |
267 | //mText += "<tr bgcolor=\"#3679AD\"><td><h2>"; | 271 | //mText += "<tr bgcolor=\"#3679AD\"><td><h2>"; |
268 | #ifdef DESKTOP_VERSION | 272 | #ifdef DESKTOP_VERSION |
269 | mText += "<tr bgcolor=\"#5699CD\"><td align=\"left\"><h1>"; | 273 | mText += "<tr bgcolor=\"#5699CD\"><td align=\"left\"><h1>"; |
270 | #else | 274 | #else |
271 | mText += "<tr bgcolor=\"#5699CD\"><td align=\"left\"><h2>"; | 275 | mText += "<tr bgcolor=\"#5699CD\"><td align=\"left\"><h2>"; |
272 | #endif | 276 | #endif |
273 | 277 | ||
274 | #ifdef DESKTOP_VERSION | 278 | #ifdef DESKTOP_VERSION |
275 | mText += "<font color=\"#FFFFFF\"> <em>" + name+"</em></font></h1>"; | 279 | mText += "<font color=\"#FFFFFF\"> <em>" + name+"</em></font></h1>"; |
276 | #else | 280 | #else |
277 | mText += "<font color=\"#FFFFFF\"> <em>" + name +"</em></font></h2>"; | 281 | mText += "<font color=\"#FFFFFF\"> <em>" + name +"</em></font></h2>"; |
278 | #endif | 282 | #endif |
279 | mText += "</td></tr>\n<tr bgcolor=\"#EAF8FA\"><td>"; | 283 | mText += "</td></tr>\n<tr bgcolor=\"#EAF8FA\"><td>"; |
280 | 284 | ||
281 | mText += "<table><td colspan=\"2\"> </td>"; | 285 | mText += "<table><td colspan=\"2\"> </td>"; |
282 | /* | 286 | /* |
283 | mText += QString("<tr><td align=\"right\"><b2>%1</b2></td>" | 287 | mText += QString("<tr><td align=\"right\"><b2>%1</b2></td>" |
284 | "<td align=\"left\"><b>%2</b></td></tr>" ) | 288 | "<td align=\"left\"><b>%2</b></td></tr>" ) |
285 | .arg( i18n(" ") ) | 289 | .arg( i18n(" ") ) |
286 | .arg( name ); | 290 | .arg( name ); |
287 | */ | 291 | */ |
288 | if ( ! mAddressee.role().isEmpty() ) | 292 | if ( ! mAddressee.role().isEmpty() ) |
289 | mText += QString("<tr><td align=\"right\"><b>%1</b></td>" | 293 | mText += QString("<tr><td align=\"right\"><b>%1</b></td>" |
290 | "<td align=\"left\">%2</td></tr>" ) | 294 | "<td align=\"left\">%2</td></tr>" ) |
291 | .arg( i18n(" ") ) | 295 | .arg( i18n(" ") ) |
292 | .arg( mAddressee.role()); | 296 | .arg( mAddressee.role()); |
293 | if ( ! mAddressee.organization().isEmpty() ) | 297 | if ( ! mAddressee.organization().isEmpty() ) |
294 | mText += QString("<tr><td align=\"right\"><b>%1</b></td>" | 298 | mText += QString("<tr><td align=\"right\"><b>%1</b></td>" |
295 | "<td align=\"left\">%2</td></tr>" ) | 299 | "<td align=\"left\">%2</td></tr>" ) |
296 | .arg( i18n(" ") ) | 300 | .arg( i18n(" ") ) |
297 | .arg( mAddressee.organization()); | 301 | .arg( mAddressee.organization()); |
298 | mText += dynamicPart; | 302 | mText += dynamicPart; |
299 | mText += notes; | 303 | mText += notes; |
300 | mText += "</table>"; | 304 | mText += "</table>"; |
301 | 305 | ||
302 | } | 306 | } |
303 | 307 | ||
304 | // at last display it... | 308 | // at last display it... |
305 | setText( mText ); | 309 | setText( mText ); |
306 | } | 310 | } |
307 | 311 | ||
308 | KABC::Addressee AddresseeView::addressee() const | 312 | KABC::Addressee AddresseeView::addressee() const |
309 | { | 313 | { |
310 | return mAddressee; | 314 | return mAddressee; |
311 | } | 315 | } |
312 | void AddresseeView::addTag(const QString & tag,const QString & text) | 316 | void AddresseeView::addTag(const QString & tag,const QString & text) |
313 | { | 317 | { |
314 | if ( text.isEmpty() ) | 318 | if ( text.isEmpty() ) |
315 | return; | 319 | return; |
316 | int number=text.contains("\n"); | 320 | int number=text.contains("\n"); |
317 | QString str = "<" + tag + ">"; | 321 | QString str = "<" + tag + ">"; |
318 | QString tmpText=text; | 322 | QString tmpText=text; |
319 | QString tmpStr=str; | 323 | QString tmpStr=str; |
320 | if(number !=-1) | 324 | if(number !=-1) |
321 | { | 325 | { |
322 | if (number > 0) { | 326 | if (number > 0) { |
323 | int pos=0; | 327 | int pos=0; |
324 | QString tmp; | 328 | QString tmp; |
325 | for(int i=0;i<=number;i++) { | 329 | for(int i=0;i<=number;i++) { |
326 | pos=tmpText.find("\n"); | 330 | pos=tmpText.find("\n"); |
327 | tmp=tmpText.left(pos); | 331 | tmp=tmpText.left(pos); |
328 | tmpText=tmpText.right(tmpText.length()-pos-1); | 332 | tmpText=tmpText.right(tmpText.length()-pos-1); |
329 | tmpStr+=tmp+"<br>"; | 333 | tmpStr+=tmp+"<br>"; |
330 | } | 334 | } |
331 | } | 335 | } |
332 | else tmpStr += tmpText; | 336 | else tmpStr += tmpText; |
333 | tmpStr+="</" + tag + ">"; | 337 | tmpStr+="</" + tag + ">"; |
334 | mText.append(tmpStr); | 338 | mText.append(tmpStr); |
335 | } | 339 | } |
336 | else | 340 | else |
337 | { | 341 | { |
338 | str += text + "</" + tag + ">"; | 342 | str += text + "</" + tag + ">"; |
339 | mText.append(str); | 343 | mText.append(str); |
340 | } | 344 | } |
341 | } | 345 | } |