diff options
Diffstat (limited to 'kpilot/conduits/abbrowserconduit/resolutionDialog.cc')
-rw-r--r-- | kpilot/conduits/abbrowserconduit/resolutionDialog.cc | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/kpilot/conduits/abbrowserconduit/resolutionDialog.cc b/kpilot/conduits/abbrowserconduit/resolutionDialog.cc index 2749074f8..aa8e2f148 100644 --- a/kpilot/conduits/abbrowserconduit/resolutionDialog.cc +++ b/kpilot/conduits/abbrowserconduit/resolutionDialog.cc @@ -28,11 +28,11 @@ #include "options.h" -#include <qtimer.h> -#include <qlabel.h> -#include <qpushbutton.h> -#include <qlistview.h> -#include <qregexp.h> +#include <tqtimer.h> +#include <tqlabel.h> +#include <tqpushbutton.h> +#include <tqlistview.h> +#include <tqregexp.h> #include "resolutionTable.h" #include "resolutionDialog_base.h" @@ -46,16 +46,16 @@ * activated (stateChange), it sets the text of its parent (which is the * controller, which is an instance of ResolutionCheckListItem, too). **/ -class ResolutionCheckListItem : QCheckListItem { +class ResolutionCheckListItem : TQCheckListItem { public: ResolutionCheckListItem(ResolutionItem*it, ResolutionTable*tb, - QListView*parent); - ResolutionCheckListItem(QString header, QString text, + TQListView*parent); + ResolutionCheckListItem(TQString header, TQString text, ResolutionCheckListItem*parent); ~ResolutionCheckListItem() {}; virtual void stateChange(bool newstate); - virtual void setValue(QString text); - virtual void setCaption(QString caption); + virtual void setValue(TQString text); + virtual void setCaption(TQString caption); protected: void updateText(); @@ -65,20 +65,20 @@ protected: /* The description of the entry, e.g. Backup, PC, Palm for the radio buttons, * of the field name for the controllers */ - QString fCaption; + TQString fCaption; /* The currrent value of the entry (for controllers this changes with the * selected button */ - QString fText; + TQString fText; }; ResolutionCheckListItem::ResolutionCheckListItem(ResolutionItem*it, - ResolutionTable*tb, QListView*parent) : - QCheckListItem(parent, QString::null, QCheckListItem::Controller), + ResolutionTable*tb, TQListView*parent) : + TQCheckListItem(parent, TQString::null, TQCheckListItem::Controller), fResItem(it), isController(true), - fCaption(it?(it->fName):(QString::null)), - fText(it?(it->fResolved):(QString::null)) + fCaption(it?(it->fName):(TQString::null)), + fText(it?(it->fResolved):(TQString::null)) { FUNCTIONSETUP; if (it && tb) @@ -86,7 +86,7 @@ ResolutionCheckListItem::ResolutionCheckListItem(ResolutionItem*it, // If all three texts are identical, there is no need for // resolution so don't show the radio items below bool itemsEqual=true; - QString testtext(QString::null); + TQString testtext(TQString::null); const enum eExistItems its[3]={eExistsPC, eExistsPalm, eExistsBackup}; // get a valid text from a valid field, which will serve as the // test text for the comparison @@ -118,9 +118,9 @@ ResolutionCheckListItem::ResolutionCheckListItem(ResolutionItem*it, setOpen(true); } -ResolutionCheckListItem::ResolutionCheckListItem(QString text, QString header, +ResolutionCheckListItem::ResolutionCheckListItem(TQString text, TQString header, ResolutionCheckListItem*parent) : - QCheckListItem(parent, QString(), QCheckListItem::RadioButton), + TQCheckListItem(parent, TQString(), TQCheckListItem::RadioButton), fResItem(0L), isController(false), fCaption(header), @@ -140,7 +140,7 @@ void ResolutionCheckListItem::stateChange(bool newstate) } } -void ResolutionCheckListItem::setValue(QString text) +void ResolutionCheckListItem::setValue(TQString text) { FUNCTIONSETUP; fText=text; @@ -151,7 +151,7 @@ void ResolutionCheckListItem::setValue(QString text) updateText(); } -void ResolutionCheckListItem::setCaption(QString caption) +void ResolutionCheckListItem::setCaption(TQString caption) { fCaption=caption; updateText(); @@ -159,8 +159,8 @@ void ResolutionCheckListItem::setCaption(QString caption) void ResolutionCheckListItem::updateText() { - QString newText(i18n("Entries in the resolution dialog. First the name of the field, then the entry from the Handheld or PC after the colon", "%1: %2").arg(fCaption).arg(fText)); - newText.replace(QRegExp(CSL1("\n")), + TQString newText(i18n("Entries in the resolution dialog. First the name of the field, then the entry from the Handheld or PC after the colon", "%1: %2").arg(fCaption).arg(fText)); + newText.replace(TQRegExp(CSL1("\n")), i18n("Denoting newlines in Address entries. No need to translate", " | ")); setText(0, newText); } @@ -171,8 +171,8 @@ void ResolutionCheckListItem::updateText() * *****************************************************************/ -ResolutionDlg::ResolutionDlg( QWidget* parent, KPilotLink*fH, - const QString &caption, const QString &helpText, ResolutionTable*tab) : +ResolutionDlg::ResolutionDlg( TQWidget* parent, KPilotLink*fH, + const TQString &caption, const TQString &helpText, ResolutionTable*tab) : KDialogBase( parent, "ResolutionDlg", false, caption, Apply|Cancel, Apply), tickleTimer(0L), fHandle(fH), @@ -189,20 +189,20 @@ ResolutionDlg::ResolutionDlg( QWidget* parent, KPilotLink*fH, adjustSize(); resize(size()); - if (fHandle) tickleTimer=new QTimer(this, "TickleTimer"); + if (fHandle) tickleTimer=new TQTimer(this, "TickleTimer"); if (tickleTimer) { - connect( tickleTimer, SIGNAL(timeout()), this, SLOT(_tickle())); + connect( tickleTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(_tickle())); // tickle the palm every 10 seconds to prevent a timeout until the // sync is really finished. tickleTimer->start( 10000 ); } - connect(fWidget->fKeepBoth, SIGNAL(clicked()), SLOT(slotKeepBoth())); - connect(fWidget->fBackupValues, SIGNAL(clicked()), SLOT(slotUseBackup())); - connect(fWidget->fPalmValues, SIGNAL(clicked()), SLOT(slotUsePalm())); - connect(fWidget->fPCValues, SIGNAL(clicked()), SLOT(slotUsePC())); + connect(fWidget->fKeepBoth, TQT_SIGNAL(clicked()), TQT_SLOT(slotKeepBoth())); + connect(fWidget->fBackupValues, TQT_SIGNAL(clicked()), TQT_SLOT(slotUseBackup())); + connect(fWidget->fPalmValues, TQT_SIGNAL(clicked()), TQT_SLOT(slotUsePalm())); + connect(fWidget->fPCValues, TQT_SIGNAL(clicked()), TQT_SLOT(slotUsePC())); } void ResolutionDlg::adjustButtons(ResolutionTable*tab) |