diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /konq-plugins/kimgalleryplugin/imgallerydialog.cpp | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/kimgalleryplugin/imgallerydialog.cpp')
-rw-r--r-- | konq-plugins/kimgalleryplugin/imgallerydialog.cpp | 166 |
1 files changed, 83 insertions, 83 deletions
diff --git a/konq-plugins/kimgalleryplugin/imgallerydialog.cpp b/konq-plugins/kimgalleryplugin/imgallerydialog.cpp index 54db458..87e2e31 100644 --- a/konq-plugins/kimgalleryplugin/imgallerydialog.cpp +++ b/konq-plugins/kimgalleryplugin/imgallerydialog.cpp @@ -18,15 +18,15 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include <qlabel.h> -#include <qvbox.h> -#include <qgroupbox.h> -#include <qlayout.h> -#include <qcombobox.h> -#include <qwhatsthis.h> -#include <qcheckbox.h> -#include <qlineedit.h> -#include <qspinbox.h> +#include <tqlabel.h> +#include <tqvbox.h> +#include <tqgroupbox.h> +#include <tqlayout.h> +#include <tqcombobox.h> +#include <tqwhatsthis.h> +#include <tqcheckbox.h> +#include <tqlineedit.h> +#include <tqspinbox.h> #include <klocale.h> @@ -44,7 +44,7 @@ Boston, MA 02110-1301, USA. #include "imgallerydialog.h" #include "imgallerydialog.moc" -KIGPDialog::KIGPDialog(QWidget *parent, const QString& path, const char *name ) +KIGPDialog::KIGPDialog(TQWidget *parent, const TQString& path, const char *name ) : KDialogBase( IconList, i18n("Configure"), Default|Ok|Cancel, Ok, parent, name, true, true ), m_dialogOk( false ) @@ -67,8 +67,8 @@ void KIGPDialog::slotDefault() m_imageProperty->setChecked(false); m_fontName->setCurrentText( KGlobalSettings::generalFont().family() ); m_fontSize->setValue(14); - m_foregroundColor->setColor( QColor( "#d0ffd0") ); - m_backgroundColor->setColor( QColor("#333333") ); + m_foregroundColor->setColor( TQColor( "#d0ffd0") ); + m_backgroundColor->setColor( TQColor("#333333") ); m_imageNameReq->setURL(m_path + "images.html"); m_recurseSubDir->setChecked( false ); @@ -84,19 +84,19 @@ void KIGPDialog::slotDefault() m_colorDepth->setCurrentText("8"); } -void KIGPDialog::setupLookPage(const QString& path) { - QFrame *page = addPage( i18n("Look"), i18n("Page Look"), +void KIGPDialog::setupLookPage(const TQString& path) { + TQFrame *page = addPage( i18n("Look"), i18n("Page Look"), BarIcon("colorize", KIcon::SizeMedium ) ); m_config->setGroup("Look"); - QVBoxLayout *vlay = new QVBoxLayout( page, 0, spacingHint() ); + TQVBoxLayout *vlay = new TQVBoxLayout( page, 0, spacingHint() ); - QLabel *label; + TQLabel *label; - label = new QLabel( i18n("&Page title:"), page); + label = new TQLabel( i18n("&Page title:"), page); vlay->addWidget(label); - m_title = new QLineEdit(i18n("Image Gallery for %1").arg(path), page); + m_title = new TQLineEdit(i18n("Image Gallery for %1").arg(path), page); vlay->addWidget( m_title ); label->setBuddy(m_title); @@ -105,67 +105,67 @@ void KIGPDialog::setupLookPage(const QString& path) { m_imagesPerRow->setLabel( i18n("I&mages per row:") ); vlay->addWidget( m_imagesPerRow ); - QGridLayout *grid = new QGridLayout( 2, 2 ); + TQGridLayout *grid = new TQGridLayout( 2, 2 ); vlay->addLayout( grid ); - m_imageName = new QCheckBox( i18n("Show image file &name"), page); + m_imageName = new TQCheckBox( i18n("Show image file &name"), page); m_imageName->setChecked( m_config->readBoolEntry("ImageName", true) ); grid->addWidget( m_imageName, 0, 0 ); - m_imageSize = new QCheckBox( i18n("Show image file &size"), page); + m_imageSize = new TQCheckBox( i18n("Show image file &size"), page); m_imageSize->setChecked( m_config->readBoolEntry("ImageSize", false) ); grid->addWidget( m_imageSize, 0, 1 ); - m_imageProperty = new QCheckBox( i18n("Show image &dimensions"), page); + m_imageProperty = new TQCheckBox( i18n("Show image &dimensions"), page); m_imageProperty->setChecked( m_config->readBoolEntry("ImageProperty", false) ); grid->addWidget( m_imageProperty, 1, 0 ); - QHBoxLayout *hlay11 = new QHBoxLayout( ); + TQHBoxLayout *hlay11 = new TQHBoxLayout( ); vlay->addLayout( hlay11 ); - m_fontName = new QComboBox( false,page ); - QStringList standardFonts; + m_fontName = new TQComboBox( false,page ); + TQStringList standardFonts; KFontChooser::getFontList(standardFonts, 0); m_fontName->insertStringList( standardFonts ); m_fontName->setCurrentText( m_config->readEntry("FontName", KGlobalSettings::generalFont().family() ) ); - label = new QLabel( i18n("Fon&t name:"), page ); + label = new TQLabel( i18n("Fon&t name:"), page ); label->setBuddy( m_fontName ); hlay11->addWidget( label ); hlay11->addStretch( 1 ); hlay11->addWidget( m_fontName ); - QHBoxLayout *hlay12 = new QHBoxLayout( ); + TQHBoxLayout *hlay12 = new TQHBoxLayout( ); vlay->addLayout( hlay12 ); - m_fontSize = new QSpinBox( 6, 15, 1, page ); + m_fontSize = new TQSpinBox( 6, 15, 1, page ); m_fontSize->setValue( m_config->readNumEntry("FontSize", 14) ); - label = new QLabel( i18n("Font si&ze:"), page ); + label = new TQLabel( i18n("Font si&ze:"), page ); label->setBuddy( m_fontSize ); hlay12->addWidget( label ); hlay12->addStretch( 1 ); hlay12->addWidget( m_fontSize ); - QHBoxLayout *hlay1 = new QHBoxLayout( spacingHint() ); + TQHBoxLayout *hlay1 = new TQHBoxLayout( spacingHint() ); vlay->addLayout( hlay1 ); m_foregroundColor = new KColorButton(page); - m_foregroundColor->setColor( QColor( m_config->readEntry("ForegroundColor", "#d0ffd0") ) ); + m_foregroundColor->setColor( TQColor( m_config->readEntry("ForegroundColor", "#d0ffd0") ) ); - label = new QLabel( i18n("&Foreground color:"), page); + label = new TQLabel( i18n("&Foreground color:"), page); label->setBuddy( m_foregroundColor ); hlay1->addWidget( label ); hlay1->addStretch( 1 ); hlay1->addWidget(m_foregroundColor); - QHBoxLayout *hlay2 = new QHBoxLayout( spacingHint() ); + TQHBoxLayout *hlay2 = new TQHBoxLayout( spacingHint() ); vlay->addLayout( hlay2 ); m_backgroundColor = new KColorButton(page); - m_backgroundColor->setColor( QColor(m_config->readEntry("BackgroundColor", "#333333") ) ); + m_backgroundColor->setColor( TQColor(m_config->readEntry("BackgroundColor", "#333333") ) ); - label = new QLabel( i18n("&Background color:"), page); + label = new TQLabel( i18n("&Background color:"), page); hlay2->addWidget( label ); label->setBuddy( m_backgroundColor ); hlay2->addStretch( 1 ); @@ -174,33 +174,33 @@ void KIGPDialog::setupLookPage(const QString& path) { vlay->addStretch(1); } -void KIGPDialog::setupDirectoryPage(const QString& path) { - QFrame *page = addPage( i18n("Folders"), i18n("Folders"), +void KIGPDialog::setupDirectoryPage(const TQString& path) { + TQFrame *page = addPage( i18n("Folders"), i18n("Folders"), BarIcon("folder", KIcon::SizeMedium ) ); m_config->setGroup("Directory"); - QVBoxLayout *dvlay = new QVBoxLayout( page, 0, spacingHint() ); + TQVBoxLayout *dvlay = new TQVBoxLayout( page, 0, spacingHint() ); - QLabel *label; - label = new QLabel(i18n("&Save to HTML file:"), page); + TQLabel *label; + label = new TQLabel(i18n("&Save to HTML file:"), page); dvlay->addWidget( label ); - QString whatsThis; + TQString whatsThis; whatsThis = i18n("<p>The name of the HTML file this gallery will be saved to."); - QWhatsThis::add( label, whatsThis ); + TQWhatsThis::add( label, whatsThis ); m_imageNameReq = new KURLRequester(path + "images.html", page); label->setBuddy( m_imageNameReq ); dvlay->addWidget(m_imageNameReq); - connect( m_imageNameReq, SIGNAL(textChanged(const QString&)), - this, SLOT(imageUrlChanged(const QString&)) ); - QWhatsThis::add( m_imageNameReq, whatsThis ); + connect( m_imageNameReq, TQT_SIGNAL(textChanged(const TQString&)), + this, TQT_SLOT(imageUrlChanged(const TQString&)) ); + TQWhatsThis::add( m_imageNameReq, whatsThis ); const bool recurseSubDir = m_config->readBoolEntry("RecurseSubDirectories", false); - m_recurseSubDir = new QCheckBox(i18n("&Recurse subfolders"), page); + m_recurseSubDir = new TQCheckBox(i18n("&Recurse subfolders"), page); m_recurseSubDir->setChecked( recurseSubDir ); whatsThis = i18n("<p>Whether subfolders should be included for the " "image gallery creation or not."); - QWhatsThis::add( m_recurseSubDir, whatsThis ); + TQWhatsThis::add( m_recurseSubDir, whatsThis ); const int recursionLevel = m_config->readNumEntry("RecursionLevel", 0); m_recursionLevel = new KIntNumInput( recursionLevel, page ); @@ -212,25 +212,25 @@ void KIGPDialog::setupDirectoryPage(const QString& path) { whatsThis = i18n("<p>You can limit the number of folders the " "image gallery creator will traverse to by setting an " "upper bound for the recursion depth."); - QWhatsThis::add( m_recursionLevel, whatsThis ); + TQWhatsThis::add( m_recursionLevel, whatsThis ); - connect(m_recurseSubDir, SIGNAL( toggled(bool) ), - m_recursionLevel, SLOT( setEnabled(bool) ) ); + connect(m_recurseSubDir, TQT_SIGNAL( toggled(bool) ), + m_recursionLevel, TQT_SLOT( setEnabled(bool) ) ); dvlay->addWidget(m_recurseSubDir); dvlay->addWidget(m_recursionLevel); - m_copyOriginalFiles = new QCheckBox(i18n("Copy or&iginal files"), page); + m_copyOriginalFiles = new TQCheckBox(i18n("Copy or&iginal files"), page); m_copyOriginalFiles->setChecked(m_config->readBoolEntry("CopyOriginalFiles", false) ); dvlay->addWidget(m_copyOriginalFiles); whatsThis = i18n("<p>This makes a copy of all images and the gallery will refer " "to these copies instead of the original images."); - QWhatsThis::add( m_copyOriginalFiles, whatsThis ); + TQWhatsThis::add( m_copyOriginalFiles, whatsThis ); const bool useCommentFile = m_config->readBoolEntry("UseCommentFile", false); - m_useCommentFile = new QCheckBox(i18n("Use &comment file"), page); + m_useCommentFile = new TQCheckBox(i18n("Use &comment file"), page); m_useCommentFile->setChecked(useCommentFile); dvlay->addWidget(m_useCommentFile); @@ -239,9 +239,9 @@ void KIGPDialog::setupDirectoryPage(const QString& path) { "subtitles for the images." "<p>For details about the file format please see " "the \"What's This?\" help below."); - QWhatsThis::add( m_useCommentFile, whatsThis ); + TQWhatsThis::add( m_useCommentFile, whatsThis ); - label = new QLabel(i18n("Comments &file:"), page); + label = new TQLabel(i18n("Comments &file:"), page); label->setEnabled( useCommentFile ); dvlay->addWidget( label ); whatsThis = i18n("<p>You can specify the name of the comment file here. " @@ -254,40 +254,40 @@ void KIGPDialog::setupDirectoryPage(const QString& path) { "<br>Description" "<br>" "<br>and so on"); - QWhatsThis::add( label, whatsThis ); + TQWhatsThis::add( label, whatsThis ); m_commentFileReq = new KURLRequester(path + "comments", page); m_commentFileReq->setEnabled(useCommentFile); label->setBuddy( m_commentFileReq ); dvlay->addWidget(m_commentFileReq); - QWhatsThis::add( m_commentFileReq, whatsThis ); + TQWhatsThis::add( m_commentFileReq, whatsThis ); - connect(m_useCommentFile, SIGNAL(toggled(bool)), - label, SLOT(setEnabled(bool))); - connect(m_useCommentFile, SIGNAL(toggled(bool)), - m_commentFileReq, SLOT(setEnabled(bool))); + connect(m_useCommentFile, TQT_SIGNAL(toggled(bool)), + label, TQT_SLOT(setEnabled(bool))); + connect(m_useCommentFile, TQT_SIGNAL(toggled(bool)), + m_commentFileReq, TQT_SLOT(setEnabled(bool))); dvlay->addStretch(1); } -void KIGPDialog::setupThumbnailPage(const QString& path) { - QFrame *page = addPage( i18n("Thumbnails"), i18n("Thumbnails"), +void KIGPDialog::setupThumbnailPage(const TQString& path) { + TQFrame *page = addPage( i18n("Thumbnails"), i18n("Thumbnails"), BarIcon("thumbnail", KIcon::SizeMedium ) ); m_config->setGroup("Thumbnails"); - QLabel *label; + TQLabel *label; - QVBoxLayout *vlay = new QVBoxLayout( page, 0, spacingHint() ); + TQVBoxLayout *vlay = new TQVBoxLayout( page, 0, spacingHint() ); - QHBoxLayout *hlay3 = new QHBoxLayout( spacingHint() ); + TQHBoxLayout *hlay3 = new TQHBoxLayout( spacingHint() ); vlay->addLayout( hlay3 ); - m_imageFormat = new QComboBox(false, page); + m_imageFormat = new TQComboBox(false, page); m_imageFormat->insertItem("JPEG"); m_imageFormat->insertItem("PNG"); m_imageFormat->setCurrentText( m_config->readEntry("ImageFormat", "JPEG") ); - label = new QLabel( i18n("Image format f&or the thumbnails:"), page); + label = new TQLabel( i18n("Image format f&or the thumbnails:"), page); hlay3->addWidget( label ); label->setBuddy( m_imageFormat ); hlay3->addStretch( 1 ); @@ -298,17 +298,17 @@ void KIGPDialog::setupThumbnailPage(const QString& path) { m_thumbnailSize->setLabel( i18n("Thumbnail size:") ); vlay->addWidget( m_thumbnailSize ); - QGridLayout *grid = new QGridLayout( 2, 2 ); + TQGridLayout *grid = new TQGridLayout( 2, 2 ); vlay->addLayout( grid ); - QHBoxLayout *hlay4 = new QHBoxLayout( spacingHint() ); + TQHBoxLayout *hlay4 = new TQHBoxLayout( spacingHint() ); vlay->addLayout( hlay4 ); const bool colorDepthSet = m_config->readBoolEntry("ColorDepthSet", false); - m_colorDepthSet = new QCheckBox(i18n("&Set different color depth:"), page); + m_colorDepthSet = new TQCheckBox(i18n("&Set different color depth:"), page); m_colorDepthSet->setChecked(colorDepthSet); hlay4->addWidget( m_colorDepthSet ); - m_colorDepth = new QComboBox(false, page); + m_colorDepth = new TQComboBox(false, page); m_colorDepth->insertItem("1"); m_colorDepth->insertItem("8"); m_colorDepth->insertItem("16"); @@ -317,8 +317,8 @@ void KIGPDialog::setupThumbnailPage(const QString& path) { m_colorDepth->setEnabled(colorDepthSet); hlay4->addWidget( m_colorDepth ); - connect(m_colorDepthSet, SIGNAL( toggled(bool) ), - m_colorDepth, SLOT( setEnabled(bool) ) ); + connect(m_colorDepthSet, TQT_SIGNAL( toggled(bool) ), + m_colorDepth, TQT_SLOT( setEnabled(bool) ) ); vlay->addStretch(1); @@ -354,7 +354,7 @@ KIGPDialog::~KIGPDialog() { } -void KIGPDialog::imageUrlChanged(const QString &url ) +void KIGPDialog::imageUrlChanged(const TQString &url ) { enableButtonOK( !url.isEmpty()); } @@ -414,42 +414,42 @@ bool KIGPDialog::colorDepthSet() const return m_colorDepthSet->isChecked(); } -const QString KIGPDialog::getTitle() const +const TQString KIGPDialog::getTitle() const { return m_title->text(); } -const QString KIGPDialog::getImageName() const +const TQString KIGPDialog::getImageName() const { return m_imageNameReq->url(); } -const QString KIGPDialog::getCommentFile() const +const TQString KIGPDialog::getCommentFile() const { return m_commentFileReq->url(); } -const QString KIGPDialog::getFontName() const +const TQString KIGPDialog::getFontName() const { return m_fontName->currentText(); } -const QString KIGPDialog::getFontSize() const +const TQString KIGPDialog::getFontSize() const { return m_fontSize->text(); } -const QColor KIGPDialog::getBackgroundColor() const +const TQColor KIGPDialog::getBackgroundColor() const { return m_backgroundColor->color(); } -const QColor KIGPDialog::getForegroundColor() const +const TQColor KIGPDialog::getForegroundColor() const { return m_foregroundColor->color(); } -const QString KIGPDialog::getImageFormat() const +const TQString KIGPDialog::getImageFormat() const { return m_imageFormat->currentText(); } |