-rw-r--r-- | libkdepim/addresseeview.cpp | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/libkdepim/addresseeview.cpp b/libkdepim/addresseeview.cpp index deafd34..70fc57c 100644 --- a/libkdepim/addresseeview.cpp +++ b/libkdepim/addresseeview.cpp | |||
@@ -26,43 +26,58 @@ | |||
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 | |||
39 | #ifndef DESKTOP_VERSION | ||
40 | #include <qtopia/qcopenvelope_qws.h> | ||
41 | #endif | ||
42 | |||
43 | |||
44 | |||
38 | using namespace KPIM; | 45 | using namespace KPIM; |
39 | 46 | ||
40 | AddresseeView::AddresseeView( QWidget *parent, const char *name ) | 47 | AddresseeView::AddresseeView( QWidget *parent, const char *name ) |
41 | //US : KTextBrowser( parent, name ) | 48 | //US : KTextBrowser( parent, name ) |
42 | : QTextBrowser( parent, name ) | 49 | : QTextBrowser( parent, name ) |
43 | 50 | ||
44 | 51 | ||
45 | { | 52 | { |
46 | //US setWrapPolicy( QTextEdit::AtWordBoundary ); | 53 | //US setWrapPolicy( QTextEdit::AtWordBoundary ); |
47 | setLinkUnderline( false ); | 54 | setLinkUnderline( false ); |
48 | // setVScrollBarMode( QScrollView::AlwaysOff ); | 55 | // setVScrollBarMode( QScrollView::AlwaysOff ); |
49 | //setHScrollBarMode( QScrollView::AlwaysOff ); | 56 | //setHScrollBarMode( QScrollView::AlwaysOff ); |
50 | 57 | ||
51 | //US QStyleSheet *sheet = styleSheet(); | 58 | //US QStyleSheet *sheet = styleSheet(); |
52 | //US QStyleSheetItem *link = sheet->item( "a" ); | 59 | //US QStyleSheetItem *link = sheet->item( "a" ); |
53 | //US link->setColor( KGlobalSettings::linkColor() ); | 60 | //US link->setColor( KGlobalSettings::linkColor() ); |
54 | 61 | ||
55 | } | 62 | } |
63 | void AddresseeView::setSource(const QString& n) | ||
64 | { | ||
65 | //qDebug("********AddresseeView::setSource %s", n.mid(7).latin1()); | ||
66 | #ifndef DESKTOP_VERSION | ||
67 | QCopEnvelope e("QPE/Application/kmpi", "newMail(QString)"); | ||
68 | e << n.mid(7); | ||
69 | #endif | ||
56 | 70 | ||
71 | } | ||
57 | void AddresseeView::setAddressee( const KABC::Addressee& addr ) | 72 | void AddresseeView::setAddressee( const KABC::Addressee& addr ) |
58 | { | 73 | { |
59 | mAddressee = addr; | 74 | mAddressee = addr; |
60 | 75 | ||
61 | // clear view | 76 | // clear view |
62 | setText( QString::null ); | 77 | setText( QString::null ); |
63 | 78 | ||
64 | if ( mAddressee.isEmpty() ) | 79 | if ( mAddressee.isEmpty() ) |
65 | return; | 80 | return; |
66 | 81 | ||
67 | QString name = ( mAddressee.formattedName().isEmpty() ? | 82 | QString name = ( mAddressee.formattedName().isEmpty() ? |
68 | mAddressee.assembledName() : mAddressee.formattedName() ); | 83 | mAddressee.assembledName() : mAddressee.formattedName() ); |
@@ -76,26 +91,27 @@ void AddresseeView::setAddressee( const KABC::Addressee& addr ) | |||
76 | "<tr><td align=\"right\"><b>%1</b></td>" | 91 | "<tr><td align=\"right\"><b>%1</b></td>" |
77 | "<td align=\"left\">%2</td></tr>" ) | 92 | "<td align=\"left\">%2</td></tr>" ) |
78 | .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) | 93 | .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) |
79 | .arg( (*phoneIt).number() ); | 94 | .arg( (*phoneIt).number() ); |
80 | } | 95 | } |
81 | 96 | ||
82 | QStringList emails = mAddressee.emails(); | 97 | QStringList emails = mAddressee.emails(); |
83 | QStringList::ConstIterator emailIt; | 98 | QStringList::ConstIterator emailIt; |
84 | QString type = i18n( "Email" ); | 99 | QString type = i18n( "Email" ); |
85 | for ( emailIt = emails.begin(); emailIt != emails.end(); ++emailIt ) { | 100 | for ( emailIt = emails.begin(); emailIt != emails.end(); ++emailIt ) { |
86 | dynamicPart += QString( | 101 | dynamicPart += QString( |
87 | "<tr><td align=\"right\"><b>%1</b></td>" | 102 | "<tr><td align=\"right\"><b>%1</b></td>" |
88 | "<td align=\"left\"><a href=\"mailto:%2\">%3</a></td></tr>" ) | 103 | "<td align=\"left\"><a href=\"mailto:%2 <%3> \">%4</a></td></tr>" ) |
89 | .arg( type ) | 104 | .arg( type ) |
105 | .arg( name ) | ||
90 | .arg( *emailIt ) | 106 | .arg( *emailIt ) |
91 | .arg( *emailIt ); | 107 | .arg( *emailIt ); |
92 | type = i18n( "Other" ); | 108 | type = i18n( "Other" ); |
93 | } | 109 | } |
94 | 110 | ||
95 | if ( !mAddressee.url().url().isEmpty() ) { | 111 | if ( !mAddressee.url().url().isEmpty() ) { |
96 | dynamicPart += QString( | 112 | dynamicPart += QString( |
97 | "<tr><td align=\"right\"><b>%1</b></td>" | 113 | "<tr><td align=\"right\"><b>%1</b></td>" |
98 | "<td align=\"left\">%2</td></tr>" ) | 114 | "<td align=\"left\">%2</td></tr>" ) |
99 | .arg( i18n( "Homepage" ) ) | 115 | .arg( i18n( "Homepage" ) ) |
100 | //US .arg( KStringHandler::tagURLs( mAddressee.url().url() ) ); | 116 | //US .arg( KStringHandler::tagURLs( mAddressee.url().url() ) ); |
101 | .arg( mAddressee.url().url() ); | 117 | .arg( mAddressee.url().url() ); |