summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/oscar/icq
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/protocols/oscar/icq
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/oscar/icq')
-rw-r--r--kopete/protocols/oscar/icq/icqaccount.cpp88
-rw-r--r--kopete/protocols/oscar/icq/icqaccount.h24
-rw-r--r--kopete/protocols/oscar/icq/icqcontact.cpp154
-rw-r--r--kopete/protocols/oscar/icq/icqcontact.h30
-rw-r--r--kopete/protocols/oscar/icq/icqpresence.cpp14
-rw-r--r--kopete/protocols/oscar/icq/icqprotocol.cpp98
-rw-r--r--kopete/protocols/oscar/icq/icqprotocol.h50
-rw-r--r--kopete/protocols/oscar/icq/icqreadaway.cpp36
-rw-r--r--kopete/protocols/oscar/icq/icqreadaway.h8
-rw-r--r--kopete/protocols/oscar/icq/ui/icqaddcontactpage.cpp30
-rw-r--r--kopete/protocols/oscar/icq/ui/icqaddcontactpage.h8
-rw-r--r--kopete/protocols/oscar/icq/ui/icqauthreplydialog.cpp14
-rw-r--r--kopete/protocols/oscar/icq/ui/icqauthreplydialog.h8
-rw-r--r--kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp32
-rw-r--r--kopete/protocols/oscar/icq/ui/icqeditaccountwidget.h8
-rw-r--r--kopete/protocols/oscar/icq/ui/icqsearchdialog.cpp72
-rw-r--r--kopete/protocols/oscar/icq/ui/icqsearchdialog.h2
-rw-r--r--kopete/protocols/oscar/icq/ui/icquserinfowidget.cpp84
-rw-r--r--kopete/protocols/oscar/icq/ui/icquserinfowidget.h2
19 files changed, 381 insertions, 381 deletions
diff --git a/kopete/protocols/oscar/icq/icqaccount.cpp b/kopete/protocols/oscar/icq/icqaccount.cpp
index 9a071442..7e358346 100644
--- a/kopete/protocols/oscar/icq/icqaccount.cpp
+++ b/kopete/protocols/oscar/icq/icqaccount.cpp
@@ -15,7 +15,7 @@
*************************************************************************
*/
-#include <qfile.h>
+#include <tqfile.h>
#include <kconfig.h>
#include <kdebug.h>
@@ -43,21 +43,21 @@
ICQMyselfContact::ICQMyselfContact( ICQAccount *acct ) : OscarMyselfContact( acct )
{
- QObject::connect( acct->engine(), SIGNAL( loggedIn() ), this, SLOT( fetchShortInfo() ) );
- QObject::connect( acct->engine(), SIGNAL( receivedIcqShortInfo( const QString& ) ),
- this, SLOT( receivedShortInfo( const QString& ) ) );
+ TQObject::connect( acct->engine(), TQT_SIGNAL( loggedIn() ), this, TQT_SLOT( fetchShortInfo() ) );
+ TQObject::connect( acct->engine(), TQT_SIGNAL( receivedIcqShortInfo( const TQString& ) ),
+ this, TQT_SLOT( receivedShortInfo( const TQString& ) ) );
}
void ICQMyselfContact::userInfoUpdated()
{
DWORD extendedStatus = details().extendedStatus();
- kdDebug( OSCAR_ICQ_DEBUG ) << k_funcinfo << "extendedStatus is " << QString::number( extendedStatus, 16 ) << endl;
+ kdDebug( OSCAR_ICQ_DEBUG ) << k_funcinfo << "extendedStatus is " << TQString::number( extendedStatus, 16 ) << endl;
ICQ::Presence presence = ICQ::Presence::fromOscarStatus( extendedStatus & 0xffff );
setOnlineStatus( presence.toOnlineStatus() );
setProperty( Kopete::Global::Properties::self()->awayMessage(), static_cast<ICQAccount*>( account() )->engine()->statusMessage() );
}
-void ICQMyselfContact::receivedShortInfo( const QString& contact )
+void ICQMyselfContact::receivedShortInfo( const TQString& contact )
{
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
return;
@@ -74,7 +74,7 @@ void ICQMyselfContact::fetchShortInfo()
static_cast<ICQAccount*>( account() )->engine()->requestShortInfo( contactId() );
}
-ICQAccount::ICQAccount(Kopete::Protocol *parent, QString accountID, const char *name)
+ICQAccount::ICQAccount(Kopete::Protocol *parent, TQString accountID, const char *name)
: OscarAccount(parent, accountID, name, true)
{
kdDebug(14152) << k_funcinfo << accountID << ": Called."<< endl;
@@ -83,15 +83,15 @@ ICQAccount::ICQAccount(Kopete::Protocol *parent, QString accountID, const char *
m_visibilityDialog = 0;
- QString nickName = configGroup()->readEntry("NickName", QString::null);
+ TQString nickName = configGroup()->readEntry("NickName", TQString::null);
mWebAware = configGroup()->readBoolEntry( "WebAware", false );
mHideIP = configGroup()->readBoolEntry( "HideIP", true );
- mInitialStatusMessage = QString::null;
+ mInitialStatusMessage = TQString::null;
- QObject::connect( Kopete::ContactList::self(), SIGNAL( globalIdentityChanged( const QString&, const QVariant& ) ),
- this, SLOT( slotGlobalIdentityChanged( const QString&, const QVariant& ) ) );
+ TQObject::connect( Kopete::ContactList::self(), TQT_SIGNAL( globalIdentityChanged( const TQString&, const TQVariant& ) ),
+ this, TQT_SLOT( slotGlobalIdentityChanged( const TQString&, const TQVariant& ) ) );
- QObject::connect( this, SIGNAL( buddyIconChanged() ), this, SLOT( slotBuddyIconChanged() ) );
+ TQObject::connect( this, TQT_SIGNAL( buddyIconChanged() ), this, TQT_SLOT( slotBuddyIconChanged() ) );
//setIgnoreUnknownContacts(pluginData(protocol(), "IgnoreUnknownContacts").toUInt() == 1);
@@ -100,7 +100,7 @@ ICQAccount::ICQAccount(Kopete::Protocol *parent, QString accountID, const char *
{
kdDebug(14153) << k_funcinfo <<
"sending status to reflect HideIP and WebAware settings" << endl;
- //setStatus(mStatus, QString::null);
+ //setStatus(mStatus, TQString::null);
}*/
}
@@ -129,21 +129,21 @@ KActionMenu* ICQAccount::actionMenu()
KToggleAction* actionInvisible =
new KToggleAction( i18n( "In&visible" ),
ICQ::Presence( presence().type(), ICQ::Presence::Invisible ).toOnlineStatus().iconFor( this ),
- 0, this, SLOT( slotToggleInvisible() ), this );
+ 0, this, TQT_SLOT( slotToggleInvisible() ), this );
actionInvisible->setChecked( presence().visibility() == ICQ::Presence::Invisible );
actionMenu->insert( actionInvisible );
actionMenu->popupMenu()->insertSeparator();
actionMenu->insert( new KToggleAction( i18n( "Set Visibility..." ), 0, 0,
- this, SLOT( slotSetVisiblility() ), this,
+ this, TQT_SLOT( slotSetVisiblility() ), this,
"ICQAccount::mActionSetVisibility") );
- //actionMenu->insert( new KToggleAction( i18n( "Send &SMS..." ), 0, 0, this, SLOT( slotSendSMS() ), this, "ICQAccount::mActionSendSMS") );
+ //actionMenu->insert( new KToggleAction( i18n( "Send &SMS..." ), 0, 0, this, TQT_SLOT( slotSendSMS() ), this, "ICQAccount::mActionSendSMS") );
return actionMenu;
}
-void ICQAccount::connectWithPassword( const QString &password )
+void ICQAccount::connectWithPassword( const TQString &password )
{
if ( password.isNull() )
return;
@@ -162,9 +162,9 @@ void ICQAccount::connectWithPassword( const QString &password )
if ( accountIsOffline )
{
myself()->setOnlineStatus( protocol()->statusManager()->connectingStatus() );
- QString icqNumber = accountId();
+ TQString icqNumber = accountId();
kdDebug(14153) << k_funcinfo << "Logging in as " << icqNumber << endl ;
- QString server = configGroup()->readEntry( "Server", QString::fromLatin1( "login.oscar.aol.com" ) );
+ TQString server = configGroup()->readEntry( "Server", TQString::fromLatin1( "login.oscar.aol.com" ) );
uint port = configGroup()->readNumEntry( "Port", 5190 );
Connection* c = setupConnection( server, port );
@@ -185,7 +185,7 @@ void ICQAccount::connectWithPassword( const QString &password )
engine()->start( server, port, accountId(), password );
engine()->connectToServer( c, server, true /* doAuth */ );
- mInitialStatusMessage = QString::null;
+ mInitialStatusMessage = TQString::null;
}
}
@@ -195,7 +195,7 @@ void ICQAccount::disconnected( DisconnectReason reason )
ICQ::Presence presOffline = ICQ::Presence( ICQ::Presence::Offline, presence().visibility() );
myself()->setOnlineStatus( presOffline.toOnlineStatus() );
- QDictIterator<Kopete::Contact> it( contacts() );
+ TQDictIterator<Kopete::Contact> it( contacts() );
for( ; it.current(); ++it )
{
OscarContact* oc = dynamic_cast<OscarContact*>( it.current() );
@@ -231,25 +231,25 @@ void ICQAccount::slotSetVisiblility()
if ( !m_visibilityDialog )
{
m_visibilityDialog = new OscarVisibilityDialog( engine(), Kopete::UI::Global::mainWidget() );
- QObject::connect( m_visibilityDialog, SIGNAL( closing() ),
- this, SLOT( slotVisibilityDialogClosed() ) );
+ TQObject::connect( m_visibilityDialog, TQT_SIGNAL( closing() ),
+ this, TQT_SLOT( slotVisibilityDialogClosed() ) );
//add all contacts;
OscarVisibilityDialog::ContactMap contactMap;
//temporary map for faster lookup of contactId
- QMap<QString, QString> revContactMap;
+ TQMap<TQString, TQString> revContactMap;
- QValueList<Oscar::SSI> contactList = engine()->ssiManager()->contactList();
- QValueList<Oscar::SSI>::const_iterator it, cEnd = contactList.constEnd();
+ TQValueList<Oscar::SSI> contactList = engine()->ssiManager()->contactList();
+ TQValueList<Oscar::SSI>::const_iterator it, cEnd = contactList.constEnd();
for ( it = contactList.constBegin(); it != cEnd; ++it )
{
- QString contactId = ( *it ).name();
+ TQString contactId = ( *it ).name();
OscarContact* oc = dynamic_cast<OscarContact*>( contacts()[( *it ).name()] );
if ( oc )
{ //for better orientation in lists use nickName and icq number
- QString screenName( "%1 (%2)" );
+ TQString screenName( "%1 (%2)" );
screenName = screenName.arg( oc->nickName(), contactId);
contactMap.insert( screenName, contactId );
revContactMap.insert( contactId, screenName );
@@ -263,7 +263,7 @@ void ICQAccount::slotSetVisiblility()
m_visibilityDialog->addContacts( contactMap );
//add contacts from visible list
- QStringList tmpList;
+ TQStringList tmpList;
contactList = engine()->ssiManager()->visibleList();
cEnd = contactList.constEnd();
@@ -299,7 +299,7 @@ void ICQAccount::slotVisibilityDialogClosed()
m_visibilityDialog = 0L;
}
-void ICQAccount::setAway( bool away, const QString &awayReason )
+void ICQAccount::setAway( bool away, const TQString &awayReason )
{
kdDebug(14153) << k_funcinfo << "account='" << accountId() << "'" << endl;
if ( away )
@@ -319,7 +319,7 @@ void ICQAccount::setInvisible( ICQ::Presence::Visibility vis )
setPresenceTarget( ICQ::Presence( pres.type(), vis ) );
}
-void ICQAccount::setPresenceType( ICQ::Presence::Type type, const QString &message )
+void ICQAccount::setPresenceType( ICQ::Presence::Type type, const TQString &message )
{
ICQ::Presence pres = presence();
kdDebug(14153) << k_funcinfo << "new type=" << (int)type << ", old type=" << (int)pres.type() << ", new message=" << message << endl;
@@ -327,7 +327,7 @@ void ICQAccount::setPresenceType( ICQ::Presence::Type type, const QString &messa
setPresenceTarget( ICQ::Presence( type, pres.visibility() ), message );
}
-void ICQAccount::setPresenceTarget( const ICQ::Presence &newPres, const QString &message )
+void ICQAccount::setPresenceTarget( const ICQ::Presence &newPres, const TQString &message )
{
bool targetIsOffline = (newPres.type() == ICQ::Presence::Offline);
bool accountIsOffline = ( presence().type() == ICQ::Presence::Offline ||
@@ -351,7 +351,7 @@ void ICQAccount::setPresenceTarget( const ICQ::Presence &newPres, const QString
}
-void ICQAccount::setOnlineStatus( const Kopete::OnlineStatus& status, const QString& reason )
+void ICQAccount::setOnlineStatus( const Kopete::OnlineStatus& status, const TQString& reason )
{
if ( status.status() == Kopete::OnlineStatus::Invisible )
{
@@ -375,9 +375,9 @@ void ICQAccount::setOnlineStatus( const Kopete::OnlineStatus& status, const QStr
}
-OscarContact *ICQAccount::createNewContact( const QString &contactId, Kopete::MetaContact *parentContact, const SSI& ssiItem )
+OscarContact *ICQAccount::createNewContact( const TQString &contactId, Kopete::MetaContact *parentContact, const SSI& ssiItem )
{
- ICQContact* contact = new ICQContact( this, contactId, parentContact, QString::null, ssiItem );
+ ICQContact* contact = new ICQContact( this, contactId, parentContact, TQString::null, ssiItem );
if ( !ssiItem.alias().isEmpty() )
contact->setProperty( Kopete::Global::Properties::self()->nickName(), ssiItem.alias() );
@@ -387,13 +387,13 @@ OscarContact *ICQAccount::createNewContact( const QString &contactId, Kopete::Me
return contact;
}
-QString ICQAccount::sanitizedMessage( const QString& message )
+TQString ICQAccount::sanitizedMessage( const TQString& message )
{
return Kopete::Message::escape( message );
}
-void ICQAccount::slotGlobalIdentityChanged( const QString& key, const QVariant& value )
+void ICQAccount::slotGlobalIdentityChanged( const TQString& key, const TQVariant& value )
{
//do something with the photo
kdDebug(14153) << k_funcinfo << "Global identity changed" << endl;
@@ -417,14 +417,14 @@ void ICQAccount::slotGlobalIdentityChanged( const QString& key, const QVariant&
void ICQAccount::slotBuddyIconChanged()
{
// need to disconnect because we could end up with many connections
- QObject::disconnect( engine(), SIGNAL( iconServerConnected() ), this, SLOT( slotBuddyIconChanged() ) );
+ TQObject::disconnect( engine(), TQT_SIGNAL( iconServerConnected() ), this, TQT_SLOT( slotBuddyIconChanged() ) );
if ( !engine()->isActive() )
{
- QObject::connect( engine(), SIGNAL( iconServerConnected() ), this, SLOT( slotBuddyIconChanged() ) );
+ TQObject::connect( engine(), TQT_SIGNAL( iconServerConnected() ), this, TQT_SLOT( slotBuddyIconChanged() ) );
return;
}
- QString photoPath = myself()->property( Kopete::Global::Properties::self()->photo() ).value().toString();
+ TQString photoPath = myself()->property( Kopete::Global::Properties::self()->photo() ).value().toString();
SSIManager* ssi = engine()->ssiManager();
Oscar::SSI item = ssi->findItemForIconByRef( 1 );
@@ -437,7 +437,7 @@ void ICQAccount::slotBuddyIconChanged()
Oscar::SSI s(item);
//remove hash and alias
- QValueList<TLV> tList( item.tlvList() );
+ TQValueList<TLV> tList( item.tlvList() );
TLV t = Oscar::findTLV( tList, 0x00D5 );
if ( t )
tList.remove( t );
@@ -453,7 +453,7 @@ void ICQAccount::slotBuddyIconChanged()
}
else
{
- QFile iconFile( photoPath );
+ TQFile iconFile( photoPath );
iconFile.open( IO_ReadOnly );
KMD5 iconHash;
@@ -478,7 +478,7 @@ void ICQAccount::slotBuddyIconChanged()
t2.type = 0x0131;
t2.length = 0;
- QValueList<Oscar::TLV> list;
+ TQValueList<Oscar::TLV> list;
list.append( t );
list.append( t2 );
@@ -492,7 +492,7 @@ void ICQAccount::slotBuddyIconChanged()
{ //found an item
Oscar::SSI s(item);
kdDebug(14153) << k_funcinfo << "modifying old item in ssi." << endl;
- QValueList<TLV> tList( item.tlvList() );
+ TQValueList<TLV> tList( item.tlvList() );
TLV t = Oscar::findTLV( tList, 0x00D5 );
if ( t )
diff --git a/kopete/protocols/oscar/icq/icqaccount.h b/kopete/protocols/oscar/icq/icqaccount.h
index f6231ec9..d64fe5d7 100644
--- a/kopete/protocols/oscar/icq/icqaccount.h
+++ b/kopete/protocols/oscar/icq/icqaccount.h
@@ -39,7 +39,7 @@ public:
void userInfoUpdated();
public slots:
- void receivedShortInfo( const QString& );
+ void receivedShortInfo( const TQString& );
void fetchShortInfo();
};
@@ -49,7 +49,7 @@ class ICQAccount : public OscarAccount
Q_OBJECT
public:
- ICQAccount( Kopete::Protocol *parent, QString accountID, const char *name = 0L );
+ ICQAccount( Kopete::Protocol *parent, TQString accountID, const char *name = 0L );
virtual ~ICQAccount();
ICQProtocol *protocol();
@@ -58,18 +58,18 @@ public:
virtual KActionMenu* actionMenu();
/** Reimplementation from Kopete::Account */
- void setOnlineStatus( const Kopete::OnlineStatus&, const QString& );
+ void setOnlineStatus( const Kopete::OnlineStatus&, const TQString& );
- virtual void setAway( bool away, const QString &awayReason );
+ virtual void setAway( bool away, const TQString &awayReason );
- void connectWithPassword( const QString &password );
+ void connectWithPassword( const TQString &password );
- void setUserProfile( const QString &profile );
+ void setUserProfile( const TQString &profile );
protected:
- virtual OscarContact *createNewContact( const QString &contactId, Kopete::MetaContact *parentContact, const SSI& ssiItem );
+ virtual OscarContact *createNewContact( const TQString &contactId, Kopete::MetaContact *parentContact, const SSI& ssiItem );
- virtual QString sanitizedMessage( const QString& message );
+ virtual TQString sanitizedMessage( const TQString& message );
protected slots:
virtual void disconnected( DisconnectReason reason );
@@ -79,8 +79,8 @@ private:
ICQ::Presence presence();
void setInvisible( ICQ::Presence::Visibility );
- void setPresenceType( ICQ::Presence::Type, const QString &awayMessage = QString::null );
- void setPresenceTarget( const ICQ::Presence &presence, const QString &message = QString::null );
+ void setPresenceType( ICQ::Presence::Type, const TQString &awayMessage = TQString::null );
+ void setPresenceTarget( const ICQ::Presence &presence, const TQString &message = TQString::null );
//const unsigned long fullStatus( const unsigned long plainStatus );
@@ -90,14 +90,14 @@ private slots:
void slotSetVisiblility();
void slotVisibilityDialogClosed();
- void slotGlobalIdentityChanged( const QString& key, const QVariant& value );
+ void slotGlobalIdentityChanged( const TQString& key, const TQVariant& value );
void slotBuddyIconChanged();
private:
bool mWebAware;
bool mHideIP;
- QString mInitialStatusMessage;
+ TQString mInitialStatusMessage;
OscarVisibilityDialog* m_visibilityDialog;
};
diff --git a/kopete/protocols/oscar/icq/icqcontact.cpp b/kopete/protocols/oscar/icq/icqcontact.cpp
index 8ba8d195..90204bdf 100644
--- a/kopete/protocols/oscar/icq/icqcontact.cpp
+++ b/kopete/protocols/oscar/icq/icqcontact.cpp
@@ -17,9 +17,9 @@
#include "icqcontact.h"
-#include <qtimer.h>
-#include <qimage.h>
-#include <qfile.h>
+#include <tqtimer.h>
+#include <tqimage.h>
+#include <tqfile.h>
#include <kaction.h>
#include <kactionclasses.h>
@@ -51,8 +51,8 @@
#include "oscarencodingselectiondialog.h"
#include "ssimanager.h"
-ICQContact::ICQContact( ICQAccount *account, const QString &name, Kopete::MetaContact *parent,
- const QString& icon, const Oscar::SSI& ssiItem )
+ICQContact::ICQContact( ICQAccount *account, const TQString &name, Kopete::MetaContact *parent,
+ const TQString& icon, const Oscar::SSI& ssiItem )
: OscarContact( account, name, parent, icon, ssiItem )
{
mProtocol = static_cast<ICQProtocol *>(protocol());
@@ -66,28 +66,28 @@ ICQContact::ICQContact( ICQAccount *account, const QString &name, Kopete::MetaCo
else
setOnlineStatus( ICQ::Presence( ICQ::Presence::Offline, ICQ::Presence::Visible ).toOnlineStatus() );
- QObject::connect( mAccount->engine(), SIGNAL( loggedIn() ), this, SLOT( loggedIn() ) );
- //QObject::connect( mAccount->engine(), SIGNAL( userIsOnline( const QString& ) ), this, SLOT( userOnline( const QString&, UserDetails ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( userIsOffline( const QString& ) ), this, SLOT( userOffline( const QString& ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( authRequestReceived( const QString&, const QString& ) ),
- this, SLOT( slotGotAuthRequest( const QString&, const QString& ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( authReplyReceived( const QString&, const QString&, bool ) ),
- this, SLOT( slotGotAuthReply(const QString&, const QString&, bool ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( receivedIcqShortInfo( const QString& ) ),
- this, SLOT( receivedShortInfo( const QString& ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( receivedIcqLongInfo( const QString& ) ),
- this, SLOT( receivedLongInfo( const QString& ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( receivedUserInfo( const QString&, const UserDetails& ) ),
- this, SLOT( userInfoUpdated( const QString&, const UserDetails& ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( receivedAwayMessage( const QString&, const QString& ) ),
- this, SLOT( receivedStatusMessage( const QString&, const QString& ) ) );
- QObject::connect( mAccount->engine(), SIGNAL( receivedAwayMessage( const Oscar::Message& ) ),
- this, SLOT( receivedStatusMessage( const Oscar::Message& ) ) );
- QObject::connect( this, SIGNAL( featuresUpdated() ), this, SLOT( updateFeatures() ) );
- QObject::connect( mAccount->engine(), SIGNAL( iconServerConnected() ),
- this, SLOT( requestBuddyIcon() ) );
- QObject::connect( mAccount->engine(), SIGNAL( haveIconForContact( const QString&, QByteArray ) ),
- this, SLOT( haveIcon( const QString&, QByteArray ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( loggedIn() ), this, TQT_SLOT( loggedIn() ) );
+ //TQObject::connect( mAccount->engine(), TQT_SIGNAL( userIsOnline( const TQString& ) ), this, TQT_SLOT( userOnline( const TQString&, UserDetails ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( userIsOffline( const TQString& ) ), this, TQT_SLOT( userOffline( const TQString& ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( authRequestReceived( const TQString&, const TQString& ) ),
+ this, TQT_SLOT( slotGotAuthRequest( const TQString&, const TQString& ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( authReplyReceived( const TQString&, const TQString&, bool ) ),
+ this, TQT_SLOT( slotGotAuthReply(const TQString&, const TQString&, bool ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( receivedIcqShortInfo( const TQString& ) ),
+ this, TQT_SLOT( receivedShortInfo( const TQString& ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( receivedIcqLongInfo( const TQString& ) ),
+ this, TQT_SLOT( receivedLongInfo( const TQString& ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( receivedUserInfo( const TQString&, const UserDetails& ) ),
+ this, TQT_SLOT( userInfoUpdated( const TQString&, const UserDetails& ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( receivedAwayMessage( const TQString&, const TQString& ) ),
+ this, TQT_SLOT( receivedStatusMessage( const TQString&, const TQString& ) ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( receivedAwayMessage( const Oscar::Message& ) ),
+ this, TQT_SLOT( receivedStatusMessage( const Oscar::Message& ) ) );
+ TQObject::connect( this, TQT_SIGNAL( featuresUpdated() ), this, TQT_SLOT( updateFeatures() ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( iconServerConnected() ),
+ this, TQT_SLOT( requestBuddyIcon() ) );
+ TQObject::connect( mAccount->engine(), TQT_SIGNAL( haveIconForContact( const TQString&, TQByteArray ) ),
+ this, TQT_SLOT( haveIcon( const TQString&, TQByteArray ) ) );
}
@@ -111,7 +111,7 @@ void ICQContact::updateSSIItem()
}
-void ICQContact::userInfoUpdated( const QString& contact, const UserDetails& details )
+void ICQContact::userInfoUpdated( const TQString& contact, const UserDetails& details )
{
//kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << contact << contactId() << endl;
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
@@ -193,7 +193,7 @@ void ICQContact::userInfoUpdated( const QString& contact, const UserDetails& det
int time = ( KApplication::random() % 10 ) * 1000;
kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << "updating buddy icon in "
<< time/1000 << " seconds" << endl;
- QTimer::singleShot( time, this, SLOT( requestBuddyIcon() ) );
+ TQTimer::singleShot( time, this, TQT_SLOT( requestBuddyIcon() ) );
}
}
}
@@ -201,7 +201,7 @@ void ICQContact::userInfoUpdated( const QString& contact, const UserDetails& det
OscarContact::userInfoUpdated( contact, details );
}
-void ICQContact::userOnline( const QString& userId )
+void ICQContact::userOnline( const TQString& userId )
{
if ( Oscar::normalize( userId ) != Oscar::normalize( contactId() ) )
return;
@@ -211,7 +211,7 @@ void ICQContact::userOnline( const QString& userId )
//mAccount->engine()->requestStatusInfo( contactId() );
}
-void ICQContact::userOffline( const QString& userId )
+void ICQContact::userOffline( const TQString& userId )
{
if ( Oscar::normalize( userId ) != Oscar::normalize( contactId() ) )
return;
@@ -237,7 +237,7 @@ void ICQContact::loggedIn()
m_requestingNickname = true;
int time = ( KApplication::random() % 20 ) * 1000;
kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << "updating nickname in " << time/1000 << " seconds" << endl;
- QTimer::singleShot( time, this, SLOT( requestShortInfo() ) );
+ TQTimer::singleShot( time, this, TQT_SLOT( requestShortInfo() ) );
}
}
@@ -250,7 +250,7 @@ void ICQContact::requestShortInfo()
void ICQContact::slotRequestAuth()
{
- QString reason = KInputDialog::getText( i18n("Request Authorization"),
+ TQString reason = KInputDialog::getText( i18n("Request Authorization"),
i18n("Reason for requesting authorization:") );
if ( !reason.isNull() )
mAccount->engine()->requestAuth( contactId(), reason );
@@ -266,13 +266,13 @@ void ICQContact::slotSendAuth()
mAccount->engine()->sendAuth( contactId(), replyDialog.reason(), replyDialog.grantAuth() );
}
-void ICQContact::slotGotAuthReply( const QString& contact, const QString& reason, bool granted )
+void ICQContact::slotGotAuthReply( const TQString& contact, const TQString& reason, bool granted )
{
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
return;
kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << endl;
- QString message;
+ TQString message;
if( granted )
{
message = i18n( "User %1 has granted your authorization request.\nReason: %2" )
@@ -291,14 +291,14 @@ void ICQContact::slotGotAuthReply( const QString& contact, const QString& reason
KNotifyClient::event( Kopete::UI::Global::sysTrayWId(), "icq_authorization", message );
}
-void ICQContact::slotGotAuthRequest( const QString& contact, const QString& reason )
+void ICQContact::slotGotAuthRequest( const TQString& contact, const TQString& reason )
{
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
return;
ICQAuthReplyDialog *replyDialog = new ICQAuthReplyDialog();
- connect( replyDialog, SIGNAL( okClicked() ), this, SLOT( slotAuthReplyDialogOkClicked() ) );
+ connect( replyDialog, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( slotAuthReplyDialogOkClicked() ) );
replyDialog->setUser( property( Kopete::Global::Properties::self()->nickName() ).value().toString() );
replyDialog->setRequestReason( reason );
replyDialog->setModal( TRUE );
@@ -314,7 +314,7 @@ void ICQContact::slotAuthReplyDialogOkClicked()
mAccount->engine()->sendAuth( contactId(), replyDialog->reason(), replyDialog->grantAuth() );
}
-void ICQContact::receivedLongInfo( const QString& contact )
+void ICQContact::receivedLongInfo( const TQString& contact )
{
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
{
@@ -323,7 +323,7 @@ void ICQContact::receivedLongInfo( const QString& contact )
return;
}
- QTextCodec* codec = contactCodec();
+ TQTextCodec* codec = contactCodec();
kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << "received long info from engine" << endl;
@@ -343,12 +343,12 @@ void ICQContact::receivedLongInfo( const QString& contact )
}
-void ICQContact::receivedShortInfo( const QString& contact )
+void ICQContact::receivedShortInfo( const TQString& contact )
{
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
return;
- QTextCodec* codec = contactCodec();
+ TQTextCodec* codec = contactCodec();
m_requestingNickname = false; //done requesting nickname
ICQShortInfo shortInfo = mAccount->engine()->getShortInfo( contact );
@@ -372,7 +372,7 @@ void ICQContact::receivedShortInfo( const QString& contact )
}
-void ICQContact::receivedStatusMessage( const QString &contact, const QString &message )
+void ICQContact::receivedStatusMessage( const TQString &contact, const TQString &message )
{
if ( Oscar::normalize( contact ) != Oscar::normalize( contactId() ) )
return;
@@ -389,9 +389,9 @@ void ICQContact::receivedStatusMessage( const Oscar::Message &message )
return;
//decode message
- QTextCodec* codec = contactCodec();
+ TQTextCodec* codec = contactCodec();
- QString realText = message.text(codec);
+ TQString realText = message.text(codec);
if ( !realText.isEmpty() )
setProperty( mProtocol->awayMessage, realText );
@@ -404,7 +404,7 @@ void ICQContact::slotSendMsg( Kopete::Message& msg, Kopete::ChatSession* session
//Why is this unused?
Q_UNUSED( session );
- QTextCodec* codec = contactCodec();
+ TQTextCodec* codec = contactCodec();
int messageChannel = 0x01;
Oscar::Message::Encoding messageEncoding;
@@ -414,14 +414,14 @@ void ICQContact::slotSendMsg( Kopete::Message& msg, Kopete::ChatSession* session
else
messageEncoding = Oscar::Message::UserDefined;
- QString msgText( msg.plainBody() );
+ TQString msgText( msg.plainBody() );
// TODO: More intelligent handling of message length.
uint chunk_length = !isOnline() ? 450 : 4096;
uint msgPosition = 0;
do
{
- QString msgChunk( msgText.mid( msgPosition, chunk_length ) );
+ TQString msgChunk( msgText.mid( msgPosition, chunk_length ) );
// Try to split on space if needed
if ( msgChunk.length() == chunk_length )
{
@@ -460,7 +460,7 @@ void ICQContact::requestBuddyIcon()
}
}
-void ICQContact::haveIcon( const QString& user, QByteArray icon )
+void ICQContact::haveIcon( const TQString& user, TQByteArray icon )
{
if ( Oscar::normalize( user ) != Oscar::normalize( contactId() ) )
return;
@@ -470,9 +470,9 @@ void ICQContact::haveIcon( const QString& user, QByteArray icon )
KMD5 buddyIconHash( icon );
if ( memcmp( buddyIconHash.rawDigest(), m_details.buddyIconHash().data(), 16 ) == 0 )
{
- QString iconLocation( locateLocal( "appdata", "oscarpictures/"+ contactId() ) );
+ TQString iconLocation( locateLocal( "appdata", "oscarpictures/"+ contactId() ) );
- QFile iconFile( iconLocation );
+ TQFile iconFile( iconLocation );
if ( !iconFile.open( IO_WriteOnly ) )
{
kdDebug(14153) << k_funcinfo << "Cannot open file"
@@ -483,7 +483,7 @@ void ICQContact::haveIcon( const QString& user, QByteArray icon )
iconFile.writeBlock( icon );
iconFile.close();
- setProperty( Kopete::Global::Properties::self()->photo(), QString::null );
+ setProperty( Kopete::Global::Properties::self()->photo(), TQString::null );
setProperty( Kopete::Global::Properties::self()->photo(), iconLocation );
m_buddyIconDirty = false;
}
@@ -494,11 +494,11 @@ void ICQContact::haveIcon( const QString& user, QByteArray icon )
}
}
-bool ICQContact::cachedBuddyIcon( QByteArray hash )
+bool ICQContact::cachedBuddyIcon( TQByteArray hash )
{
- QString iconLocation( locateLocal( "appdata", "oscarpictures/"+ contactId() ) );
+ TQString iconLocation( locateLocal( "appdata", "oscarpictures/"+ contactId() ) );
- QFile iconFile( iconLocation );
+ TQFile iconFile( iconLocation );
if ( !iconFile.open( IO_ReadOnly ) )
return false;
@@ -510,7 +510,7 @@ bool ICQContact::cachedBuddyIcon( QByteArray hash )
{
kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << "Updating icon for "
<< contactId() << " from local cache" << endl;
- setProperty( Kopete::Global::Properties::self()->photo(), QString::null );
+ setProperty( Kopete::Global::Properties::self()->photo(), TQString::null );
setProperty( Kopete::Global::Properties::self()->photo(), iconLocation );
m_buddyIconDirty = false;
return true;
@@ -532,7 +532,7 @@ void ICQContact::slotContactChanged(const UserInfo &u)
/*kdDebug(14190) << k_funcinfo << "Called for '"
<< displayName() << "', contactName()=" << contactName() << endl;*/
- QStringList capList;
+ TQStringList capList;
// Append client name and version in case we found one
if (!mInfo.clientName.isEmpty())
{
@@ -595,7 +595,7 @@ void ICQContact::slotContactChanged(const UserInfo &u)
setStatus(newStatus);
}
-void ICQContact::slotOffgoingBuddy(QString sender)
+void ICQContact::slotOffgoingBuddy(TQString sender)
{
if(sender != contactName())
return;
@@ -605,7 +605,7 @@ void ICQContact::slotOffgoingBuddy(QString sender)
setOnlineStatus(mProtocol->statusOffline);
}
-void ICQContact::gotIM(OscarSocket::OscarMessageType /*type*/, const QString &message)
+void ICQContact::gotIM(OscarSocket::OscarMessageType /*type*/, const TQString &message)
{
// Build a Kopete::Message and set the body as Rich Text
Kopete::ContactPtrList tmpList;
@@ -649,12 +649,12 @@ bool ICQContact::isReachable()
return account()->isConnected();
}
-QPtrList<KAction> *ICQContact::customContextMenuActions()
+TQPtrList<KAction> *ICQContact::customContextMenuActions()
{
- QPtrList<KAction> *actionCollection = new QPtrList<KAction>();
+ TQPtrList<KAction> *actionCollection = new TQPtrList<KAction>();
/*
- QString awTxt;
- QString awIcn;
+ TQString awTxt;
+ TQString awIcn;
unsigned int status = onlineStatus().internalStatus();
if (status >= 15)
status -= 15; // get rid of invis addon
@@ -685,12 +685,12 @@ QPtrList<KAction> *ICQContact::customContextMenuActions()
if(actionReadAwayMessage==0)
{
actionReadAwayMessage = new KAction(awTxt, awIcn, 0,
- this, SLOT(slotReadAwayMessage()), this, "actionReadAwayMessage");
+ this, TQT_SLOT(slotReadAwayMessage()), this, "actionReadAwayMessage");
*/
actionRequestAuth = new KAction(i18n("&Request Authorization"), "mail_reply", 0,
- this, SLOT(slotRequestAuth()), this, "actionRequestAuth");
+ this, TQT_SLOT(slotRequestAuth()), this, "actionRequestAuth");
actionSendAuth = new KAction(i18n("&Grant Authorization"), "mail_forward", 0,
- this, SLOT(slotSendAuth()), this, "actionSendAuth");
+ this, TQT_SLOT(slotSendAuth()), this, "actionSendAuth");
/*
}
else
@@ -701,11 +701,11 @@ QPtrList<KAction> *ICQContact::customContextMenuActions()
*/
m_actionIgnore = new KToggleAction(i18n("&Ignore"), "", 0,
- this, SLOT(slotIgnore()), this, "actionIgnore");
+ this, TQT_SLOT(slotIgnore()), this, "actionIgnore");
m_actionVisibleTo = new KToggleAction(i18n("Always &Visible To"), "", 0,
- this, SLOT(slotVisibleTo()), this, "actionVisibleTo");
+ this, TQT_SLOT(slotVisibleTo()), this, "actionVisibleTo");
m_actionInvisibleTo = new KToggleAction(i18n("Always &Invisible To"), "", 0,
- this, SLOT(slotInvisibleTo()), this, "actionInvisibleTo");
+ this, TQT_SLOT(slotInvisibleTo()), this, "actionInvisibleTo");
bool on = account()->isConnected();
if ( m_ssiItem.waitingAuth() )
@@ -717,7 +717,7 @@ QPtrList<KAction> *ICQContact::customContextMenuActions()
m_selectEncoding = new KAction( i18n( "Select Encoding..." ), "charset", 0,
- this, SLOT( changeContactEncoding() ), this, "changeEncoding" );
+ this, TQT_SLOT( changeContactEncoding() ), this, "changeEncoding" );
/*
actionReadAwayMessage->setEnabled(status != OSCAR_OFFLINE && status != OSCAR_ONLINE);
@@ -748,7 +748,7 @@ QPtrList<KAction> *ICQContact::customContextMenuActions()
void ICQContact::slotUserInfo()
{
m_infoWidget = new ICQUserInfoWidget( Kopete::UI::Global::mainWidget(), "icq info" );
- QObject::connect( m_infoWidget, SIGNAL( finished() ), this, SLOT( closeUserInfoDialog() ) );
+ TQObject::connect( m_infoWidget, TQT_SIGNAL( finished() ), this, TQT_SLOT( closeUserInfoDialog() ) );
m_infoWidget->setContact( this );
m_infoWidget->show();
if ( account()->isConnected() )
@@ -757,7 +757,7 @@ void ICQContact::slotUserInfo()
void ICQContact::closeUserInfoDialog()
{
- QObject::disconnect( this, 0, m_infoWidget, 0 );
+ TQObject::disconnect( this, 0, m_infoWidget, 0 );
m_infoWidget->delayedDestruct();
m_infoWidget = 0L;
}
@@ -768,14 +768,14 @@ void ICQContact::changeContactEncoding()
return;
m_oesd = new OscarEncodingSelectionDialog( Kopete::UI::Global::mainWidget(), property(mProtocol->contactEncoding).value().toInt() );
- connect( m_oesd, SIGNAL( closing( int ) ),
- this, SLOT( changeEncodingDialogClosed( int ) ) );
+ connect( m_oesd, TQT_SIGNAL( closing( int ) ),
+ this, TQT_SLOT( changeEncodingDialogClosed( int ) ) );
m_oesd->show();
}
void ICQContact::changeEncodingDialogClosed( int result )
{
- if ( result == QDialog::Accepted )
+ if ( result == TQDialog::Accepted )
{
int mib = m_oesd->selectedEncoding();
if ( mib != 0 )
@@ -827,7 +827,7 @@ void ICQContact::slotReadAwayMessage()
awayMessageDialog = new ICQReadAway(this, 0L, "awayMessageDialog");
if(!awayMessageDialog)
return;
- QObject::connect(awayMessageDialog, SIGNAL(closing()), this, SLOT(slotCloseAwayMessageDialog()));
+ TQObject::connect(awayMessageDialog, TQT_SIGNAL(closing()), this, TQT_SLOT(slotCloseAwayMessageDialog()));
awayMessageDialog->show();
}
else
@@ -844,14 +844,14 @@ void ICQContact::slotCloseAwayMessageDialog()
}
-const QString ICQContact::awayMessage()
+const TQString ICQContact::awayMessage()
{
kdDebug(14150) << k_funcinfo << property(mProtocol->awayMessage).value().toString() << endl;
return property(mProtocol->awayMessage).value().toString();
}
-void ICQContact::setAwayMessage(const QString &message)
+void ICQContact::setAwayMessage(const TQString &message)
{
/*kdDebug(14150) << k_funcinfo <<
"Called for '" << displayName() << "', away msg='" << message << "'" << endl;*/
diff --git a/kopete/protocols/oscar/icq/icqcontact.h b/kopete/protocols/oscar/icq/icqcontact.h
index 41084e63..8e3301cf 100644
--- a/kopete/protocols/oscar/icq/icqcontact.h
+++ b/kopete/protocols/oscar/icq/icqcontact.h
@@ -51,30 +51,30 @@ Q_OBJECT
public:
/** Normal ICQ constructor */
- ICQContact( ICQAccount *account, const QString &name, Kopete::MetaContact *parent,
- const QString& icon = QString::null, const Oscar::SSI& ssiItem = Oscar::SSI() );
+ ICQContact( ICQAccount *account, const TQString &name, Kopete::MetaContact *parent,
+ const TQString& icon = TQString::null, const Oscar::SSI& ssiItem = Oscar::SSI() );
virtual ~ICQContact();
/**
* Returns a set of custom menu items for
* the context menu
*/
- virtual QPtrList<KAction> *customContextMenuActions();
+ virtual TQPtrList<KAction> *customContextMenuActions();
/** Return whether or not this contact is reachable. */
virtual bool isReachable();
- //virtual const QString awayMessage();
- //virtual void setAwayMessage(const QString &message);
+ //virtual const TQString awayMessage();
+ //virtual void setAwayMessage(const TQString &message);
public slots:
virtual void slotUserInfo();
virtual void updateSSIItem();
- void userInfoUpdated( const QString& contact, const UserDetails& details );
+ void userInfoUpdated( const TQString& contact, const UserDetails& details );
- void userOnline( const QString& userId );
- void userOffline( const QString& userID );
+ void userOnline( const TQString& userId );
+ void userOffline( const TQString& userID );
void loggedIn();
void requestShortInfo();
@@ -87,7 +87,7 @@ signals:
void haveInterestInfo( const ICQInterestInfo& );
private:
- bool cachedBuddyIcon( QByteArray hash );
+ bool cachedBuddyIcon( TQByteArray hash );
bool m_buddyIconDirty;
bool m_requestingNickname;
@@ -125,22 +125,22 @@ private slots:
void slotAuthReplyDialogOkClicked();
/** We have received an auth request */
- void slotGotAuthRequest( const QString& contact, const QString& reason );
+ void slotGotAuthRequest( const TQString& contact, const TQString& reason );
/** We have received an auth reply */
- void slotGotAuthReply( const QString& contact, const QString& reason, bool granted );
+ void slotGotAuthReply( const TQString& contact, const TQString& reason, bool granted );
void closeUserInfoDialog();
- void receivedLongInfo( const QString& contact );
- void receivedShortInfo( const QString& contact );
+ void receivedLongInfo( const TQString& contact );
+ void receivedShortInfo( const TQString& contact );
void changeContactEncoding();
void changeEncodingDialogClosed( int );
void requestBuddyIcon();
- void haveIcon( const QString&, QByteArray );
- void receivedStatusMessage( const QString &contact, const QString &message );
+ void haveIcon( const TQString&, TQByteArray );
+ void receivedStatusMessage( const TQString &contact, const TQString &message );
void receivedStatusMessage( const Oscar::Message &message );
//void slotCloseAwayMessageDialog();
diff --git a/kopete/protocols/oscar/icq/icqpresence.cpp b/kopete/protocols/oscar/icq/icqpresence.cpp
index ab6bb670..393f04c9 100644
--- a/kopete/protocols/oscar/icq/icqpresence.cpp
+++ b/kopete/protocols/oscar/icq/icqpresence.cpp
@@ -39,9 +39,9 @@ struct PresenceTypeData
Kopete::OnlineStatus::StatusType onlineStatusType;
unsigned long setFlag;
unsigned long getFlag;
- QString caption;
- QString visibleName;
- QString invisibleName;
+ TQString caption;
+ TQString visibleName;
+ TQString invisibleName;
const char *visibleIcon;
const char *invisibleIcon;
unsigned int categories;
@@ -132,8 +132,8 @@ public:
, waitingForAuth( Kopete::OnlineStatus::Unknown, 1, ICQProtocol::protocol(),
Presence::Offline, "button_cancel", i18n("Waiting for Authorization") )
, invisible( Kopete::OnlineStatus::Invisible, 2, ICQProtocol::protocol(),
- Presence::Offline, QString::null, QString::null,
- QString::null, Kopete::OnlineStatusManager::Invisible,
+ Presence::Offline, TQString::null, TQString::null,
+ TQString::null, Kopete::OnlineStatusManager::Invisible,
Kopete::OnlineStatusManager::HideFromMenu )
{
@@ -150,8 +150,8 @@ public:
const PresenceTypeData &data = PresenceTypeData::forType( static_cast<Presence::Type>(n) );
const uint weight = n + firstUsableWeight;
const uint internalStatus = n + invisibleOffset;
- QStringList overlayIcons( data.visibleIcon );
- QString description( data.visibleName );
+ TQStringList overlayIcons( data.visibleIcon );
+ TQString description( data.visibleName );
Kopete::OnlineStatus status;
if ( invisible )
{
diff --git a/kopete/protocols/oscar/icq/icqprotocol.cpp b/kopete/protocols/oscar/icq/icqprotocol.cpp
index 42616e32..79fd2848 100644
--- a/kopete/protocols/oscar/icq/icqprotocol.cpp
+++ b/kopete/protocols/oscar/icq/icqprotocol.cpp
@@ -23,15 +23,15 @@
#include <netinet/in.h> // for ntohl()
-#include <qcombobox.h>
+#include <tqcombobox.h>
/*
-#include <qhostaddress.h>
-#include <qlistbox.h>
-#include <qspinbox.h>
-#include <qtextedit.h>
+#include <tqhostaddress.h>
+#include <tqlistbox.h>
+#include <tqspinbox.h>
+#include <tqtextedit.h>
#include <kdatewidget.h>*/
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
#include <kdialogbase.h>
/*
#include <klineedit.h>
@@ -66,10 +66,10 @@ K_EXPORT_COMPONENT_FACTORY( kopete_icq, ICQProtocolFactory( "kopete_icq" ) )
ICQProtocolHandler::ICQProtocolHandler() : Kopete::MimeTypeHandler(false)
{
- registerAsMimeHandler(QString::fromLatin1("application/x-icq"));
+ registerAsMimeHandler(TQString::fromLatin1("application/x-icq"));
}
-void ICQProtocolHandler::handleURL(const QString &mimeType, const KURL & url) const
+void ICQProtocolHandler::handleURL(const TQString &mimeType, const KURL & url) const
{
if (mimeType != "application/x-icq")
return;
@@ -96,21 +96,21 @@ void ICQProtocolHandler::handleURL(const QString &mimeType, const KURL & url) co
ICQProtocol *proto = ICQProtocol::protocol();
- QString uin = file.readEntry("UIN");
+ TQString uin = file.readEntry("UIN");
if (uin.isEmpty())
return;
- QString nick = file.readEntry("NickName");
- QString first = file.readEntry("FirstName");
- QString last = file.readEntry("LastName");
- QString email = file.readEntry("Email");
+ TQString nick = file.readEntry("NickName");
+ TQString first = file.readEntry("FirstName");
+ TQString last = file.readEntry("LastName");
+ TQString email = file.readEntry("Email");
Kopete::Account *account = 0;
- QDict<Kopete::Account> accounts = Kopete::AccountManager::self()->accounts(proto);
+ TQDict<Kopete::Account> accounts = Kopete::AccountManager::self()->accounts(proto);
// do not show chooser if we only have one account to "choose" from
if (accounts.count() == 1)
{
- QDictIterator<Kopete::Account> it(accounts);
+ TQDictIterator<Kopete::Account> it(accounts);
account = it.current();
}
else
@@ -126,7 +126,7 @@ void ICQProtocolHandler::handleURL(const QString &mimeType, const KURL & url) co
account = accSelector->selectedItem();
delete chooser;
- if (ret == QDialog::Rejected || account == 0)
+ if (ret == TQDialog::Rejected || account == 0)
{
kdDebug(14153) << k_funcinfo << "Cancelled" << endl;
return;
@@ -140,12 +140,12 @@ void ICQProtocolHandler::handleURL(const QString &mimeType, const KURL & url) co
return;
}
- QString nickuin = nick.isEmpty() ?
+ TQString nickuin = nick.isEmpty() ?
i18n("'%1'").arg(uin) :
i18n("'%1' (%2)").arg(nick, uin);
if (KMessageBox::questionYesNo(Kopete::UI::Global::mainWidget(),
- i18n("Do you want to add %1 to your contact list?").arg(nickuin), QString::null, i18n("Add"), i18n("Do Not Add"))
+ i18n("Do you want to add %1 to your contact list?").arg(nickuin), TQString::null, i18n("Add"), i18n("Do Not Add"))
!= KMessageBox::Yes)
{
kdDebug(14153) << k_funcinfo << "Cancelled" << endl;
@@ -173,7 +173,7 @@ void ICQProtocolHandler::handleURL(const QString &mimeType, const KURL & url) co
ICQProtocol* ICQProtocol::protocolStatic_ = 0L;
-ICQProtocol::ICQProtocol(QObject *parent, const char *name, const QStringList&)
+ICQProtocol::ICQProtocol(TQObject *parent, const char *name, const TQStringList&)
: Kopete::Protocol( ICQProtocolFactory::instance(), parent, name ),
firstName(Kopete::Global::Properties::self()->firstName()),
lastName(Kopete::Global::Properties::self()->lastName()),
@@ -181,8 +181,8 @@ ICQProtocol::ICQProtocol(QObject *parent, const char *name, const QStringList&)
emailAddress(Kopete::Global::Properties::self()->emailAddress()),
ipAddress("ipAddress", i18n("IP Address") ),
clientFeatures("clientFeatures", i18n("Client Features"), 0, false),
- buddyIconHash("iconHash", i18n("Buddy Icon MD5 Hash"), QString::null, true, false, true),
- contactEncoding( "contactEncoding", i18n( "Contact Encoding" ), QString::null, true, false, true )
+ buddyIconHash("iconHash", i18n("Buddy Icon MD5 Hash"), TQString::null, true, false, true),
+ contactEncoding( "contactEncoding", i18n( "Contact Encoding" ), TQString::null, true, false, true )
{
if (protocolStatic_)
@@ -219,7 +219,7 @@ void ICQProtocol::initGenders()
void ICQProtocol::initCountries()
{
mCountries.insert(0, ""); // unspecified
- KLocale *kl = KGlobal::locale(); //KLocale(QString::fromLatin1("kopete"));
+ KLocale *kl = KGlobal::locale(); //KLocale(TQString::fromLatin1("kopete"));
mCountries.insert(93, kl->twoAlphaToCountryName("af"));
mCountries.insert(355, kl->twoAlphaToCountryName("al"));
@@ -468,7 +468,7 @@ void ICQProtocol::initCountries()
void ICQProtocol::initLang()
{
- KLocale *kl = KGlobal::locale(); //KLocale(QString::fromLatin1("kopete"));
+ KLocale *kl = KGlobal::locale(); //KLocale(TQString::fromLatin1("kopete"));
mLanguages.insert(0 , "");
mLanguages.insert(1 , kl->twoAlphaToLanguageName("ar") /*i18n("Arabic")*/);
@@ -660,19 +660,19 @@ void ICQProtocol::initInterests()
}
-void ICQProtocol::fillComboFromTable(QComboBox *box, const QMap<int, QString> &map)
+void ICQProtocol::fillComboFromTable(TQComboBox *box, const TQMap<int, TQString> &map)
{
// kdDebug(14153) << k_funcinfo << "Called." << endl;
- QStringList list = map.values();
+ TQStringList list = map.values();
list.sort();
box->insertStringList(list);
}
-void ICQProtocol::setComboFromTable(QComboBox *box, const QMap<int, QString> &map, int value)
+void ICQProtocol::setComboFromTable(TQComboBox *box, const TQMap<int, TQString> &map, int value)
{
// kdDebug(14153) << k_funcinfo << "Called." << endl;
- QMap<int, QString>::ConstIterator it;
+ TQMap<int, TQString>::ConstIterator it;
it = map.find(value);
if (!(*it))
return;
@@ -687,11 +687,11 @@ void ICQProtocol::setComboFromTable(QComboBox *box, const QMap<int, QString> &ma
}
}
-int ICQProtocol::getCodeForCombo(QComboBox *cmb, const QMap<int, QString> &map)
+int ICQProtocol::getCodeForCombo(TQComboBox *cmb, const TQMap<int, TQString> &map)
{
- const QString curText = cmb->currentText();
+ const TQString curText = cmb->currentText();
- QMap<int, QString>::ConstIterator it;
+ TQMap<int, TQString>::ConstIterator it;
for(it = map.begin(); it != map.end(); ++it)
{
if(it.data() == curText)
@@ -701,10 +701,10 @@ int ICQProtocol::getCodeForCombo(QComboBox *cmb, const QMap<int, QString> &map)
}
#if 0
-void ICQProtocol::fillTZCombo(QComboBox *combo)
+void ICQProtocol::fillTZCombo(TQComboBox *combo)
{
- QTime time(12, 0);
- QTime done(0, 0);
+ TQTime time(12, 0);
+ TQTime done(0, 0);
while(time > done)
{
@@ -713,8 +713,8 @@ void ICQProtocol::fillTZCombo(QComboBox *combo)
time = time.addSecs(-30 * 60);
}
- time = QTime(0, 0);
- done = QTime(12, 0);
+ time = TQTime(0, 0);
+ done = TQTime(12, 0);
while(time <= done)
{
@@ -724,7 +724,7 @@ void ICQProtocol::fillTZCombo(QComboBox *combo)
}
}
-void ICQProtocol::setTZComboValue(QComboBox *combo, const char &tz)
+void ICQProtocol::setTZComboValue(TQComboBox *combo, const char &tz)
{
kdDebug(14153) << k_funcinfo << "tz=" << int(tz) << endl;
if ((tz < -24) || (tz > 24))
@@ -733,7 +733,7 @@ void ICQProtocol::setTZComboValue(QComboBox *combo, const char &tz)
combo->setCurrentItem(24 + tz);
}
-char ICQProtocol::getTZComboValue(QComboBox *combo)
+char ICQProtocol::getTZComboValue(TQComboBox *combo)
{
char ret = combo->currentItem() - 24;
// kdDebug(14153) << k_funcinfo << "return value=" << int(ret) << endl;
@@ -752,11 +752,11 @@ bool ICQProtocol::canSendOffline() const
}
Kopete::Contact *ICQProtocol::deserializeContact( Kopete::MetaContact *metaContact,
- const QMap<QString, QString> &serializedData,
- const QMap<QString, QString> &/*addressBookData*/ )
+ const TQMap<TQString, TQString> &serializedData,
+ const TQMap<TQString, TQString> &/*addressBookData*/ )
{
- QString accountId = serializedData["accountId"];
- QDict<Kopete::Account> accounts = Kopete::AccountManager::self()->accounts(this);
+ TQString accountId = serializedData["accountId"];
+ TQDict<Kopete::Account> accounts = Kopete::AccountManager::self()->accounts(this);
ICQAccount *account = static_cast<ICQAccount*>(accounts[accountId]);
if(!account)
@@ -766,16 +766,16 @@ Kopete::Contact *ICQProtocol::deserializeContact( Kopete::MetaContact *metaConta
return 0;
}
- QString contactId=serializedData["contactId"];
+ TQString contactId=serializedData["contactId"];
uint ssiGid = 0, ssiBid = 0, ssiType = 0xFFFF;
- QString ssiName;
+ TQString ssiName;
bool ssiWaitingAuth = false;
if ( serializedData.contains( "ssi_name" ) )
ssiName = serializedData["ssi_name"];
if ( serializedData.contains( "ssi_waitingAuth" ) )
{
- QString authStatus = serializedData["ssi_waitingAuth"];
+ TQString authStatus = serializedData["ssi_waitingAuth"];
if ( authStatus == "true" )
ssiWaitingAuth = true;
}
@@ -787,23 +787,23 @@ Kopete::Contact *ICQProtocol::deserializeContact( Kopete::MetaContact *metaConta
if ( serializedData.contains( "ssi_type" ) )
ssiType = serializedData["ssi_type"].toUInt();
- Oscar::SSI item( ssiName, ssiGid, ssiBid, ssiType, QValueList<TLV>(), 0 );
+ Oscar::SSI item( ssiName, ssiGid, ssiBid, ssiType, TQValueList<TLV>(), 0 );
item.setWaitingAuth( ssiWaitingAuth );
- ICQContact *c = new ICQContact( account, contactId, metaContact, QString::null, item );
+ ICQContact *c = new ICQContact( account, contactId, metaContact, TQString::null, item );
return c;
}
-AddContactPage *ICQProtocol::createAddContactWidget(QWidget *parent, Kopete::Account *account)
+AddContactPage *ICQProtocol::createAddContactWidget(TQWidget *parent, Kopete::Account *account)
{
return new ICQAddContactPage( static_cast<ICQAccount*>( account ), parent);
}
-KopeteEditAccountWidget *ICQProtocol::createEditAccountWidget(Kopete::Account *account, QWidget *parent)
+KopeteEditAccountWidget *ICQProtocol::createEditAccountWidget(Kopete::Account *account, TQWidget *parent)
{
return new ICQEditAccountWidget(this, account, parent);
}
-Kopete::Account *ICQProtocol::createNewAccount(const QString &accountId)
+Kopete::Account *ICQProtocol::createNewAccount(const TQString &accountId)
{
return new ICQAccount(this, accountId);
}
diff --git a/kopete/protocols/oscar/icq/icqprotocol.h b/kopete/protocols/oscar/icq/icqprotocol.h
index 8e3c1be9..96b2e201 100644
--- a/kopete/protocols/oscar/icq/icqprotocol.h
+++ b/kopete/protocols/oscar/icq/icqprotocol.h
@@ -31,7 +31,7 @@ class ICQProtocolHandler : public Kopete::MimeTypeHandler
{
public:
ICQProtocolHandler();
- void handleURL(const QString &mimeType, const KURL & url) const;
+ void handleURL(const TQString &mimeType, const KURL & url) const;
};
@@ -40,7 +40,7 @@ class ICQProtocol : public Kopete::Protocol
Q_OBJECT
public:
- ICQProtocol(QObject *parent, const char *name, const QStringList &args);
+ ICQProtocol(TQObject *parent, const char *name, const TQStringList &args);
virtual ~ICQProtocol();
/**
@@ -51,11 +51,11 @@ public:
virtual bool canSendOffline() const;
virtual Kopete::Contact *deserializeContact( Kopete::MetaContact *metaContact,
- const QMap<QString, QString> &serializedData,
- const QMap<QString, QString> &addressBookData );
- AddContactPage *createAddContactWidget(QWidget *parent, Kopete::Account *account);
- KopeteEditAccountWidget *createEditAccountWidget(Kopete::Account *account, QWidget *parent);
- Kopete::Account *createNewAccount(const QString &accountId);
+ const TQMap<TQString, TQString> &serializedData,
+ const TQMap<TQString, TQString> &addressBookData );
+ AddContactPage *createAddContactWidget(TQWidget *parent, Kopete::Account *account);
+ KopeteEditAccountWidget *createEditAccountWidget(Kopete::Account *account, TQWidget *parent);
+ Kopete::Account *createNewAccount(const TQString &accountId);
ICQ::OnlineStatusManager *statusManager();
@@ -69,19 +69,19 @@ public:
const Kopete::ContactPropertyTmpl buddyIconHash;
const Kopete::ContactPropertyTmpl contactEncoding;
- const QMap<int, QString> &genders() { return mGenders; }
- const QMap<int, QString> &countries() { return mCountries; }
- const QMap<int, QString> &languages() { return mLanguages; }
- const QMap<int, QString> &encodings() { return mEncodings; }
- const QMap<int, QString> &maritals() { return mMarital; }
- const QMap<int, QString> &interests() { return mInterests; }
+ const TQMap<int, TQString> &genders() { return mGenders; }
+ const TQMap<int, TQString> &countries() { return mCountries; }
+ const TQMap<int, TQString> &languages() { return mLanguages; }
+ const TQMap<int, TQString> &encodings() { return mEncodings; }
+ const TQMap<int, TQString> &maritals() { return mMarital; }
+ const TQMap<int, TQString> &interests() { return mInterests; }
- void fillComboFromTable( QComboBox*, const QMap<int, QString>& );
- void setComboFromTable( QComboBox*, const QMap<int, QString>&, int );
- int getCodeForCombo( QComboBox*, const QMap<int, QString>& );
- /* void fillTZCombo(QComboBox *combo);
- void setTZComboValue(QComboBox *combo, const char &tz);
- char getTZComboValue(QComboBox *combo); */
+ void fillComboFromTable( TQComboBox*, const TQMap<int, TQString>& );
+ void setComboFromTable( TQComboBox*, const TQMap<int, TQString>&, int );
+ int getCodeForCombo( TQComboBox*, const TQMap<int, TQString>& );
+ /* void fillTZCombo(TQComboBox *combo);
+ void setTZComboValue(TQComboBox *combo, const char &tz);
+ char getTZComboValue(TQComboBox *combo); */
private:
void initGenders();
@@ -94,12 +94,12 @@ private:
private:
static ICQProtocol* protocolStatic_;
ICQ::OnlineStatusManager* statusManager_;
- QMap<int, QString> mGenders;
- QMap<int, QString> mCountries;
- QMap<int, QString> mLanguages;
- QMap<int, QString> mEncodings;
- QMap<int, QString> mMarital;
- QMap<int, QString> mInterests;
+ TQMap<int, TQString> mGenders;
+ TQMap<int, TQString> mCountries;
+ TQMap<int, TQString> mLanguages;
+ TQMap<int, TQString> mEncodings;
+ TQMap<int, TQString> mMarital;
+ TQMap<int, TQString> mInterests;
ICQProtocolHandler protohandler;
};
#endif
diff --git a/kopete/protocols/oscar/icq/icqreadaway.cpp b/kopete/protocols/oscar/icq/icqreadaway.cpp
index 94cccafd..28b86d33 100644
--- a/kopete/protocols/oscar/icq/icqreadaway.cpp
+++ b/kopete/protocols/oscar/icq/icqreadaway.cpp
@@ -20,7 +20,7 @@
#include "icqaccount.h"
#include "icqcontact.h"
-#include <qvbox.h>
+#include <tqvbox.h>
#include <ktextbrowser.h>
#include <klocale.h>
@@ -29,8 +29,8 @@
#include <assert.h>
-ICQReadAway::ICQReadAway(ICQContact *c, QWidget *parent, const char* name)
- : KDialogBase(parent, name, false, QString::null, Close | User1,
+ICQReadAway::ICQReadAway(ICQContact *c, TQWidget *parent, const char* name)
+ : KDialogBase(parent, name, false, TQString::null, Close | User1,
Close, false, i18n("&Fetch Again"))
{
assert(c);
@@ -39,27 +39,27 @@ ICQReadAway::ICQReadAway(ICQContact *c, QWidget *parent, const char* name)
mContact = c;
setCaption(i18n("'%2' Message for %1").arg(c->displayName()).arg(c->onlineStatus().description()));
- QVBox *mMainWidget = makeVBoxMainWidget();
+ TQVBox *mMainWidget = makeVBoxMainWidget();
awayMessageBrowser = new KTextBrowser(mMainWidget, "userInfoView");
awayMessageBrowser->setTextFormat(AutoText);
awayMessageBrowser->setNotifyClick(true);
awayMessageBrowser->setText(mContact->awayMessage());
- QObject::connect(
- awayMessageBrowser, SIGNAL(urlClick(const QString&)),
- this, SLOT(slotUrlClicked(const QString&)));
- QObject::connect(
- awayMessageBrowser, SIGNAL(mailClick(const QString&, const QString&)),
- this, SLOT(slotMailClicked(const QString&, const QString&)));
+ TQObject::connect(
+ awayMessageBrowser, TQT_SIGNAL(urlClick(const TQString&)),
+ this, TQT_SLOT(slotUrlClicked(const TQString&)));
+ TQObject::connect(
+ awayMessageBrowser, TQT_SIGNAL(mailClick(const TQString&, const TQString&)),
+ this, TQT_SLOT(slotMailClicked(const TQString&, const TQString&)));
- connect(this, SIGNAL(user1Clicked()),
- this, SLOT(slotFetchAwayMessage()));
- connect(this, SIGNAL(closeClicked()),
- this, SLOT(slotCloseClicked()));
+ connect(this, TQT_SIGNAL(user1Clicked()),
+ this, TQT_SLOT(slotFetchAwayMessage()));
+ connect(this, TQT_SIGNAL(closeClicked()),
+ this, TQT_SLOT(slotCloseClicked()));
- connect(c, SIGNAL(awayMessageChanged()),
- this, SLOT(slotAwayMessageChanged()));
+ connect(c, TQT_SIGNAL(awayMessageChanged()),
+ this, TQT_SLOT(slotAwayMessageChanged()));
slotFetchAwayMessage();
}
@@ -92,12 +92,12 @@ void ICQReadAway::slotCloseClicked()
emit closing();
}
-void ICQReadAway::slotUrlClicked(const QString &url)
+void ICQReadAway::slotUrlClicked(const TQString &url)
{
new KRun(KURL(url));
}
-void ICQReadAway::slotMailClicked(const QString&, const QString &address)
+void ICQReadAway::slotMailClicked(const TQString&, const TQString &address)
{
new KRun(KURL(address));
}
diff --git a/kopete/protocols/oscar/icq/icqreadaway.h b/kopete/protocols/oscar/icq/icqreadaway.h
index 7e62588e..81981257 100644
--- a/kopete/protocols/oscar/icq/icqreadaway.h
+++ b/kopete/protocols/oscar/icq/icqreadaway.h
@@ -30,14 +30,14 @@ class ICQReadAway : public KDialogBase
Q_OBJECT
public:
- ICQReadAway(ICQContact *, QWidget *parent = 0, const char* name = "ICQReadAway");
+ ICQReadAway(ICQContact *, TQWidget *parent = 0, const char* name = "ICQReadAway");
private slots:
void slotFetchAwayMessage();
void slotAwayMessageChanged();
void slotCloseClicked();
- void slotUrlClicked(const QString &url);
- void slotMailClicked(const QString&, const QString &address);
+ void slotUrlClicked(const TQString &url);
+ void slotMailClicked(const TQString&, const TQString &address);
signals:
void closing();
@@ -45,7 +45,7 @@ class ICQReadAway : public KDialogBase
private:
ICQAccount *mAccount;
ICQContact *mContact;
- QVBox *mMainWidget;
+ TQVBox *mMainWidget;
KTextBrowser *awayMessageBrowser;
};
#endif
diff --git a/kopete/protocols/oscar/icq/ui/icqaddcontactpage.cpp b/kopete/protocols/oscar/icq/ui/icqaddcontactpage.cpp
index b1ab2eb4..3461ed8f 100644
--- a/kopete/protocols/oscar/icq/ui/icqaddcontactpage.cpp
+++ b/kopete/protocols/oscar/icq/ui/icqaddcontactpage.cpp
@@ -18,13 +18,13 @@
#include <ctype.h>
-#include <qlayout.h>
-#include <qpushbutton.h>
-#include <qcombobox.h>
-#include <qcheckbox.h>
-#include <qlineedit.h>
-#include <qtabwidget.h>
-#include <qlabel.h>
+#include <tqlayout.h>
+#include <tqpushbutton.h>
+#include <tqcombobox.h>
+#include <tqcheckbox.h>
+#include <tqlineedit.h>
+#include <tqtabwidget.h>
+#include <tqlabel.h>
#include <kdebug.h>
#include <kiconloader.h>
@@ -39,28 +39,28 @@
#include "icqsearchdialog.h"
-ICQAddContactPage::ICQAddContactPage(ICQAccount *owner, QWidget *parent, const char *name)
+ICQAddContactPage::ICQAddContactPage(ICQAccount *owner, TQWidget *parent, const char *name)
: AddContactPage(parent,name)
{
kdDebug(14153) << k_funcinfo << "called" << endl;
mAccount = owner;
m_searchDialog = 0L;
- (new QVBoxLayout(this))->setAutoAdd(true);
+ (new TQVBoxLayout(this))->setAutoAdd(true);
addUI = new icqAddUI(this);
- connect( addUI->searchButton, SIGNAL( clicked() ), this, SLOT( showSearchDialog() ) );
+ connect( addUI->searchButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( showSearchDialog() ) );
}
ICQAddContactPage::~ICQAddContactPage()
{
}
-void ICQAddContactPage::setUINFromSearch( const QString& uin )
+void ICQAddContactPage::setUINFromSearch( const TQString& uin )
{
addUI->uinEdit->setText( uin );
}
-void ICQAddContactPage::showEvent(QShowEvent *e)
+void ICQAddContactPage::showEvent(TQShowEvent *e)
{
// slotSelectionChanged();
AddContactPage::showEvent(e);
@@ -70,7 +70,7 @@ bool ICQAddContactPage::apply(Kopete::Account* , Kopete::MetaContact *parentCont
{
kdDebug(14153) << k_funcinfo << "called; adding contact..." << endl;
- QString contactId = addUI->uinEdit->text();
+ TQString contactId = addUI->uinEdit->text();
kdDebug(14153) << k_funcinfo << "uin=" << contactId << endl;
return mAccount->addContact(contactId, parentContact, Kopete::Account::ChangeKABC );
@@ -109,13 +109,13 @@ void ICQAddContactPage::showSearchDialog()
{
m_searchDialog = new ICQSearchDialog( mAccount, this, "icqSearchDialog" );
m_searchDialog->show();
- connect( m_searchDialog, SIGNAL( finished() ), this, SLOT( searchDialogDestroyed() ) );
+ connect( m_searchDialog, TQT_SIGNAL( finished() ), this, TQT_SLOT( searchDialogDestroyed() ) );
}
}
void ICQAddContactPage::searchDialogDestroyed()
{
- QObject::disconnect( this, 0, m_searchDialog, 0 );
+ TQObject::disconnect( this, 0, m_searchDialog, 0 );
m_searchDialog->delayedDestruct();
m_searchDialog = NULL;
}
diff --git a/kopete/protocols/oscar/icq/ui/icqaddcontactpage.h b/kopete/protocols/oscar/icq/ui/icqaddcontactpage.h
index e9285b79..c6c22eb2 100644
--- a/kopete/protocols/oscar/icq/ui/icqaddcontactpage.h
+++ b/kopete/protocols/oscar/icq/ui/icqaddcontactpage.h
@@ -18,7 +18,7 @@
#ifndef ICQADDCONTACTPAGE_H
#define ICQADDCONTACTPAGE_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include <addcontactpage.h>
/**
@@ -34,16 +34,16 @@ class ICQAddContactPage : public AddContactPage
Q_OBJECT
public:
- ICQAddContactPage(ICQAccount *owner, QWidget *parent = 0, const char *name = 0);
+ ICQAddContactPage(ICQAccount *owner, TQWidget *parent = 0, const char *name = 0);
~ICQAddContactPage();
virtual bool validateData();
virtual bool apply(Kopete::Account* , Kopete::MetaContact *parentContact);
- void setUINFromSearch( const QString& );
+ void setUINFromSearch( const TQString& );
protected:
- void showEvent(QShowEvent *e);
+ void showEvent(TQShowEvent *e);
private slots:
void showSearchDialog();
diff --git a/kopete/protocols/oscar/icq/ui/icqauthreplydialog.cpp b/kopete/protocols/oscar/icq/ui/icqauthreplydialog.cpp
index 76b56fba..a92b33de 100644
--- a/kopete/protocols/oscar/icq/ui/icqauthreplydialog.cpp
+++ b/kopete/protocols/oscar/icq/ui/icqauthreplydialog.cpp
@@ -20,11 +20,11 @@
#include <klocale.h>
-#include <qlabel.h>
-#include <qradiobutton.h>
-#include <qlineedit.h>
+#include <tqlabel.h>
+#include <tqradiobutton.h>
+#include <tqlineedit.h>
-ICQAuthReplyDialog::ICQAuthReplyDialog( QWidget *parent, const char *name, bool wasRequested )
+ICQAuthReplyDialog::ICQAuthReplyDialog( TQWidget *parent, const char *name, bool wasRequested )
: KDialogBase( parent, name, true, i18n( "Authorization Reply" ), KDialogBase::Ok | KDialogBase::Cancel )
{
m_ui = new ICQAuthReplyUI( this );
@@ -46,7 +46,7 @@ ICQAuthReplyDialog::~ICQAuthReplyDialog()
{
}
-void ICQAuthReplyDialog::setUser( const QString & user )
+void ICQAuthReplyDialog::setUser( const TQString & user )
{
if ( m_wasRequested )
m_ui->lblUserReq->setText(
@@ -55,12 +55,12 @@ void ICQAuthReplyDialog::setUser( const QString & user )
m_ui->lblUserReq->setText( i18n( "Authorization reply to <b>%1</b>." ).arg( user ) );
}
-void ICQAuthReplyDialog::setRequestReason( const QString & reason )
+void ICQAuthReplyDialog::setRequestReason( const TQString & reason )
{
m_ui->lblRequestReason->setText( reason );
}
-QString ICQAuthReplyDialog::reason()
+TQString ICQAuthReplyDialog::reason()
{
return m_ui->leReason->text();
}
diff --git a/kopete/protocols/oscar/icq/ui/icqauthreplydialog.h b/kopete/protocols/oscar/icq/ui/icqauthreplydialog.h
index da27b241..f32d4569 100644
--- a/kopete/protocols/oscar/icq/ui/icqauthreplydialog.h
+++ b/kopete/protocols/oscar/icq/ui/icqauthreplydialog.h
@@ -30,12 +30,12 @@ class ICQAuthReplyDialog : public KDialogBase
{
Q_OBJECT
public:
- ICQAuthReplyDialog(QWidget *parent = 0, const char *name = 0, bool wasRequested = true);
+ ICQAuthReplyDialog(TQWidget *parent = 0, const char *name = 0, bool wasRequested = true);
~ICQAuthReplyDialog();
- void setUser( const QString& user );
- void setRequestReason( const QString& reason );
- QString reason();
+ void setUser( const TQString& user );
+ void setRequestReason( const TQString& reason );
+ TQString reason();
bool grantAuth();
private:
bool m_wasRequested;
diff --git a/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp b/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
index e4b308be..04a312a4 100644
--- a/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
+++ b/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.cpp
@@ -17,13 +17,13 @@
#include "icqeditaccountwidget.h"
#include "icqeditaccountui.h"
-#include <qlayout.h>
-#include <qcheckbox.h>
-#include <qcombobox.h>
-#include <qlineedit.h>
-#include <qtextedit.h>
-#include <qspinbox.h>
-#include <qpushbutton.h>
+#include <tqlayout.h>
+#include <tqcheckbox.h>
+#include <tqcombobox.h>
+#include <tqlineedit.h>
+#include <tqtextedit.h>
+#include <tqspinbox.h>
+#include <tqpushbutton.h>
#include <kconfig.h>
#include <kdebug.h>
@@ -44,15 +44,15 @@
#include "icqcontact.h"
ICQEditAccountWidget::ICQEditAccountWidget(ICQProtocol *protocol,
- Kopete::Account *account, QWidget *parent, const char *name)
- : QWidget(parent, name), KopeteEditAccountWidget(account)
+ Kopete::Account *account, TQWidget *parent, const char *name)
+ : TQWidget(parent, name), KopeteEditAccountWidget(account)
{
kdDebug(14153) << k_funcinfo << "Called." << endl;
mAccount=dynamic_cast<ICQAccount*>(account);
mProtocol=protocol;
- (new QVBoxLayout(this))->setAutoAdd(true);
+ (new TQVBoxLayout(this))->setAutoAdd(true);
mAccountSettings = new ICQEditAccountUI( this );
mProtocol->fillComboFromTable( mAccountSettings->encodingCombo, mProtocol->encodings() );
@@ -67,7 +67,7 @@ ICQEditAccountWidget::ICQEditAccountWidget(ICQProtocol *protocol,
mAccountSettings->mPasswordWidget->load(&mAccount->password());
mAccountSettings->chkAutoLogin->setChecked(mAccount->excludeConnect());
- QString serverEntry = mAccount->configGroup()->readEntry("Server", "login.oscar.aol.com");
+ TQString serverEntry = mAccount->configGroup()->readEntry("Server", "login.oscar.aol.com");
int portEntry = mAccount->configGroup()->readNumEntry("Port", 5190);
if ( serverEntry != "login.oscar.aol.com" || ( portEntry != 5190) )
mAccountSettings->optionOverrideServer->setChecked( true );
@@ -99,12 +99,12 @@ ICQEditAccountWidget::ICQEditAccountWidget(ICQProtocol *protocol,
4 );
}
- QObject::connect(mAccountSettings->buttonRegister, SIGNAL(clicked()), this, SLOT(slotOpenRegister()));
+ TQObject::connect(mAccountSettings->buttonRegister, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotOpenRegister()));
/* Set tab order to password custom widget correctly */
- QWidget::setTabOrder( mAccountSettings->edtAccountId, mAccountSettings->mPasswordWidget->mRemembered );
- QWidget::setTabOrder( mAccountSettings->mPasswordWidget->mRemembered, mAccountSettings->mPasswordWidget->mPassword );
- QWidget::setTabOrder( mAccountSettings->mPasswordWidget->mPassword, mAccountSettings->chkAutoLogin );
+ TQWidget::setTabOrder( mAccountSettings->edtAccountId, mAccountSettings->mPasswordWidget->mRemembered );
+ TQWidget::setTabOrder( mAccountSettings->mPasswordWidget->mRemembered, mAccountSettings->mPasswordWidget->mPassword );
+ TQWidget::setTabOrder( mAccountSettings->mPasswordWidget->mPassword, mAccountSettings->chkAutoLogin );
}
@@ -158,7 +158,7 @@ bool ICQEditAccountWidget::validateData()
{
kdDebug(14153) << k_funcinfo << "Called." << endl;
- QString userName = mAccountSettings->edtAccountId->text();
+ TQString userName = mAccountSettings->edtAccountId->text();
if (userName.isEmpty())
return false;
diff --git a/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.h b/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.h
index fc5c6d38..4bc1a52b 100644
--- a/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.h
+++ b/kopete/protocols/oscar/icq/ui/icqeditaccountwidget.h
@@ -18,8 +18,8 @@
#ifndef ICQEDITACCOUNTWIDGET_H
#define ICQEDITACCOUNTWIDGET_H
-#include <qwidget.h>
-#include <qdatetime.h>
+#include <tqwidget.h>
+#include <tqdatetime.h>
#include "editaccountwidget.h"
namespace Kopete { class Account; }
@@ -28,13 +28,13 @@ class ICQAccount;
class ICQProtocol;
class ICQEditAccountUI;
-class ICQEditAccountWidget : public QWidget, public KopeteEditAccountWidget
+class ICQEditAccountWidget : public TQWidget, public KopeteEditAccountWidget
{
Q_OBJECT
public:
ICQEditAccountWidget(ICQProtocol *, Kopete::Account *,
- QWidget *parent=0, const char *name=0);
+ TQWidget *parent=0, const char *name=0);
virtual bool validateData();
virtual Kopete::Account *apply();
diff --git a/kopete/protocols/oscar/icq/ui/icqsearchdialog.cpp b/kopete/protocols/oscar/icq/ui/icqsearchdialog.cpp
index 0010166a..e52e707f 100644
--- a/kopete/protocols/oscar/icq/ui/icqsearchdialog.cpp
+++ b/kopete/protocols/oscar/icq/ui/icqsearchdialog.cpp
@@ -18,12 +18,12 @@
#include "icqsearchdialog.h"
-#include <qlineedit.h>
-#include <qcheckbox.h>
-#include <qcombobox.h>
-#include <qlayout.h>
-#include <qtextcodec.h>
-#include <qtabwidget.h>
+#include <tqlineedit.h>
+#include <tqcheckbox.h>
+#include <tqcombobox.h>
+#include <tqlayout.h>
+#include <tqtextcodec.h>
+#include <tqtabwidget.h>
#include <kdebug.h>
#include <kiconloader.h>
#include <klistview.h>
@@ -41,20 +41,20 @@
#include "icqcontact.h"
#include "icquserinfowidget.h"
-ICQSearchDialog::ICQSearchDialog( ICQAccount* account, QWidget* parent, const char* name )
+ICQSearchDialog::ICQSearchDialog( ICQAccount* account, TQWidget* parent, const char* name )
: KDialogBase( parent, name, true, i18n( "ICQ User Search" ), 0, NoDefault )
{
m_account = account;
m_searchUI = new ICQSearchBase( this, name );
setMainWidget( m_searchUI );
- connect( m_searchUI->searchButton, SIGNAL( clicked() ), this, SLOT( startSearch() ) );
- connect( m_searchUI->searchResults, SIGNAL( selectionChanged() ), this, SLOT( resultSelectionChanged() ) );
- connect( m_searchUI->addButton, SIGNAL( clicked() ), this, SLOT( addContact() ) );
- connect( m_searchUI->clearButton, SIGNAL( clicked() ), this, SLOT( clearResults() ) );
- connect( m_searchUI->stopButton, SIGNAL( clicked() ), this, SLOT( stopSearch() ) );
- connect( m_searchUI->closeButton, SIGNAL( clicked() ), this, SLOT( closeDialog() ) );
- connect( m_searchUI->userInfoButton, SIGNAL( clicked() ), this, SLOT( userInfo() ) );
- connect( m_searchUI->newSearchButton, SIGNAL( clicked() ), this, SLOT( newSearch() ) );
+ connect( m_searchUI->searchButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( startSearch() ) );
+ connect( m_searchUI->searchResults, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( resultSelectionChanged() ) );
+ connect( m_searchUI->addButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( addContact() ) );
+ connect( m_searchUI->clearButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( clearResults() ) );
+ connect( m_searchUI->stopButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( stopSearch() ) );
+ connect( m_searchUI->closeButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( closeDialog() ) );
+ connect( m_searchUI->userInfoButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( userInfo() ) );
+ connect( m_searchUI->newSearchButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( newSearch() ) );
ICQProtocol *p = ICQProtocol::protocol();
p->fillComboFromTable( m_searchUI->gender, p->genders() );
@@ -91,12 +91,12 @@ void ICQSearchDialog::startSearch()
m_searchUI->searchButton->setEnabled( false );
m_searchUI->newSearchButton->setEnabled( false );
- connect( m_account->engine(), SIGNAL( gotSearchResults( const ICQSearchResult& ) ),
- this, SLOT( newResult( const ICQSearchResult& ) ) );
- connect( m_account->engine(), SIGNAL( endOfSearch( int ) ),
- this, SLOT( searchFinished( int ) ) );
+ connect( m_account->engine(), TQT_SIGNAL( gotSearchResults( const ICQSearchResult& ) ),
+ this, TQT_SLOT( newResult( const ICQSearchResult& ) ) );
+ connect( m_account->engine(), TQT_SIGNAL( endOfSearch( int ) ),
+ this, TQT_SLOT( searchFinished( int ) ) );
- const QWidget* currentPage = m_searchUI->tabWidget3->currentPage();
+ const TQWidget* currentPage = m_searchUI->tabWidget3->currentPage();
if ( currentPage == m_searchUI->tab )
{
@@ -119,7 +119,7 @@ void ICQSearchDialog::startSearch()
//create a ICQWPSearchInfo struct and send it
ICQProtocol* p = ICQProtocol::protocol();
ICQWPSearchInfo info;
- QTextCodec* codec = m_account->defaultCodec();
+ TQTextCodec* codec = m_account->defaultCodec();
info.firstName = codec->fromUnicode( m_searchUI->firstName->text() );
info.lastName = codec->fromUnicode( m_searchUI->lastName->text() );
info.nickName = codec->fromUnicode( m_searchUI->nickName->text() );
@@ -159,10 +159,10 @@ void ICQSearchDialog::startSearch()
void ICQSearchDialog::stopSearch()
{
- disconnect( m_account->engine(), SIGNAL( gotSearchResults( const ICQSearchResult& ) ),
- this, SLOT( newResult( const ICQSearchResult& ) ) );
- disconnect( m_account->engine(), SIGNAL( endOfSearch( int ) ),
- this, SLOT( searchFinished( int ) ) );
+ disconnect( m_account->engine(), TQT_SIGNAL( gotSearchResults( const ICQSearchResult& ) ),
+ this, TQT_SLOT( newResult( const ICQSearchResult& ) ) );
+ disconnect( m_account->engine(), TQT_SIGNAL( endOfSearch( int ) ),
+ this, TQT_SLOT( searchFinished( int ) ) );
m_searchUI->stopButton->setEnabled( false );
m_searchUI->searchButton->setEnabled( true );
@@ -178,7 +178,7 @@ void ICQSearchDialog::addContact()
}
else
{
- QString uin = m_searchUI->searchResults->selectedItem()->text( 0 );
+ TQString uin = m_searchUI->searchResults->selectedItem()->text( 0 );
kdDebug(OSCAR_ICQ_DEBUG) << k_funcinfo << "Passing " << uin << " back to the ACP" << endl;
iacp->setUINFromSearch( uin );
@@ -203,7 +203,7 @@ void ICQSearchDialog::userInfo()
NULL);
m_infoWidget = new ICQUserInfoWidget( Kopete::UI::Global::mainWidget(), "icq info" );
- QObject::connect( m_infoWidget, SIGNAL( finished() ), this, SLOT( closeUserInfo() ) );
+ TQObject::connect( m_infoWidget, TQT_SIGNAL( finished() ), this, TQT_SLOT( closeUserInfo() ) );
m_infoWidget->setContact( m_contact );
m_infoWidget->setModal(true);
@@ -217,7 +217,7 @@ void ICQSearchDialog::userInfo()
void ICQSearchDialog::closeUserInfo()
{
// Free the ICQUserInfoWidget
- QObject::disconnect( this, 0, m_infoWidget, 0 );
+ TQObject::disconnect( this, 0, m_infoWidget, 0 );
m_infoWidget->delayedDestruct();
m_infoWidget = NULL;
@@ -266,9 +266,9 @@ void ICQSearchDialog::newResult( const ICQSearchResult& info )
return;
}
- QTextCodec* codec = m_account->defaultCodec();
+ TQTextCodec* codec = m_account->defaultCodec();
- QListViewItem *item = new QListViewItem( m_searchUI->searchResults, QString::number( info.uin ),
+ TQListViewItem *item = new TQListViewItem( m_searchUI->searchResults, TQString::number( info.uin ),
codec->toUnicode( info.nickName ),
codec->toUnicode( info.firstName ),
codec->toUnicode( info.lastName ),
@@ -296,13 +296,13 @@ void ICQSearchDialog::searchFinished( int numLeft )
void ICQSearchDialog::clearFields()
{
- m_searchUI->uin->setText( QString::null );
+ m_searchUI->uin->setText( TQString::null );
- m_searchUI->firstName->setText( QString::null );
- m_searchUI->lastName->setText( QString::null );
- m_searchUI->nickName->setText( QString::null );
- m_searchUI->email->setText( QString::null );
- m_searchUI->city->setText( QString::null );
+ m_searchUI->firstName->setText( TQString::null );
+ m_searchUI->lastName->setText( TQString::null );
+ m_searchUI->nickName->setText( TQString::null );
+ m_searchUI->email->setText( TQString::null );
+ m_searchUI->city->setText( TQString::null );
m_searchUI->gender->setCurrentItem( 0 ); // Unspecified
m_searchUI->country->setCurrentItem( 0 );
m_searchUI->language->setCurrentItem( 0 );
diff --git a/kopete/protocols/oscar/icq/ui/icqsearchdialog.h b/kopete/protocols/oscar/icq/ui/icqsearchdialog.h
index b14aa2a1..aca61ee7 100644
--- a/kopete/protocols/oscar/icq/ui/icqsearchdialog.h
+++ b/kopete/protocols/oscar/icq/ui/icqsearchdialog.h
@@ -33,7 +33,7 @@ class ICQSearchDialog : public KDialogBase
{
Q_OBJECT
public:
- ICQSearchDialog( ICQAccount* account, QWidget* parent = 0, const char* name = 0 );
+ ICQSearchDialog( ICQAccount* account, TQWidget* parent = 0, const char* name = 0 );
~ICQSearchDialog();
private slots:
diff --git a/kopete/protocols/oscar/icq/ui/icquserinfowidget.cpp b/kopete/protocols/oscar/icq/ui/icquserinfowidget.cpp
index 3830e05f..44fd5afd 100644
--- a/kopete/protocols/oscar/icq/ui/icquserinfowidget.cpp
+++ b/kopete/protocols/oscar/icq/ui/icquserinfowidget.cpp
@@ -18,12 +18,12 @@
#include "icquserinfowidget.h"
-#include <qlayout.h>
-#include <qlineedit.h>
-#include <qspinbox.h>
-#include <qcombobox.h>
-#include <qobject.h>
-#include <qtextcodec.h>
+#include <tqlayout.h>
+#include <tqlineedit.h>
+#include <tqspinbox.h>
+#include <tqcombobox.h>
+#include <tqobject.h>
+#include <tqtextcodec.h>
#include <kdatewidget.h>
#include <kdebug.h>
@@ -40,36 +40,36 @@
#include "icqinterestinfowidget.h"
-ICQUserInfoWidget::ICQUserInfoWidget( QWidget * parent, const char * name )
+ICQUserInfoWidget::ICQUserInfoWidget( TQWidget * parent, const char * name )
: KDialogBase( KDialogBase::IconList, 0, parent, name, false, i18n( "ICQ User Information" ), Ok )
{
kdDebug(14153) << k_funcinfo << "Creating new icq user info widget" << endl;
- QFrame* genInfo = addPage( i18n( "General Info" ),
+ TQFrame* genInfo = addPage( i18n( "General Info" ),
i18n( "General ICQ Information" ),
- KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "identity" ), KIcon::Desktop ) );
- QVBoxLayout* genLayout = new QVBoxLayout( genInfo );
+ KGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "identity" ), KIcon::Desktop ) );
+ TQVBoxLayout* genLayout = new TQVBoxLayout( genInfo );
m_genInfoWidget = new ICQGeneralInfoWidget( genInfo, "Basic Information" );
genLayout->addWidget( m_genInfoWidget );
- QFrame* workInfo = addPage( i18n( "Work Info" ),
+ TQFrame* workInfo = addPage( i18n( "Work Info" ),
i18n( "Work Information" ),
- KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "attach" ), KIcon::Desktop ) );
- QVBoxLayout* workLayout = new QVBoxLayout( workInfo );
+ KGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "attach" ), KIcon::Desktop ) );
+ TQVBoxLayout* workLayout = new TQVBoxLayout( workInfo );
m_workInfoWidget = new ICQWorkInfoWidget( workInfo, "Work Information" );
workLayout->addWidget( m_workInfoWidget );
- QFrame* otherInfo = addPage( i18n( "Other Info" ),
+ TQFrame* otherInfo = addPage( i18n( "Other Info" ),
i18n( "Other ICQ Information" ),
- KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "email" ), KIcon::Desktop ) );
- QVBoxLayout* otherLayout = new QVBoxLayout( otherInfo );
+ KGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "email" ), KIcon::Desktop ) );
+ TQVBoxLayout* otherLayout = new TQVBoxLayout( otherInfo );
m_otherInfoWidget = new ICQOtherInfoWidget( otherInfo, "Other Information" );
otherLayout->addWidget( m_otherInfoWidget );
- QFrame* interestInfo = addPage( i18n( "Interest Info" ),
+ TQFrame* interestInfo = addPage( i18n( "Interest Info" ),
i18n( "Interest" ),
- KGlobal::iconLoader()->loadIcon( QString::fromLatin1( "email" ), KIcon::Desktop ) );
- QVBoxLayout* interestLayout = new QVBoxLayout( interestInfo );
+ KGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "email" ), KIcon::Desktop ) );
+ TQVBoxLayout* interestLayout = new TQVBoxLayout( interestInfo );
m_interestInfoWidget = new ICQInterestInfoWidget( interestInfo, "Other Information" );
interestLayout->addWidget( m_interestInfoWidget );
@@ -78,21 +78,21 @@ ICQUserInfoWidget::ICQUserInfoWidget( QWidget * parent, const char * name )
void ICQUserInfoWidget::setContact( ICQContact* contact )
{
m_contact = contact;
- QObject::connect( contact, SIGNAL( haveBasicInfo( const ICQGeneralUserInfo& ) ),
- this, SLOT( fillBasicInfo( const ICQGeneralUserInfo& ) ) );
- QObject::connect( contact, SIGNAL( haveWorkInfo( const ICQWorkUserInfo& ) ),
- this, SLOT( fillWorkInfo( const ICQWorkUserInfo& ) ) );
- QObject::connect( contact, SIGNAL( haveEmailInfo( const ICQEmailInfo& ) ),
- this, SLOT( fillEmailInfo( const ICQEmailInfo& ) ) );
- QObject::connect( contact, SIGNAL( haveMoreInfo( const ICQMoreUserInfo& ) ),
- this, SLOT( fillMoreInfo( const ICQMoreUserInfo& ) ) );
- QObject::connect( contact, SIGNAL( haveInterestInfo( const ICQInterestInfo& ) ),
- this, SLOT( fillInterestInfo( const ICQInterestInfo& ) ) );
+ TQObject::connect( contact, TQT_SIGNAL( haveBasicInfo( const ICQGeneralUserInfo& ) ),
+ this, TQT_SLOT( fillBasicInfo( const ICQGeneralUserInfo& ) ) );
+ TQObject::connect( contact, TQT_SIGNAL( haveWorkInfo( const ICQWorkUserInfo& ) ),
+ this, TQT_SLOT( fillWorkInfo( const ICQWorkUserInfo& ) ) );
+ TQObject::connect( contact, TQT_SIGNAL( haveEmailInfo( const ICQEmailInfo& ) ),
+ this, TQT_SLOT( fillEmailInfo( const ICQEmailInfo& ) ) );
+ TQObject::connect( contact, TQT_SIGNAL( haveMoreInfo( const ICQMoreUserInfo& ) ),
+ this, TQT_SLOT( fillMoreInfo( const ICQMoreUserInfo& ) ) );
+ TQObject::connect( contact, TQT_SIGNAL( haveInterestInfo( const ICQInterestInfo& ) ),
+ this, TQT_SLOT( fillInterestInfo( const ICQInterestInfo& ) ) );
}
void ICQUserInfoWidget::fillBasicInfo( const ICQGeneralUserInfo& ui )
{
- QTextCodec* codec = m_contact->contactCodec();
+ TQTextCodec* codec = m_contact->contactCodec();
m_genInfoWidget->uinEdit->setText( m_contact->contactId() );
m_genInfoWidget->nickNameEdit->setText( codec->toUnicode( ui.nickname ) );
m_genInfoWidget->fullNameEdit->setText( codec->toUnicode( ui.firstName ) + " " + codec->toUnicode( ui.lastName ) );
@@ -106,13 +106,13 @@ void ICQUserInfoWidget::fillBasicInfo( const ICQGeneralUserInfo& ui )
m_genInfoWidget->cellEdit->setText( codec->toUnicode( ui.cellNumber ) );
m_genInfoWidget->zipEdit->setText( codec->toUnicode( ui.zip ) );
- QString country = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.country];
+ TQString country = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.country];
m_genInfoWidget->countryEdit->setText( country );
}
void ICQUserInfoWidget::fillWorkInfo( const ICQWorkUserInfo& ui )
{
- QTextCodec* codec = m_contact->contactCodec();
+ TQTextCodec* codec = m_contact->contactCodec();
m_workInfoWidget->cityEdit->setText( codec->toUnicode( ui.city ) );
m_workInfoWidget->stateEdit->setText( codec->toUnicode( ui.state ) );
m_workInfoWidget->phoneEdit->setText( codec->toUnicode( ui.phone ) );
@@ -125,7 +125,7 @@ void ICQUserInfoWidget::fillWorkInfo( const ICQWorkUserInfo& ui )
m_workInfoWidget->homepageEdit->setText( codec->toUnicode( ui.homepage ) );
ICQProtocol* p = static_cast<ICQProtocol*>( m_contact->protocol() );
- QString country = p->countries()[ui.country];
+ TQString country = p->countries()[ui.country];
m_workInfoWidget->countryEdit->setText( country );
//TODO handle the occupation
@@ -137,24 +137,24 @@ void ICQUserInfoWidget::fillEmailInfo( const ICQEmailInfo& )
void ICQUserInfoWidget::fillInterestInfo( const ICQInterestInfo& info)
{
- QTextCodec* codec = m_contact->contactCodec();
+ TQTextCodec* codec = m_contact->contactCodec();
if (info.count>0) {
- QString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[0]];
+ TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[0]];
m_interestInfoWidget->topic1->setText( topic );
m_interestInfoWidget->desc1->setText( codec->toUnicode( info.descriptions[0] ) );
}
if (info.count>1) {
- QString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[1]];
+ TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[1]];
m_interestInfoWidget->topic2->setText( topic );
m_interestInfoWidget->desc2->setText( codec->toUnicode( info.descriptions[1] ) );
}
if (info.count>2) {
- QString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[2]];
+ TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[2]];
m_interestInfoWidget->topic3->setText( topic );
m_interestInfoWidget->desc3->setText( codec->toUnicode( info.descriptions[2] ) );
}
if (info.count>3) {
- QString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[3]];
+ TQString topic = static_cast<ICQProtocol*>( m_contact->protocol() )->interests()[info.topics[3]];
m_interestInfoWidget->topic4->setText( topic );
m_interestInfoWidget->desc4->setText( codec->toUnicode( info.descriptions[3] ) );
}
@@ -162,22 +162,22 @@ void ICQUserInfoWidget::fillInterestInfo( const ICQInterestInfo& info)
void ICQUserInfoWidget::fillMoreInfo( const ICQMoreUserInfo& ui )
{
- QTextCodec* codec = m_contact->contactCodec();
+ TQTextCodec* codec = m_contact->contactCodec();
m_genInfoWidget->ageSpinBox->setValue( ui.age );
if ( ui.birthday.isValid() )
m_genInfoWidget->birthday->setText( KGlobal::locale()->formatDate( ui.birthday,true ) );
- QString gender = static_cast<ICQProtocol*>( m_contact->protocol() )->genders()[ui.gender];
+ TQString gender = static_cast<ICQProtocol*>( m_contact->protocol() )->genders()[ui.gender];
m_genInfoWidget->genderEdit->setText( gender );
m_genInfoWidget->homepageEdit->setText( codec->toUnicode( ui.homepage ) );
- QString ms = static_cast<ICQProtocol*>( m_contact->protocol() )->maritals()[ui.marital];
+ TQString ms = static_cast<ICQProtocol*>( m_contact->protocol() )->maritals()[ui.marital];
m_genInfoWidget->marital->setText( ms );
m_genInfoWidget->oCityEdit->setText( codec->toUnicode( ui.ocity) );
m_genInfoWidget->oStateEdit->setText( codec->toUnicode( ui.ostate) );
- QString ocountry = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.ocountry];
+ TQString ocountry = static_cast<ICQProtocol*>( m_contact->protocol() )->countries()[ui.ocountry];
m_genInfoWidget->oCountryEdit->setText( ocountry );
//TODO languages
diff --git a/kopete/protocols/oscar/icq/ui/icquserinfowidget.h b/kopete/protocols/oscar/icq/ui/icquserinfowidget.h
index ef478e59..ac4048ab 100644
--- a/kopete/protocols/oscar/icq/ui/icquserinfowidget.h
+++ b/kopete/protocols/oscar/icq/ui/icquserinfowidget.h
@@ -33,7 +33,7 @@ class ICQUserInfoWidget : public KDialogBase
{
Q_OBJECT
public:
- ICQUserInfoWidget( QWidget* parent = 0, const char* name = 0 );
+ ICQUserInfoWidget( TQWidget* parent = 0, const char* name = 0 );
void setContact( ICQContact* contact );
public slots: