summaryrefslogtreecommitdiffstats
path: root/korn/imap_proto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/imap_proto.cpp')
-rw-r--r--korn/imap_proto.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/korn/imap_proto.cpp b/korn/imap_proto.cpp
index d0be6436..caedb459 100644
--- a/korn/imap_proto.cpp
+++ b/korn/imap_proto.cpp
@@ -21,61 +21,61 @@
#include "account_input.h"
-#include <qwidget.h>
-#include <qobject.h>
-#include <qstringlist.h>
-#include <qptrvector.h>
-#include <qptrlist.h>
+#include <tqwidget.h>
+#include <tqobject.h>
+#include <tqstringlist.h>
+#include <tqptrvector.h>
+#include <tqptrlist.h>
-void Imap_Protocol::configFillGroupBoxes( QStringList* groupBoxes ) const
+void Imap_Protocol::configFillGroupBoxes( TQStringList* groupBoxes ) const
{
groupBoxes->append( "Server" );
groupBoxes->append( "Identity" );
}
-void Imap_Protocol::configFields( QPtrVector< QWidget >* vector, const QObject* configDialog, QPtrList< AccountInput > * result ) const
+void Imap_Protocol::configFields( TQPtrVector< TQWidget >* vector, const TQObject* configDialog, TQPtrList< AccountInput > * result ) const
{
- QMap< QString, QString > encrList;
+ TQMap< TQString, TQString > encrList;
encrList.insert( "ssl", i18n( "SSL" ) );
encrList.insert( "tls=auto", i18n( "TLS if possible" ) );
encrList.insert( "tls=on", i18n( "Always TLS" ) );
encrList.insert( "tls=off", i18n( "Never TLS" ) );
- QMap< QString, QString > authList;
+ TQMap< TQString, TQString > authList;
authList.insert( "auth=*", i18n( "Default" ) );
authList.insert( "auth=LOGIN", i18n( "LOGIN" ) ); //Note: LOGIN is an authentication method
authList.insert( "auth=ANONTMOUS", i18n( "Anonymous" ) ); //Note: ANONYMOUS is an authentication method
authList.insert( "auth=CRAM-MD5", i18n( "CRAM-MD5" ) ); //Note: CRAM-MD5 is an authentication method
- result->append( new TextInput( (QWidget*)vector->at( 0 ), i18n( "Server" ), TextInput::text, "", "server" ) );
- result->append( new TextInput( (QWidget*)vector->at( 0 ), i18n( "Port" ), 0, 65535, "143", "port" ) );
- result->append( new ComboInput( (QWidget*)vector->at( 0 ), i18n( "Encryption" ), encrList, "tls=auto", "encryption" ) );
- QObject::connect( (QObject*)result->last()->rightWidget(), SIGNAL( activated( int) ),
- configDialog, SLOT( slotSSLChanged() ) );
+ result->append( new TextInput( (TQWidget*)vector->at( 0 ), i18n( "Server" ), TextInput::text, "", "server" ) );
+ result->append( new TextInput( (TQWidget*)vector->at( 0 ), i18n( "Port" ), 0, 65535, "143", "port" ) );
+ result->append( new ComboInput( (TQWidget*)vector->at( 0 ), i18n( "Encryption" ), encrList, "tls=auto", "encryption" ) );
+ TQObject::connect( (TQObject*)result->last()->rightWidget(), TQT_SIGNAL( activated( int) ),
+ configDialog, TQT_SLOT( slotSSLChanged() ) );
- result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Username" ), TextInput::text, "", "username" ) );
- result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Mailbox" ), TextInput::text, "INBOX", "mailbox" ) );
- result->append( new TextInput( (QWidget*)vector->at( 1 ), i18n( "Password" ), TextInput::password, "", "password" ) );
- result->append( new CheckboxInput( (QWidget*)vector->at( 1 ), i18n( "Save password" ), "true", "savepassword" ) );
- QObject::connect( (QObject*)result->last()->rightWidget(), SIGNAL( toggled( bool ) ),
- (QObject*)result->prev()->rightWidget(), SLOT( setEnabled( bool ) ) );
+ result->append( new TextInput( (TQWidget*)vector->at( 1 ), i18n( "Username" ), TextInput::text, "", "username" ) );
+ result->append( new TextInput( (TQWidget*)vector->at( 1 ), i18n( "Mailbox" ), TextInput::text, "INBOX", "mailbox" ) );
+ result->append( new TextInput( (TQWidget*)vector->at( 1 ), i18n( "Password" ), TextInput::password, "", "password" ) );
+ result->append( new CheckboxInput( (TQWidget*)vector->at( 1 ), i18n( "Save password" ), "true", "savepassword" ) );
+ TQObject::connect( (TQObject*)result->last()->rightWidget(), TQT_SIGNAL( toggled( bool ) ),
+ (TQObject*)result->prev()->rightWidget(), TQT_SLOT( setEnabled( bool ) ) );
result->last()->setValue( "false" );
- result->append( new ComboInput( (QWidget*)vector->at( 1 ), i18n( "Authentication" ), authList, "auth=*", "auth" ) );
+ result->append( new ComboInput( (TQWidget*)vector->at( 1 ), i18n( "Authentication" ), authList, "auth=*", "auth" ) );
}
-void Imap_Protocol::readEntries( QMap< QString, QString >* map, QMap< QString, QString > *metadata ) const
+void Imap_Protocol::readEntries( TQMap< TQString, TQString >* map, TQMap< TQString, TQString > *metadata ) const
{
if( map->contains( "ssl" ) && *map->find( "ssl" ) == "true" )
map->insert( "encryption", "ssl" );
if( metadata->contains( "tls" ) )
- map->insert( "encryption", QString( "tls=%1" ).arg( *metadata->find( "tls" ) ) );
+ map->insert( "encryption", TQString( "tls=%1" ).arg( *metadata->find( "tls" ) ) );
if( metadata->contains( "auth" ) )
- map->insert( "auth", QString( "auth=%1" ).arg( *metadata->find( "auth" ) ) );
+ map->insert( "auth", TQString( "auth=%1" ).arg( *metadata->find( "auth" ) ) );
}
-void Imap_Protocol::writeEntries( QMap< QString, QString >* map ) const
+void Imap_Protocol::writeEntries( TQMap< TQString, TQString >* map ) const
{
- QString metadata;
+ TQString metadata;
if( map->contains( "encryption" ) )
{
if( *map->find( "encryption" ) == "ssl" )