summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/setup/setupslideshow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/utilities/setup/setupslideshow.cpp')
-rw-r--r--digikam/utilities/setup/setupslideshow.cpp88
1 files changed, 44 insertions, 44 deletions
diff --git a/digikam/utilities/setup/setupslideshow.cpp b/digikam/utilities/setup/setupslideshow.cpp
index 88929f52..c0416fba 100644
--- a/digikam/utilities/setup/setupslideshow.cpp
+++ b/digikam/utilities/setup/setupslideshow.cpp
@@ -21,12 +21,12 @@
*
* ============================================================ */
-// Qt includes.
+// TQt includes.
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qwhatsthis.h>
-#include <qcheckbox.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqwhatsthis.h>
+#include <tqcheckbox.h>
// KDE includes.
@@ -61,64 +61,64 @@ public:
printComment = 0;
}
- QCheckBox *startWithCurrent;
- QCheckBox *loopMode;
- QCheckBox *printName;
- QCheckBox *printDate;
- QCheckBox *printApertureFocal;
- QCheckBox *printExpoSensitivity;
- QCheckBox *printMakeModel;
- QCheckBox *printComment;
+ TQCheckBox *startWithCurrent;
+ TQCheckBox *loopMode;
+ TQCheckBox *printName;
+ TQCheckBox *printDate;
+ TQCheckBox *printApertureFocal;
+ TQCheckBox *printExpoSensitivity;
+ TQCheckBox *printMakeModel;
+ TQCheckBox *printComment;
KIntNumInput *delayInput;
};
-SetupSlideShow::SetupSlideShow(QWidget* parent )
- : QWidget(parent)
+SetupSlideShow::SetupSlideShow(TQWidget* tqparent )
+ : TQWidget(tqparent)
{
d = new SetupSlideShowPriv;
- QVBoxLayout *layout = new QVBoxLayout( parent );
+ TQVBoxLayout *tqlayout = new TQVBoxLayout( tqparent );
- d->delayInput = new KIntNumInput(5, parent);
+ d->delayInput = new KIntNumInput(5, tqparent);
d->delayInput->setRange(1, 3600, 1, true );
d->delayInput->setLabel( i18n("&Delay between images:"), AlignLeft|AlignTop );
- QWhatsThis::add( d->delayInput, i18n("<p>The delay, in seconds, between images."));
+ TQWhatsThis::add( d->delayInput, i18n("<p>The delay, in seconds, between images."));
- d->startWithCurrent = new QCheckBox(i18n("Start with current image"), parent);
- QWhatsThis::add( d->startWithCurrent, i18n("<p>If this option is enabled, slideshow will be started "
+ d->startWithCurrent = new TQCheckBox(i18n("Start with current image"), tqparent);
+ TQWhatsThis::add( d->startWithCurrent, i18n("<p>If this option is enabled, slideshow will be started "
"with currently selected image."));
- d->loopMode = new QCheckBox(i18n("Display in a loop"), parent);
- QWhatsThis::add( d->loopMode, i18n("<p>Run the slideshow in endless repetition."));
+ d->loopMode = new TQCheckBox(i18n("Display in a loop"), tqparent);
+ TQWhatsThis::add( d->loopMode, i18n("<p>Run the slideshow in endless repetition."));
- d->printName = new QCheckBox(i18n("Print image file name"), parent);
- QWhatsThis::add( d->printName, i18n("<p>Print the image file name at the bottom of the screen."));
+ d->printName = new TQCheckBox(i18n("Print image file name"), tqparent);
+ TQWhatsThis::add( d->printName, i18n("<p>Print the image file name at the bottom of the screen."));
- d->printDate = new QCheckBox(i18n("Print image creation date"), parent);
- QWhatsThis::add( d->printDate, i18n("<p>Print the image creation time/date at the bottom of the screen."));
+ d->printDate = new TQCheckBox(i18n("Print image creation date"), tqparent);
+ TQWhatsThis::add( d->printDate, i18n("<p>Print the image creation time/date at the bottom of the screen."));
- d->printApertureFocal = new QCheckBox(i18n("Print camera aperture and focal length"), parent);
- QWhatsThis::add( d->printApertureFocal, i18n("<p>Print the camera aperture and focal length at the bottom of the screen."));
+ d->printApertureFocal = new TQCheckBox(i18n("Print camera aperture and focal length"), tqparent);
+ TQWhatsThis::add( d->printApertureFocal, i18n("<p>Print the camera aperture and focal length at the bottom of the screen."));
- d->printExpoSensitivity = new QCheckBox(i18n("Print camera exposure and sensitivity"), parent);
- QWhatsThis::add( d->printExpoSensitivity, i18n("<p>Print the camera exposure and sensitivity at the bottom of the screen."));
+ d->printExpoSensitivity = new TQCheckBox(i18n("Print camera exposure and sensitivity"), tqparent);
+ TQWhatsThis::add( d->printExpoSensitivity, i18n("<p>Print the camera exposure and sensitivity at the bottom of the screen."));
- d->printMakeModel = new QCheckBox(i18n("Print camera make and model"), parent);
- QWhatsThis::add( d->printMakeModel, i18n("<p>Print the camera make and model at the bottom of the screen."));
+ d->printMakeModel = new TQCheckBox(i18n("Print camera make and model"), tqparent);
+ TQWhatsThis::add( d->printMakeModel, i18n("<p>Print the camera make and model at the bottom of the screen."));
- d->printComment = new QCheckBox(i18n("Print image caption"), parent);
- QWhatsThis::add( d->printComment, i18n("<p>Print the image caption at the bottom of the screen."));
+ d->printComment = new TQCheckBox(i18n("Print image caption"), tqparent);
+ TQWhatsThis::add( d->printComment, i18n("<p>Print the image caption at the bottom of the screen."));
- layout->addWidget(d->delayInput);
- layout->addWidget(d->startWithCurrent);
- layout->addWidget(d->loopMode);
- layout->addWidget(d->printName);
- layout->addWidget(d->printDate);
- layout->addWidget(d->printApertureFocal);
- layout->addWidget(d->printExpoSensitivity);
- layout->addWidget(d->printMakeModel);
- layout->addWidget(d->printComment);
- layout->addStretch();
+ tqlayout->addWidget(d->delayInput);
+ tqlayout->addWidget(d->startWithCurrent);
+ tqlayout->addWidget(d->loopMode);
+ tqlayout->addWidget(d->printName);
+ tqlayout->addWidget(d->printDate);
+ tqlayout->addWidget(d->printApertureFocal);
+ tqlayout->addWidget(d->printExpoSensitivity);
+ tqlayout->addWidget(d->printMakeModel);
+ tqlayout->addWidget(d->printComment);
+ tqlayout->addStretch();
readSettings();
}