From 467e50111dfd6d66aca205501b6bf369b7f0a166 Mon Sep 17 00:00:00 2001 From: ulf69 Date: Tue, 10 Aug 2004 19:41:25 +0000 Subject: added links for external applications --- diff --git a/libkdepim/addresseeview.cpp b/libkdepim/addresseeview.cpp index 83aba48..8fecaf8 100644 --- a/libkdepim/addresseeview.cpp +++ b/libkdepim/addresseeview.cpp @@ -33,15 +33,16 @@ #include +#include "externalapphandler.h" #include "addresseeview.h" -#ifndef DESKTOP_VERSION -#include -#include -#endif +//US #ifndef DESKTOP_VERSION +//US #include +//US #include +//US #endif -static int kphoneInstalled = 0; +//US static int kphoneInstalled = 0; using namespace KPIM; @@ -61,42 +62,33 @@ AddresseeView::AddresseeView( QWidget *parent, const char *name ) //US link->setColor( KGlobalSettings::linkColor() ); } + void AddresseeView::setSource(const QString& n) { - qDebug("********AddresseeView::setSource %s", n.latin1()); -#ifndef DESKTOP_VERSION - if ( n.left( 6 ) == "mailto" ) { - QCopEnvelope e("QPE/Application/ompi", "newMail(QString)"); - e << n.mid(7); - } - if ( n.left( 7 ) == "phoneto" ) { - QString mess = "-ring:" + n.mid(8); - QCopEnvelope e("QPE/Application/kppi", mess.latin1()); - } -#endif + qDebug("********AddresseeView::setSource %s", n.latin1()); + + if ( n.left( 6 ) == "mailto" ) + ExternalAppHandler::instance()->mailToContacts( n.mid(7) ); + else if ( n.left( 7 ) == "phoneto" ) + ExternalAppHandler::instance()->callByPhone( n.mid(8) ); + else if ( n.left( 5 ) == "faxto" ) + ExternalAppHandler::instance()->callByFax( n.mid(6) ); + else if ( n.left( 5 ) == "smsto" ) + ExternalAppHandler::instance()->callBySMS( n.mid(6) ); + else if ( n.left( 7 ) == "pagerto" ) + ExternalAppHandler::instance()->callByPager( n.mid(8) ); } void AddresseeView::setAddressee( const KABC::Addressee& addr ) { - bool kphoneAvail = false; - -#ifndef DESKTOP_VERSION - if ( ! kphoneInstalled ) { - if ( QFile::exists( QPEApplication::qpeDir() + "/bin/kppi" ) ) - kphoneInstalled = 1; - else - kphoneInstalled = -1; - } - if ( kphoneInstalled > 0 ) - kphoneAvail = true; -#if 0 - if ( kphoneAvail ) - qDebug("KPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPone avail "); - else - qDebug("NOOOOOOOOOOOo KPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPone avail "); -#endif + ExternalAppHandler* eah = ExternalAppHandler::instance(); + bool kemailAvail = eah->isEmailAppAvailable(); + bool kphoneAvail = eah->isPhoneAppAvailable(); + bool kfaxAvail = eah->isFaxAppAvailable(); + bool ksmsAvail = eah->isSMSAppAvailable(); + bool kpagerAvail = eah->isPagerAppAvailable(); + -#endif mAddressee = addr; // clear view setText( QString::null ); @@ -114,6 +106,7 @@ void AddresseeView::setAddressee( const KABC::Addressee& addr ) QString type = i18n( "Email" ); emailIt = emails.begin(); if ( emailIt != emails.end() ) { + if ( kemailAvail ) { dynamicPart += QString( "%1" " \">%4" ) @@ -122,37 +115,85 @@ void AddresseeView::setAddressee( const KABC::Addressee& addr ) .arg( *emailIt ) .arg( *emailIt ); ++emailIt; + } else { + dynamicPart += QString( + "%1" + "%2" ) + .arg( type ) + .arg( *emailIt ); + ++emailIt; + } } KABC::PhoneNumber::List phones = mAddressee.phoneNumbers(); KABC::PhoneNumber::List::ConstIterator phoneIt; + QString extension; + int phonetype; + QString sms; for ( phoneIt = phones.begin(); phoneIt != phones.end(); ++phoneIt ) { - if ( kphoneAvail ) { + phonetype = (*phoneIt).type(); + if (ksmsAvail && + ( + ((phonetype & KABC::PhoneNumber::Car) == KABC::PhoneNumber::Car) || + ((phonetype & KABC::PhoneNumber::Cell) == KABC::PhoneNumber::Cell) + ) + ) + { + sms = QString("(sms)" ) + .arg( (*phoneIt).number() ); + + } + else + sms = ""; + + extension = QString::null; + if ((phonetype & KABC::PhoneNumber::Fax) == KABC::PhoneNumber::Fax) + if (kfaxAvail) extension = "faxto:"; + else if ((phonetype & KABC::PhoneNumber::Pager) == KABC::PhoneNumber::Pager) + if (kpagerAvail) extension = "pagerto:"; + else if (kphoneAvail) + extension = "phoneto:"; + else + extension = QString::null; + + + if ( !extension.isEmpty() ) { dynamicPart += QString( "%1" - "%3" ) - .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) + "%4 %5" ) + .arg( KABC::PhoneNumber::typeLabel( phonetype ) ) + .arg( extension ) .arg( (*phoneIt).number() ) - .arg( (*phoneIt).number() ); + .arg( (*phoneIt).number() ) + .arg( sms ); } else { dynamicPart += QString( "%1" - "%2" ) - .arg( KABC::PhoneNumber::typeLabel( (*phoneIt).type() ) ) - .arg( (*phoneIt).number() ); + "%2 %3" ) + .arg( KABC::PhoneNumber::typeLabel( phonetype ) ) + .arg( (*phoneIt).number() ) + .arg( sms ); } } for ( ; emailIt != emails.end(); ++emailIt ) { - dynamicPart += QString( - "%1" - " \">%4" ) - .arg( type ) - .arg( name ) - .arg( *emailIt ) - .arg( *emailIt ); + if ( kemailAvail ) { + dynamicPart += QString( + "%1" + " \">%4" ) + .arg( type ) + .arg( name ) + .arg( *emailIt ) + .arg( *emailIt ); + } else { + dynamicPart += QString( + "%1" + "%2" ) + .arg( type ) + .arg( *emailIt ); + } } if ( !mAddressee.url().url().isEmpty() ) { -- cgit v0.9.0.2