summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/config/appearance
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/config/appearance')
-rw-r--r--kopete/kopete/config/appearance/appearanceconfig.cpp290
-rw-r--r--kopete/kopete/config/appearance/appearanceconfig.h8
-rw-r--r--kopete/kopete/config/appearance/emoticonseditdialog.cpp102
-rw-r--r--kopete/kopete/config/appearance/emoticonseditdialog.h28
-rw-r--r--kopete/kopete/config/appearance/tooltipeditdialog.cpp72
-rw-r--r--kopete/kopete/config/appearance/tooltipeditdialog.h8
6 files changed, 254 insertions, 254 deletions
diff --git a/kopete/kopete/config/appearance/appearanceconfig.cpp b/kopete/kopete/config/appearance/appearanceconfig.cpp
index d83b0801..2f7a5eaf 100644
--- a/kopete/kopete/config/appearance/appearanceconfig.cpp
+++ b/kopete/kopete/config/appearance/appearanceconfig.cpp
@@ -29,13 +29,13 @@
#include "tooltipeditdialog.h"
#include "emoticonseditdialog.h"
-#include <qcheckbox.h>
-#include <qdir.h>
-#include <qlayout.h>
-#include <qhbuttongroup.h>
-#include <qspinbox.h>
-#include <qslider.h>
-#include <qlabel.h>
+#include <tqcheckbox.h>
+#include <tqdir.h>
+#include <tqlayout.h>
+#include <tqhbuttongroup.h>
+#include <tqspinbox.h>
+#include <tqslider.h>
+#include <tqlabel.h>
#include <kdeversion.h>
#include <kinputdialog.h>
@@ -84,9 +84,9 @@
#include "kopeteemoticons.h"
#include "kopeteglobal.h"
-#include <qtabwidget.h>
+#include <tqtabwidget.h>
-typedef KGenericFactory<AppearanceConfig, QWidget> KopeteAppearanceConfigFactory;
+typedef KGenericFactory<AppearanceConfig, TQWidget> KopeteAppearanceConfigFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_kopete_appearanceconfig, KopeteAppearanceConfigFactory( "kcm_kopete_appearanceconfig" ) )
class FakeProtocol;
@@ -102,7 +102,7 @@ public:
styleChanged(false)
{}
- QTabWidget *mAppearanceTabCtl;
+ TQTabWidget *mAppearanceTabCtl;
ChatMessagePart *preview;
AppearanceConfig_Emoticons *mPrfsEmoticons;
@@ -111,7 +111,7 @@ public:
AppearanceConfig_ContactList *mPrfsContactList;
// value is the style path
- QMap<QListBoxItem*,QString> styleItemMap;
+ TQMap<TQListBoxItem*,TQString> styleItemMap;
ChatWindowStyle::StyleVariants currentVariantMap;
ChatWindowStyle *currentStyle;
bool loading;
@@ -130,16 +130,16 @@ public:
class KopeteStyleNewStuff : public KNewStuff
{
public:
- KopeteStyleNewStuff(const QString &type, QWidget *parentWidget = 0)
+ KopeteStyleNewStuff(const TQString &type, TQWidget *parentWidget = 0)
: KNewStuff( type, parentWidget)
{}
- bool createUploadFile(const QString &)
+ bool createUploadFile(const TQString &)
{
return false;
}
- bool install(const QString &styleFilename)
+ bool install(const TQString &styleFilename)
{
int styleInstallReturn = 0;
styleInstallReturn = ChatWindowStyleManager::self()->installStyle( styleFilename );
@@ -179,59 +179,59 @@ public:
};
// TODO: Someday, this configuration dialog must(not should) use KConfigXT
-AppearanceConfig::AppearanceConfig(QWidget *parent, const char* /*name*/, const QStringList &args )
+AppearanceConfig::AppearanceConfig(TQWidget *parent, const char* /*name*/, const TQStringList &args )
: KCModule( KopeteAppearanceConfigFactory::instance(), parent, args )
{
d = new Private;
- (new QVBoxLayout(this))->setAutoAdd(true);
- d->mAppearanceTabCtl = new QTabWidget(this, "mAppearanceTabCtl");
+ (new TQVBoxLayout(this))->setAutoAdd(true);
+ d->mAppearanceTabCtl = new TQTabWidget(this, "mAppearanceTabCtl");
KConfig *config = KGlobal::config();
config->setGroup( "ChatWindowSettings" );
// "Emoticons" TAB ==========================================================
d->mPrfsEmoticons = new AppearanceConfig_Emoticons(d->mAppearanceTabCtl);
- connect(d->mPrfsEmoticons->chkUseEmoticons, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsEmoticons->chkRequireSpaces, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsEmoticons->icon_theme_list, SIGNAL(selectionChanged()),
- this, SLOT(slotSelectedEmoticonsThemeChanged()));
- connect(d->mPrfsEmoticons->btnInstallTheme, SIGNAL(clicked()),
- this, SLOT(installEmoticonTheme()));
-
- connect(d->mPrfsEmoticons->btnGetThemes, SIGNAL(clicked()),
- this, SLOT(slotGetEmoticonThemes()));
- connect(d->mPrfsEmoticons->btnRemoveTheme, SIGNAL(clicked()),
- this, SLOT(removeSelectedEmoticonTheme()));
- connect(d->mPrfsEmoticons->btnEditThemes, SIGNAL(clicked()),
- this, SLOT(editSelectedEmoticonTheme()));
+ connect(d->mPrfsEmoticons->chkUseEmoticons, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsEmoticons->chkRequireSpaces, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsEmoticons->icon_theme_list, TQT_SIGNAL(selectionChanged()),
+ this, TQT_SLOT(slotSelectedEmoticonsThemeChanged()));
+ connect(d->mPrfsEmoticons->btnInstallTheme, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(installEmoticonTheme()));
+
+ connect(d->mPrfsEmoticons->btnGetThemes, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(slotGetEmoticonThemes()));
+ connect(d->mPrfsEmoticons->btnRemoveTheme, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(removeSelectedEmoticonTheme()));
+ connect(d->mPrfsEmoticons->btnEditThemes, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(editSelectedEmoticonTheme()));
d->mAppearanceTabCtl->addTab(d->mPrfsEmoticons, i18n("&Emoticons"));
// "Chat Window" TAB ========================================================
d->mPrfsChatWindow = new AppearanceConfig_ChatWindow(d->mAppearanceTabCtl);
- connect(d->mPrfsChatWindow->styleList, SIGNAL(selectionChanged(QListBoxItem *)),
- this, SLOT(slotChatStyleSelected()));
- connect(d->mPrfsChatWindow->variantList, SIGNAL(activated(const QString&)),
- this, SLOT(slotChatStyleVariantSelected(const QString &)));
- connect(d->mPrfsChatWindow->deleteButton, SIGNAL(clicked()),
- this, SLOT(slotDeleteChatStyle()));
- connect(d->mPrfsChatWindow->installButton, SIGNAL(clicked()),
- this, SLOT(slotInstallChatStyle()));
- connect(d->mPrfsChatWindow->btnGetStyles, SIGNAL(clicked()),
- this, SLOT(slotGetChatStyles()));
- connect(d->mPrfsChatWindow->groupConsecutiveMessages, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
+ connect(d->mPrfsChatWindow->styleList, TQT_SIGNAL(selectionChanged(TQListBoxItem *)),
+ this, TQT_SLOT(slotChatStyleSelected()));
+ connect(d->mPrfsChatWindow->variantList, TQT_SIGNAL(activated(const TQString&)),
+ this, TQT_SLOT(slotChatStyleVariantSelected(const TQString &)));
+ connect(d->mPrfsChatWindow->deleteButton, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(slotDeleteChatStyle()));
+ connect(d->mPrfsChatWindow->installButton, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(slotInstallChatStyle()));
+ connect(d->mPrfsChatWindow->btnGetStyles, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(slotGetChatStyles()));
+ connect(d->mPrfsChatWindow->groupConsecutiveMessages, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
// Show the available styles when the Manager has finish to load the styles.
- connect(ChatWindowStyleManager::self(), SIGNAL(loadStylesFinished()), this, SLOT(slotLoadChatStyles()));
+ connect(ChatWindowStyleManager::self(), TQT_SIGNAL(loadStylesFinished()), this, TQT_SLOT(slotLoadChatStyles()));
- d->mPrfsChatWindow->htmlFrame->setFrameStyle(QFrame::WinPanel | QFrame::Sunken);
+ d->mPrfsChatWindow->htmlFrame->setFrameStyle(TQFrame::WinPanel | TQFrame::Sunken);
// Create the fake Chat Session
createPreviewChatSession();
- QVBoxLayout *l = new QVBoxLayout(d->mPrfsChatWindow->htmlFrame);
+ TQVBoxLayout *l = new TQVBoxLayout(d->mPrfsChatWindow->htmlFrame);
d->preview = new ChatMessagePart(d->previewChatSession, d->mPrfsChatWindow->htmlFrame, "preview");
d->preview->setJScriptEnabled(false);
d->preview->setJavaEnabled(false);
@@ -242,7 +242,7 @@ AppearanceConfig::AppearanceConfig(QWidget *parent, const char* /*name*/, const
htmlWidget->setMarginHeight(4);
htmlWidget->setFocusPolicy(NoFocus);
htmlWidget->setSizePolicy(
- QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
+ TQSizePolicy(TQSizePolicy::Expanding, TQSizePolicy::Expanding));
l->addWidget(htmlWidget);
// Add the preview message to the ChatMessagePart
createPreviewMessages();
@@ -251,28 +251,28 @@ AppearanceConfig::AppearanceConfig(QWidget *parent, const char* /*name*/, const
// "Contact List" TAB =======================================================
d->mPrfsContactList = new AppearanceConfig_ContactList(d->mAppearanceTabCtl);
- connect(d->mPrfsContactList->mTreeContactList, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mSortByGroup, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mEditTooltips, SIGNAL(clicked()),
- this, SLOT(slotEditTooltips()));
- connect(d->mPrfsContactList->mIndentContacts, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mDisplayMode, SIGNAL(clicked(int)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mIconMode, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mAnimateChanges, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mFadeVisibility, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mFoldVisibility, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mAutoHide, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsContactList->mAutoHideTimeout, SIGNAL(valueChanged(int)),
- this, SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mTreeContactList, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mSortByGroup, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mEditTooltips, TQT_SIGNAL(clicked()),
+ this, TQT_SLOT(slotEditTooltips()));
+ connect(d->mPrfsContactList->mIndentContacts, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mDisplayMode, TQT_SIGNAL(clicked(int)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mIconMode, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mAnimateChanges, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mFadeVisibility, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mFoldVisibility, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mAutoHide, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsContactList->mAutoHideTimeout, TQT_SIGNAL(valueChanged(int)),
+ this, TQT_SLOT(emitChanged()));
// don't enable the checkbox if XRender is not available
#ifdef HAVE_XRENDER
@@ -285,37 +285,37 @@ AppearanceConfig::AppearanceConfig(QWidget *parent, const char* /*name*/, const
// "Colors and Fonts" TAB ===================================================
d->mPrfsColors = new AppearanceConfig_Colors(d->mAppearanceTabCtl);
- connect(d->mPrfsColors->foregroundColor, SIGNAL(changed(const QColor &)),
- this, SLOT(slotHighlightChanged()));
- connect(d->mPrfsColors->backgroundColor, SIGNAL(changed(const QColor &)),
- this, SLOT(slotHighlightChanged()));
- connect(d->mPrfsColors->fontFace, SIGNAL(fontSelected(const QFont &)),
- this, SLOT(slotChangeFont()));
- connect(d->mPrfsColors->textColor, SIGNAL(changed(const QColor &)),
- this, SLOT(slotUpdateChatPreview()));
- connect(d->mPrfsColors->bgColor, SIGNAL(changed(const QColor &)),
- this, SLOT(slotUpdateChatPreview()));
- connect(d->mPrfsColors->linkColor, SIGNAL(changed(const QColor &)),
- this, SLOT(slotUpdateChatPreview()));
- connect(d->mPrfsColors->mGreyIdleMetaContacts, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->idleContactColor, SIGNAL(changed(const QColor &)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->mUseCustomFonts, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->mSmallFont, SIGNAL(fontSelected(const QFont &)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->mNormalFont, SIGNAL(fontSelected(const QFont &)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->mGroupNameColor, SIGNAL(changed(const QColor &)),
- this, SLOT(emitChanged()));
-
- connect(d->mPrfsColors->mBgOverride, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->mFgOverride, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
- connect(d->mPrfsColors->mRtfOverride, SIGNAL(toggled(bool)),
- this, SLOT(emitChanged()));
+ connect(d->mPrfsColors->foregroundColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(slotHighlightChanged()));
+ connect(d->mPrfsColors->backgroundColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(slotHighlightChanged()));
+ connect(d->mPrfsColors->fontFace, TQT_SIGNAL(fontSelected(const TQFont &)),
+ this, TQT_SLOT(slotChangeFont()));
+ connect(d->mPrfsColors->textColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(slotUpdateChatPreview()));
+ connect(d->mPrfsColors->bgColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(slotUpdateChatPreview()));
+ connect(d->mPrfsColors->linkColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(slotUpdateChatPreview()));
+ connect(d->mPrfsColors->mGreyIdleMetaContacts, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->idleContactColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->mUseCustomFonts, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->mSmallFont, TQT_SIGNAL(fontSelected(const TQFont &)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->mNormalFont, TQT_SIGNAL(fontSelected(const TQFont &)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->mGroupNameColor, TQT_SIGNAL(changed(const TQColor &)),
+ this, TQT_SLOT(emitChanged()));
+
+ connect(d->mPrfsColors->mBgOverride, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->mFgOverride, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
+ connect(d->mPrfsColors->mRtfOverride, TQT_SIGNAL(toggled(bool)),
+ this, TQT_SLOT(emitChanged()));
d->mAppearanceTabCtl->addTab(d->mPrfsColors, i18n("Colors && Fonts"));
@@ -331,8 +331,8 @@ AppearanceConfig::~AppearanceConfig()
void AppearanceConfig::updateEmoticonsButton(bool _b)
{
- QString themeName = d->mPrfsEmoticons->icon_theme_list->currentText();
- QFileInfo fileInf(KGlobal::dirs()->findResource("emoticons", themeName+"/"));
+ TQString themeName = d->mPrfsEmoticons->icon_theme_list->currentText();
+ TQFileInfo fileInf(KGlobal::dirs()->findResource("emoticons", themeName+"/"));
d->mPrfsEmoticons->btnRemoveTheme->setEnabled( _b && fileInf.isWritable());
d->mPrfsEmoticons->btnGetThemes->setEnabled( false );
}
@@ -499,28 +499,28 @@ void AppearanceConfig::updateEmoticonlist()
d->mPrfsEmoticons->icon_theme_list->clear(); // Wipe out old list
// Get a list of directories in our icon theme dir
- QStringList themeDirs = KGlobal::dirs()->findDirs("emoticons", "");
+ TQStringList themeDirs = KGlobal::dirs()->findDirs("emoticons", "");
// loop adding themes from all dirs into theme-list
for(unsigned int x = 0;x < themeDirs.count();x++)
{
- QDir themeQDir(themeDirs[x]);
- themeQDir.setFilter( QDir::Dirs ); // only scan for subdirs
- themeQDir.setSorting( QDir::Name ); // I guess name is as good as any
+ TQDir themeQDir(themeDirs[x]);
+ themeQDir.setFilter( TQDir::Dirs ); // only scan for subdirs
+ themeQDir.setSorting( TQDir::Name ); // I guess name is as good as any
for(unsigned int y = 0; y < themeQDir.count(); y++)
{
- QStringList themes = themeQDir.entryList(QDir::Dirs, QDir::Name);
+ TQStringList themes = themeQDir.entryList(TQDir::Dirs, TQDir::Name);
// We don't care for '.' and '..'
if ( themeQDir[y] != "." && themeQDir[y] != ".." )
{
// Add ourselves to the list, using our directory name FIXME: use the first emoticon of the theme.
- QPixmap previewPixmap = QPixmap(locate("emoticons", themeQDir[y]+"/smile.png"));
+ TQPixmap previewPixmap = TQPixmap(locate("emoticons", themeQDir[y]+"/smile.png"));
d->mPrfsEmoticons->icon_theme_list->insertItem(previewPixmap,themeQDir[y]);
}
}
}
// Where is that theme in our big-list-o-themes?
- QListBoxItem *item = d->mPrfsEmoticons->icon_theme_list->findItem( p->iconTheme() );
+ TQListBoxItem *item = d->mPrfsEmoticons->icon_theme_list->findItem( p->iconTheme() );
if (item) // found it... make it the currently selected theme
d->mPrfsEmoticons->icon_theme_list->setCurrentItem( item );
@@ -530,18 +530,18 @@ void AppearanceConfig::updateEmoticonlist()
void AppearanceConfig::slotSelectedEmoticonsThemeChanged()
{
- QString themeName = d->mPrfsEmoticons->icon_theme_list->currentText();
- QFileInfo fileInf(KGlobal::dirs()->findResource("emoticons", themeName+"/"));
+ TQString themeName = d->mPrfsEmoticons->icon_theme_list->currentText();
+ TQFileInfo fileInf(KGlobal::dirs()->findResource("emoticons", themeName+"/"));
d->mPrfsEmoticons->btnRemoveTheme->setEnabled( fileInf.isWritable() );
Kopete::Emoticons emoticons( themeName );
- QStringList smileys = emoticons.emoticonAndPicList().keys();
- QString newContentText = "<qt>";
+ TQStringList smileys = emoticons.emoticonAndPicList().keys();
+ TQString newContentText = "<qt>";
- for(QStringList::Iterator it = smileys.begin(); it != smileys.end(); ++it )
- newContentText += QString::fromLatin1("<img src=\"%1\"> ").arg(*it);
+ for(TQStringList::Iterator it = smileys.begin(); it != smileys.end(); ++it )
+ newContentText += TQString::fromLatin1("<img src=\"%1\"> ").arg(*it);
- newContentText += QString::fromLatin1("</qt>");
+ newContentText += TQString::fromLatin1("</qt>");
d->mPrfsEmoticons->icon_theme_preview->setText(newContentText);
emitChanged();
}
@@ -563,7 +563,7 @@ void AppearanceConfig::slotChangeFont()
void AppearanceConfig::slotChatStyleSelected()
{
// Retrieve variant list.
- QString stylePath = d->styleItemMap[d->mPrfsChatWindow->styleList->selectedItem()];
+ TQString stylePath = d->styleItemMap[d->mPrfsChatWindow->styleList->selectedItem()];
d->currentStyle = ChatWindowStyleManager::self()->getStyleFromPool( stylePath );
if(d->currentStyle)
@@ -603,7 +603,7 @@ void AppearanceConfig::slotChatStyleSelected()
}
}
-void AppearanceConfig::slotChatStyleVariantSelected(const QString &variantName)
+void AppearanceConfig::slotChatStyleVariantSelected(const TQString &variantName)
{
// kdDebug(14000) << k_funcinfo << variantName << endl;
// kdDebug(14000) << k_funcinfo << d->currentVariantMap[variantName] << endl;
@@ -615,11 +615,11 @@ void AppearanceConfig::slotChatStyleVariantSelected(const QString &variantName)
void AppearanceConfig::slotInstallChatStyle()
{
- KURL styleToInstall = KFileDialog::getOpenURL( QString::null, QString::fromUtf8("application/x-zip application/x-tgz application/x-tbz"), this, i18n("Choose Chat Window style to install.") );
+ KURL styleToInstall = KFileDialog::getOpenURL( TQString::null, TQString::fromUtf8("application/x-zip application/x-tgz application/x-tbz"), this, i18n("Choose Chat Window style to install.") );
if( !styleToInstall.isEmpty() )
{
- QString stylePath;
+ TQString stylePath;
if( KIO::NetAccess::download( styleToInstall, stylePath, this ) )
{
int styleInstallReturn = 0;
@@ -660,14 +660,14 @@ void AppearanceConfig::slotInstallChatStyle()
void AppearanceConfig::slotDeleteChatStyle()
{
- QString styleName = d->mPrfsChatWindow->styleList->selectedItem()->text();
- QString stylePathToDelete = d->styleItemMap[d->mPrfsChatWindow->styleList->selectedItem()];
+ TQString styleName = d->mPrfsChatWindow->styleList->selectedItem()->text();
+ TQString stylePathToDelete = d->styleItemMap[d->mPrfsChatWindow->styleList->selectedItem()];
if( ChatWindowStyleManager::self()->removeStyle(stylePathToDelete) )
{
KMessageBox::queuedMessageBox(this, KMessageBox::Information, i18n("It's the deleted style name", "The style %1 was successfully deleted.").arg(styleName));
// Get the first item in the stye List.
- QString stylePath = (*d->styleItemMap.begin());
+ TQString stylePath = (*d->styleItemMap.begin());
d->currentStyle = ChatWindowStyleManager::self()->getStyleFromPool(stylePath);
emitChanged();
}
@@ -686,7 +686,7 @@ void AppearanceConfig::slotGetChatStyles()
downloadDialog->setType( "kopete/chatstyle" );
// you have to do this by hand when providing your own Engine
KNS::ProviderLoader *provider = new KNS::ProviderLoader( this );
- QObject::connect( provider, SIGNAL( providersLoaded(Provider::List*) ), downloadDialog, SLOT( slotProviders (Provider::List *) ) );
+ TQObject::connect( provider, TQT_SIGNAL( providersLoaded(Provider::List*) ), downloadDialog, TQT_SLOT( slotProviders (Provider::List *) ) );
provider->load( "kopete/chatstyle", "http://download.kde.org/khotnewstuff/kopetestyles12-providers.xml" );
downloadDialog->exec();
}
@@ -696,7 +696,7 @@ void AppearanceConfig::slotGetChatStyles()
class FakeContact : public Kopete::Contact
{
public:
- FakeContact (Kopete::Account *account, const QString &id, Kopete::MetaContact *mc ) : Kopete::Contact( account, id, mc ) {}
+ FakeContact (Kopete::Account *account, const TQString &id, Kopete::MetaContact *mc ) : Kopete::Contact( account, id, mc ) {}
virtual Kopete::ChatSession *manager(Kopete::Contact::CanCreateFlags /*c*/) { return 0L; }
virtual void slotUserInfo() {};
};
@@ -705,29 +705,29 @@ public:
class FakeProtocol : public Kopete::Protocol
{
public:
-FakeProtocol( KInstance *instance, QObject *parent, const char *name ) : Kopete::Protocol(instance, parent, name){}
-Kopete::Account* createNewAccount( const QString &/*accountId*/ ){return 0L;}
-AddContactPage* createAddContactWidget( QWidget */*parent*/, Kopete::Account */*account*/){return 0L;}
-KopeteEditAccountWidget* createEditAccountWidget( Kopete::Account */*account*/, QWidget */*parent */){return 0L;}
+FakeProtocol( KInstance *instance, TQObject *parent, const char *name ) : Kopete::Protocol(instance, parent, name){}
+Kopete::Account* createNewAccount( const TQString &/*accountId*/ ){return 0L;}
+AddContactPage* createAddContactWidget( TQWidget */*parent*/, Kopete::Account */*account*/){return 0L;}
+KopeteEditAccountWidget* createEditAccountWidget( Kopete::Account */*account*/, TQWidget */*parent */){return 0L;}
};
// This is for style preview.
class FakeAccount : public Kopete::Account
{
public:
-FakeAccount(Kopete::Protocol *parent, const QString &accountID, const char *name) : Kopete::Account(parent, accountID, name){}
+FakeAccount(Kopete::Protocol *parent, const TQString &accountID, const char *name) : Kopete::Account(parent, accountID, name){}
~FakeAccount()
{}
-bool createContact( const QString &/*contactId*/, Kopete::MetaContact */*parentContact*/ ){return true;}
+bool createContact( const TQString &/*contactId*/, Kopete::MetaContact */*parentContact*/ ){return true;}
void connect( const Kopete::OnlineStatus& /*initialStatus*/){}
void disconnect(){}
-void setOnlineStatus( const Kopete::OnlineStatus& /*status*/ , const QString &/*reason*/){}
+void setOnlineStatus( const Kopete::OnlineStatus& /*status*/ , const TQString &/*reason*/){}
};
void AppearanceConfig::createPreviewChatSession()
{
- d->previewProtocol = new FakeProtocol( new KInstance(QCString("kopete-preview-chatwindowstyle")), 0L, "kopete-preview-chatwindowstyle");
- d->previewAccount = new FakeAccount(d->previewProtocol, QString("previewaccount"), 0);
+ d->previewProtocol = new FakeProtocol( new KInstance(TQCString("kopete-preview-chatwindowstyle")), 0L, "kopete-preview-chatwindowstyle");
+ d->previewAccount = new FakeAccount(d->previewProtocol, TQString("previewaccount"), 0);
// Create fake meta/contacts
d->myselfMetaContact = new Kopete::MetaContact();
@@ -757,11 +757,11 @@ void AppearanceConfig::createPreviewMessages()
Kopete::Message msgOut2( d->myself, d->jack, i18n( "Ok, a outgoing consecutive message." ), Kopete::Message::Outbound );
Kopete::Message msgCol( d->jack, d->myself, i18n( "Here is an incoming colored message" ), Kopete::Message::Inbound );
- msgCol.setFg( QColor( "DodgerBlue" ) );
- msgCol.setBg( QColor( "LightSteelBlue" ) );
+ msgCol.setFg( TQColor( "DodgerBlue" ) );
+ msgCol.setBg( TQColor( "LightSteelBlue" ) );
Kopete::Message msgInt( d->jack, d->myself, i18n( "This is an internal message" ), Kopete::Message::Internal );
Kopete::Message msgAct( d->jack, d->myself, i18n( "performed an action" ), Kopete::Message::Inbound,
- Kopete::Message::PlainText, QString::null, Kopete::Message::TypeAction );
+ Kopete::Message::PlainText, TQString::null, Kopete::Message::TypeAction );
Kopete::Message msgHigh( d->jack, d->myself, i18n( "This is a highlighted message" ), Kopete::Message::Inbound );
msgHigh.setImportance( Kopete::Message::Highlight );
// This is a UTF-8 string btw.
@@ -801,7 +801,7 @@ void AppearanceConfig::emitChanged()
void AppearanceConfig::installEmoticonTheme()
{
- KURL themeURL = KURLRequesterDlg::getURL(QString::null, this,
+ KURL themeURL = KURLRequesterDlg::getURL(TQString::null, this,
i18n("Drag or Type Emoticon Theme URL"));
if ( themeURL.isEmpty() )
return;
@@ -820,13 +820,13 @@ void AppearanceConfig::installEmoticonTheme()
void AppearanceConfig::removeSelectedEmoticonTheme()
{
- QListBoxItem *selected = d->mPrfsEmoticons->icon_theme_list->selectedItem();
+ TQListBoxItem *selected = d->mPrfsEmoticons->icon_theme_list->selectedItem();
if(selected==0)
return;
- QString themeName = selected->text();
+ TQString themeName = selected->text();
- QString question=i18n("<qt>Are you sure you want to remove the "
+ TQString question=i18n("<qt>Are you sure you want to remove the "
"<strong>%1</strong> emoticon theme?<br>"
"<br>"
"This will delete the files installed by this theme.</qt>").
@@ -864,18 +864,18 @@ void AppearanceConfig::slotGetEmoticonThemes()
void AppearanceConfig::slotEditTooltips()
{
TooltipEditDialog *dlg = new TooltipEditDialog(this);
- connect(dlg, SIGNAL(changed(bool)), this, SIGNAL(changed(bool)));
+ connect(dlg, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool)));
dlg->exec();
delete dlg;
}
void AppearanceConfig::editSelectedEmoticonTheme()
{
- QListBoxItem *selected = d->mPrfsEmoticons->icon_theme_list->selectedItem();
+ TQListBoxItem *selected = d->mPrfsEmoticons->icon_theme_list->selectedItem();
if(selected==0)
return;
- QString themeName = selected->text();
+ TQString themeName = selected->text();
EmoticonsEditDialog *dlg = new EmoticonsEditDialog(this, themeName);
dlg->exec();
diff --git a/kopete/kopete/config/appearance/appearanceconfig.h b/kopete/kopete/config/appearance/appearanceconfig.h
index 747117c6..e380542d 100644
--- a/kopete/kopete/config/appearance/appearanceconfig.h
+++ b/kopete/kopete/config/appearance/appearanceconfig.h
@@ -20,8 +20,8 @@
#define __APPEARANCE_H
#include "kcmodule.h"
-#include <qptrlist.h>
-#include <qmap.h>
+#include <tqptrlist.h>
+#include <tqmap.h>
/**
* @author Duncan Mac-Vicar P. <duncan@kde.org>
@@ -34,7 +34,7 @@ class AppearanceConfig : public KCModule
friend class KopeteStyleNewStuff;
public:
- AppearanceConfig( QWidget *parent, const char *name, const QStringList &args );
+ AppearanceConfig( TQWidget *parent, const char *name, const TQStringList &args );
~AppearanceConfig();
virtual void save();
@@ -48,7 +48,7 @@ private slots:
void slotInstallChatStyle();
void slotDeleteChatStyle();
void slotChatStyleSelected();
- void slotChatStyleVariantSelected(const QString &variantName);
+ void slotChatStyleVariantSelected(const TQString &variantName);
void slotEditTooltips();
void emitChanged();
void installEmoticonTheme();
diff --git a/kopete/kopete/config/appearance/emoticonseditdialog.cpp b/kopete/kopete/config/appearance/emoticonseditdialog.cpp
index 21e12231..af62e4ff 100644
--- a/kopete/kopete/config/appearance/emoticonseditdialog.cpp
+++ b/kopete/kopete/config/appearance/emoticonseditdialog.cpp
@@ -25,19 +25,19 @@
#include <kstandarddirs.h>
#include <kfiledialog.h>
#include <kio/job.h>
-#include <qpixmap.h>
-#include <qheader.h>
-#include <qlayout.h>
-#include <qlabel.h>
+#include <tqpixmap.h>
+#include <tqheader.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
-EditDialog::EditDialog(QWidget *parent, const char* name)
+EditDialog::EditDialog(TQWidget *parent, const char* name)
: KDialogBase(parent, name, true, i18n(name), Ok|Cancel, Ok, true)
{
setupDlg();
}
-EditDialog::EditDialog(QWidget *parent, const char* name, QPixmap emot, QString text, QString file)
+EditDialog::EditDialog(TQWidget *parent, const char* name, TQPixmap emot, TQString text, TQString file)
: KDialogBase(parent, name, true, i18n(name), Ok|Cancel, Ok, true)
{
setupDlg();
@@ -48,19 +48,19 @@ EditDialog::EditDialog(QWidget *parent, const char* name, QPixmap emot, QString
void EditDialog::setupDlg()
{
- wdg = new QWidget(this);
- QVBoxLayout *vl = new QVBoxLayout(wdg, 11, 6);
- QHBoxLayout *hb = new QHBoxLayout(wdg, 0, 6);
+ wdg = new TQWidget(this);
+ TQVBoxLayout *vl = new TQVBoxLayout(wdg, 11, 6);
+ TQHBoxLayout *hb = new TQHBoxLayout(wdg, 0, 6);
leText = new KLineEdit(wdg);
btnIcon = new KPushButton(wdg);
- btnIcon->setFixedSize(QSize(64, 64));
+ btnIcon->setFixedSize(TQSize(64, 64));
- vl->addWidget(new QLabel(i18n("Insert the string for the emoticon\nseparated by space if you want multiple strings"), wdg));
+ vl->addWidget(new TQLabel(i18n("Insert the string for the emoticon\nseparated by space if you want multiple strings"), wdg));
hb->addWidget(btnIcon);
hb->addWidget(leText);
vl->addLayout(hb);
setMainWidget(wdg);
- connect(btnIcon, SIGNAL(clicked()), this, SLOT(btnIconClicked()));
+ connect(btnIcon, TQT_SIGNAL(clicked()), this, TQT_SLOT(btnIconClicked()));
}
void EditDialog::btnIconClicked()
@@ -75,17 +75,17 @@ void EditDialog::btnIconClicked()
if(emoticon.isEmpty())
return;
- btnIcon->setPixmap(QPixmap(emoticon));
+ btnIcon->setPixmap(TQPixmap(emoticon));
}
-EmoticonsEditDialog::EmoticonsEditDialog(QWidget *parent, QString theme, const char* name)
+EmoticonsEditDialog::EmoticonsEditDialog(TQWidget *parent, TQString theme, const char* name)
: KDialogBase(parent, name, true, i18n("Emoticons Editor"), Ok|Cancel, Ok, true)
{
themeName = theme;
mMainWidget = new EmoticonsEditWidget(this, "EmoticonsEditDialog::mMainWidget");
setMainWidget(mMainWidget);
- resize(QSize(450, 350));
+ resize(TQSize(450, 350));
mMainWidget->btnAdd->setGuiItem(KStdGuiItem::add());
mMainWidget->btnEdit->setText(i18n("Edit..."));
mMainWidget->btnRemove->setGuiItem(KStdGuiItem::remove());
@@ -96,22 +96,22 @@ EmoticonsEditDialog::EmoticonsEditDialog(QWidget *parent, QString theme, const c
mMainWidget->klvEmoticons->addColumn("File", 0);
mMainWidget->klvEmoticons->header()->hide();
Kopete::Emoticons emoticons( theme );
- QMap<QString, QStringList> smileys = emoticons.emoticonAndPicList();
+ TQMap<TQString, TQStringList> smileys = emoticons.emoticonAndPicList();
- for(QMap<QString, QStringList>::Iterator it = smileys.begin(); it != smileys.end(); ++it )
+ for(TQMap<TQString, TQStringList>::Iterator it = smileys.begin(); it != smileys.end(); ++it )
{
KListViewItem *itm = new KListViewItem(mMainWidget->klvEmoticons);
- itm->setPixmap(0, QPixmap(it.key()));
- itm->setText(2, QFileInfo(it.key()).baseName());
- QString text = *it.data().at(0);
+ itm->setPixmap(0, TQPixmap(it.key()));
+ itm->setText(2, TQFileInfo(it.key()).baseName());
+ TQString text = *it.data().at(0);
for(uint i = 1; i < it.data().size(); i++) {
text += " " + *it.data().at(i);
}
itm->setText(1, text);
}
- QFile *fp = new QFile(KGlobal::dirs()->saveLocation( "emoticons", themeName, false ) + "/emoticons.xml");
+ TQFile *fp = new TQFile(KGlobal::dirs()->saveLocation( "emoticons", themeName, false ) + "/emoticons.xml");
if( !fp->exists() ) {
kdWarning() << "EmoticonsEditDialog::EmoticonsEditDialog() " << fp->name() << " doesn't exist!" << endl;
@@ -131,18 +131,18 @@ EmoticonsEditDialog::EmoticonsEditDialog(QWidget *parent, QString theme, const c
fp->close();
- mMainWidget->klvEmoticons->setColumnWidth(0, QListView::Maximum);
- mMainWidget->klvEmoticons->setColumnWidth(1, QListView::Maximum);
+ mMainWidget->klvEmoticons->setColumnWidth(0, TQListView::Maximum);
+ mMainWidget->klvEmoticons->setColumnWidth(1, TQListView::Maximum);
- connect(this, SIGNAL(okClicked()), this, SLOT(slotOkClicked()));
- connect(mMainWidget->btnAdd, SIGNAL(clicked()), this, SLOT(slotAddClicked()));
- connect(mMainWidget->btnEdit, SIGNAL(clicked()), this, SLOT(slotEditClicked()));
- connect(mMainWidget->btnRemove, SIGNAL(clicked()), this, SLOT(slotRemoveClicked()));
+ connect(this, TQT_SIGNAL(okClicked()), this, TQT_SLOT(slotOkClicked()));
+ connect(mMainWidget->btnAdd, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAddClicked()));
+ connect(mMainWidget->btnEdit, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotEditClicked()));
+ connect(mMainWidget->btnRemove, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotRemoveClicked()));
}
void EmoticonsEditDialog::slotOkClicked()
{
- QFile *fp = new QFile(KGlobal::dirs()->saveLocation( "emoticons", themeName, false ) + "/emoticons.xml");
+ TQFile *fp = new TQFile(KGlobal::dirs()->saveLocation( "emoticons", themeName, false ) + "/emoticons.xml");
if( !fp->exists() ) {
kdWarning() << "EmoticonsEditDialog::slotOkClicked() " << fp->name() << " doesn't exist!" << endl;
@@ -154,7 +154,7 @@ void EmoticonsEditDialog::slotOkClicked()
return;
}
- QTextStream emoStream(fp);
+ TQTextStream emoStream(fp);
emoStream << themeXml.toString(4);
fp->close();
}
@@ -163,7 +163,7 @@ void EmoticonsEditDialog::slotAddClicked()
{
EditDialog *dlg = new EditDialog(this, "Add emoticon");
- if(dlg->exec() == QDialog::Rejected)
+ if(dlg->exec() == TQDialog::Rejected)
return;
if(dlg->getText().isEmpty() || !dlg->getEmoticon())
@@ -182,29 +182,29 @@ void EmoticonsEditDialog::slotEditClicked()
dlg = new EditDialog(this, "Edit emoticon", *mMainWidget->klvEmoticons->selectedItem()->pixmap(0), mMainWidget->klvEmoticons->selectedItem()->text(1), mMainWidget->klvEmoticons->selectedItem()->text(2));
- if(dlg->exec() == QDialog::Rejected)
+ if(dlg->exec() == TQDialog::Rejected)
return;
if(dlg->getText().isEmpty() || !dlg->getEmoticon())
return;
bool copy;
- QString emo = dlg->getEmoticon();
+ TQString emo = dlg->getEmoticon();
if(mMainWidget->klvEmoticons->selectedItem()->text(2) != dlg->getEmoticon()) {
copy = true;
} else {
copy = false;
- QString f = mMainWidget->klvEmoticons->selectedItem()->text(2);
+ TQString f = mMainWidget->klvEmoticons->selectedItem()->text(2);
KStandardDirs *dir = KGlobal::dirs();
- emo = dir->findResource( "emoticons", themeName + QString::fromLatin1( "/" ) + f );
+ emo = dir->findResource( "emoticons", themeName + TQString::fromLatin1( "/" ) + f );
if( emo.isNull() )
- emo = dir->findResource( "emoticons", themeName + QString::fromLatin1( "/" ) + f + QString::fromLatin1( ".mng" ) );
+ emo = dir->findResource( "emoticons", themeName + TQString::fromLatin1( "/" ) + f + TQString::fromLatin1( ".mng" ) );
if ( emo.isNull() )
- emo = dir->findResource( "emoticons", themeName + QString::fromLatin1( "/" ) + f + QString::fromLatin1( ".png" ) );
+ emo = dir->findResource( "emoticons", themeName + TQString::fromLatin1( "/" ) + f + TQString::fromLatin1( ".png" ) );
if ( emo.isNull() )
- emo = dir->findResource( "emoticons", themeName + QString::fromLatin1( "/" ) + f + QString::fromLatin1( ".gif" ) );
+ emo = dir->findResource( "emoticons", themeName + TQString::fromLatin1( "/" ) + f + TQString::fromLatin1( ".gif" ) );
if ( emo.isNull() )
return;
}
@@ -223,44 +223,44 @@ void EmoticonsEditDialog::slotRemoveClicked()
removeEmoticon(mMainWidget->klvEmoticons->selectedItem()->text(2));
}
-void EmoticonsEditDialog::addEmoticon(QString emo, QString text, bool copy)
+void EmoticonsEditDialog::addEmoticon(TQString emo, TQString text, bool copy)
{
if(copy)
KIO::copy(emo, KGlobal::dirs()->saveLocation( "emoticons", themeName, false ));
KListViewItem *itm = new KListViewItem(mMainWidget->klvEmoticons);
- itm->setPixmap(0, QPixmap(emo));
+ itm->setPixmap(0, TQPixmap(emo));
itm->setText(1, text);
- itm->setText(2, QFileInfo(emo).baseName());
+ itm->setText(2, TQFileInfo(emo).baseName());
- QDomNode lc = themeXml.lastChild();
+ TQDomNode lc = themeXml.lastChild();
if(lc.isNull())
return;
- QDomElement emoticon = themeXml.createElement("emoticon");
- emoticon.setAttribute("file", QFileInfo(emo).baseName());
+ TQDomElement emoticon = themeXml.createElement("emoticon");
+ emoticon.setAttribute("file", TQFileInfo(emo).baseName());
lc.appendChild(emoticon);
- QStringList splitted = QStringList::split(" ", text);
- QStringList::const_iterator constIterator;
+ TQStringList splitted = TQStringList::split(" ", text);
+ TQStringList::const_iterator constIterator;
for(constIterator = splitted.begin(); constIterator != splitted.end(); constIterator++)
{
- QDomElement emotext = themeXml.createElement("string");
- QDomText txt = themeXml.createTextNode((*constIterator).stripWhiteSpace());
+ TQDomElement emotext = themeXml.createElement("string");
+ TQDomText txt = themeXml.createTextNode((*constIterator).stripWhiteSpace());
emotext.appendChild(txt);
emoticon.appendChild(emotext);
}
}
-void EmoticonsEditDialog::removeEmoticon(QString emo)
+void EmoticonsEditDialog::removeEmoticon(TQString emo)
{
- QDomNode lc = themeXml.lastChild();
+ TQDomNode lc = themeXml.lastChild();
if(lc.isNull())
return;
- QDomNodeList nl = lc.childNodes();
+ TQDomNodeList nl = lc.childNodes();
for(uint i = 0; i < nl.length(); i++) {
- QDomElement de = nl.item(i).toElement();
+ TQDomElement de = nl.item(i).toElement();
if(!de.isNull() && de.tagName() == "emoticon" && de.attribute("file") == emo) {
lc.removeChild(de);
delete mMainWidget->klvEmoticons->selectedItem();
diff --git a/kopete/kopete/config/appearance/emoticonseditdialog.h b/kopete/kopete/config/appearance/emoticonseditdialog.h
index 4bbaccda..fe5b8426 100644
--- a/kopete/kopete/config/appearance/emoticonseditdialog.h
+++ b/kopete/kopete/config/appearance/emoticonseditdialog.h
@@ -17,12 +17,12 @@
#define EMOTICONSEDITDIALOG_H
#include <kdebug.h>
-#include <qhbox.h>
+#include <tqhbox.h>
#include <kdialogbase.h>
#include <klineedit.h>
#include <kpushbutton.h>
-#include <qfile.h>
-#include <qdom.h>
+#include <tqfile.h>
+#include <tqdom.h>
class EmoticonsEditWidget;
@@ -31,18 +31,18 @@ class EditDialog : public KDialogBase
Q_OBJECT
public:
- EditDialog(QWidget *parent, const char* name);
- EditDialog(QWidget *parent, const char* name, QPixmap emot, QString text, QString file);
- const QString getText() { return leText->text(); };
- const QString getEmoticon() { return emoticon; };
+ EditDialog(TQWidget *parent, const char* name);
+ EditDialog(TQWidget *parent, const char* name, TQPixmap emot, TQString text, TQString file);
+ const TQString getText() { return leText->text(); };
+ const TQString getEmoticon() { return emoticon; };
private slots:
void btnIconClicked();
private:
void setupDlg();
- QWidget *wdg;
+ TQWidget *wdg;
KLineEdit *leText;
KPushButton *btnIcon;
- QString emoticon;
+ TQString emoticon;
};
class EmoticonsEditDialog : public KDialogBase
@@ -50,8 +50,8 @@ class EmoticonsEditDialog : public KDialogBase
Q_OBJECT
public:
- EmoticonsEditDialog(QWidget *parent=0, QString theme = QString::null, const char* name="EmoticonsEditDialog");
- void addEmoticon(QString emo, QString text, bool copy);
+ EmoticonsEditDialog(TQWidget *parent=0, TQString theme = TQString::null, const char* name="EmoticonsEditDialog");
+ void addEmoticon(TQString emo, TQString text, bool copy);
private slots:
void slotOkClicked();
@@ -60,11 +60,11 @@ class EmoticonsEditDialog : public KDialogBase
void slotRemoveClicked();
private:
- void removeEmoticon(QString emo);
+ void removeEmoticon(TQString emo);
EmoticonsEditWidget *mMainWidget;
- QString themeName;
+ TQString themeName;
EditDialog *dlg;
- QDomDocument themeXml;
+ TQDomDocument themeXml;
};
#endif
diff --git a/kopete/kopete/config/appearance/tooltipeditdialog.cpp b/kopete/kopete/config/appearance/tooltipeditdialog.cpp
index c8ed8a5d..eef1ccb0 100644
--- a/kopete/kopete/config/appearance/tooltipeditdialog.cpp
+++ b/kopete/kopete/config/appearance/tooltipeditdialog.cpp
@@ -21,10 +21,10 @@
#include "kopeteglobal.h"
#include "kopeteprefs.h"
-#include <qapplication.h>
-#include <qtoolbutton.h>
-#include <qheader.h>
-#include <qstringlist.h>
+#include <tqapplication.h>
+#include <tqtoolbutton.h>
+#include <tqheader.h>
+#include <tqstringlist.h>
#include <kiconloader.h>
#include <klistview.h>
@@ -33,26 +33,26 @@
class TooltipItem : public KListViewItem
{
public:
- TooltipItem(KListView *parent, const QString& label, const QString& propertyName)
+ TooltipItem(KListView *parent, const TQString& label, const TQString& propertyName)
: KListViewItem(parent, label),
mPropName(propertyName)
{
}
- TooltipItem(KListView *parent, QListViewItem *item, const QString& label, const QString& propertyName)
+ TooltipItem(KListView *parent, TQListViewItem *item, const TQString& label, const TQString& propertyName)
: KListViewItem(parent, item, label),
mPropName(propertyName)
{
}
- QString propertyName() const { return mPropName; }
+ TQString propertyName() const { return mPropName; }
private:
- QString mPropName;
+ TQString mPropName;
};
-TooltipEditDialog::TooltipEditDialog(QWidget *parent, const char* name)
+TooltipEditDialog::TooltipEditDialog(TQWidget *parent, const char* name)
: KDialogBase(parent, name, true, i18n("Tooltip Editor"), Ok|Cancel, Ok, true)
{
mMainWidget = new TooltipEditWidget(this, "TooltipEditDialog::mMainWidget");
@@ -64,13 +64,13 @@ TooltipEditDialog::TooltipEditDialog(QWidget *parent, const char* name)
const Kopete::ContactPropertyTmpl::Map propmap(
Kopete::Global::Properties::self()->templateMap());
- QStringList usedKeys = KopetePrefs::prefs()->toolTipContents();
+ TQStringList usedKeys = KopetePrefs::prefs()->toolTipContents();
- connect(mMainWidget->lstUnusedItems, SIGNAL(doubleClicked ( QListViewItem *, const QPoint &, int )), this, SLOT(slotAddButton()));
- connect(mMainWidget->lstUsedItems, SIGNAL(doubleClicked ( QListViewItem *, const QPoint &, int )), this, SLOT(slotRemoveButton()));
+ connect(mMainWidget->lstUnusedItems, TQT_SIGNAL(doubleClicked ( TQListViewItem *, const TQPoint &, int )), this, TQT_SLOT(slotAddButton()));
+ connect(mMainWidget->lstUsedItems, TQT_SIGNAL(doubleClicked ( TQListViewItem *, const TQPoint &, int )), this, TQT_SLOT(slotRemoveButton()));
// first fill the "used" list
- QStringList::Iterator usedIt=usedKeys.end();
+ TQStringList::Iterator usedIt=usedKeys.end();
do
{
usedIt--;
@@ -91,45 +91,45 @@ TooltipEditDialog::TooltipEditDialog(QWidget *parent, const char* name)
new TooltipItem(mMainWidget->lstUnusedItems, it.data().label(), it.key());
}
- connect(mMainWidget->lstUnusedItems, SIGNAL(selectionChanged(QListViewItem *)),
- this, SLOT(slotUnusedSelected(QListViewItem *)));
- connect(mMainWidget->lstUsedItems, SIGNAL(selectionChanged(QListViewItem *)),
- this, SLOT(slotUsedSelected(QListViewItem *)));
+ connect(mMainWidget->lstUnusedItems, TQT_SIGNAL(selectionChanged(TQListViewItem *)),
+ this, TQT_SLOT(slotUnusedSelected(TQListViewItem *)));
+ connect(mMainWidget->lstUsedItems, TQT_SIGNAL(selectionChanged(TQListViewItem *)),
+ this, TQT_SLOT(slotUsedSelected(TQListViewItem *)));
- QIconSet iconSet;
+ TQIconSet iconSet;
iconSet = SmallIconSet("up");
mMainWidget->tbUp->setIconSet(iconSet);
mMainWidget->tbUp->setEnabled(false);
mMainWidget->tbUp->setAutoRepeat(true);
- connect(mMainWidget->tbUp, SIGNAL(clicked()), SLOT(slotUpButton()));
+ connect(mMainWidget->tbUp, TQT_SIGNAL(clicked()), TQT_SLOT(slotUpButton()));
iconSet = SmallIconSet("down");
mMainWidget->tbDown->setIconSet(iconSet);
mMainWidget->tbDown->setEnabled(false);
mMainWidget->tbDown->setAutoRepeat(true);
- connect(mMainWidget->tbDown, SIGNAL(clicked()), SLOT(slotDownButton()));
+ connect(mMainWidget->tbDown, TQT_SIGNAL(clicked()), TQT_SLOT(slotDownButton()));
- iconSet = QApplication::reverseLayout() ? SmallIconSet("back") : SmallIconSet("forward");
+ iconSet = TQApplication::reverseLayout() ? SmallIconSet("back") : SmallIconSet("forward");
mMainWidget->tbAdd->setIconSet(iconSet);
mMainWidget->tbAdd->setEnabled(false);
- connect(mMainWidget->tbAdd, SIGNAL(clicked()), SLOT(slotAddButton()));
+ connect(mMainWidget->tbAdd, TQT_SIGNAL(clicked()), TQT_SLOT(slotAddButton()));
- iconSet = QApplication::reverseLayout() ? SmallIconSet("forward") : SmallIconSet("back");
+ iconSet = TQApplication::reverseLayout() ? SmallIconSet("forward") : SmallIconSet("back");
mMainWidget->tbRemove->setIconSet(iconSet);
mMainWidget->tbRemove->setEnabled(false);
- connect(mMainWidget->tbRemove, SIGNAL(clicked()), SLOT(slotRemoveButton()));
+ connect(mMainWidget->tbRemove, TQT_SIGNAL(clicked()), TQT_SLOT(slotRemoveButton()));
- connect(this, SIGNAL(okClicked()), this, SLOT(slotOkClicked()));
+ connect(this, TQT_SIGNAL(okClicked()), this, TQT_SLOT(slotOkClicked()));
- resize(QSize(450, 450));
+ resize(TQSize(450, 450));
}
void TooltipEditDialog::slotOkClicked()
{
- QStringList oldList = KopetePrefs::prefs()->toolTipContents();
- QStringList newList;
- QListViewItemIterator it(mMainWidget->lstUsedItems);
- QString keyname;
+ TQStringList oldList = KopetePrefs::prefs()->toolTipContents();
+ TQStringList newList;
+ TQListViewItemIterator it(mMainWidget->lstUsedItems);
+ TQString keyname;
while(it.current())
{
@@ -149,13 +149,13 @@ void TooltipEditDialog::slotOkClicked()
}
-void TooltipEditDialog::slotUnusedSelected(QListViewItem *item)
+void TooltipEditDialog::slotUnusedSelected(TQListViewItem *item)
{
//mMainWidget->tbRemove->setEnabled(false);
mMainWidget->tbAdd->setEnabled(item!=0);
}
-void TooltipEditDialog::slotUsedSelected(QListViewItem *item)
+void TooltipEditDialog::slotUsedSelected(TQListViewItem *item)
{
mMainWidget->tbRemove->setEnabled(item!=0);
//mMainWidget->tbAdd->setEnabled(false);
@@ -173,8 +173,8 @@ void TooltipEditDialog::slotUsedSelected(QListViewItem *item)
void TooltipEditDialog::slotUpButton()
{
- QListViewItem *item = mMainWidget->lstUsedItems->currentItem();
- QListViewItem *prev = item->itemAbove();
+ TQListViewItem *item = mMainWidget->lstUsedItems->currentItem();
+ TQListViewItem *prev = item->itemAbove();
if(prev == 0) // we are first item already
return;
@@ -184,8 +184,8 @@ void TooltipEditDialog::slotUpButton()
void TooltipEditDialog::slotDownButton()
{
- QListViewItem *item = mMainWidget->lstUsedItems->currentItem();
- QListViewItem *next = item->itemBelow();
+ TQListViewItem *item = mMainWidget->lstUsedItems->currentItem();
+ TQListViewItem *next = item->itemBelow();
if(next == 0) // we are last item already
return;
diff --git a/kopete/kopete/config/appearance/tooltipeditdialog.h b/kopete/kopete/config/appearance/tooltipeditdialog.h
index 92d75aa9..54807df4 100644
--- a/kopete/kopete/config/appearance/tooltipeditdialog.h
+++ b/kopete/kopete/config/appearance/tooltipeditdialog.h
@@ -18,7 +18,7 @@
#define TOOLTIPEDITDIALOG_H
#include <kdebug.h>
-#include <qhbox.h>
+#include <tqhbox.h>
#include <kdialogbase.h>
class TooltipEditWidget;
@@ -27,11 +27,11 @@ class TooltipEditDialog : public KDialogBase
Q_OBJECT
public:
- TooltipEditDialog(QWidget *parent=0, const char* name="ToolTipEditDialog");
+ TooltipEditDialog(TQWidget *parent=0, const char* name="ToolTipEditDialog");
private slots:
- void slotUnusedSelected(QListViewItem *);
- void slotUsedSelected(QListViewItem *);
+ void slotUnusedSelected(TQListViewItem *);
+ void slotUsedSelected(TQListViewItem *);
void slotUpButton();
void slotDownButton();
void slotAddButton();