summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sendimages/sendimagesdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sendimages/sendimagesdialog.h')
-rw-r--r--kipi-plugins/sendimages/sendimagesdialog.h78
1 files changed, 40 insertions, 38 deletions
diff --git a/kipi-plugins/sendimages/sendimagesdialog.h b/kipi-plugins/sendimages/sendimagesdialog.h
index 3fd4984..dd162e6 100644
--- a/kipi-plugins/sendimages/sendimagesdialog.h
+++ b/kipi-plugins/sendimages/sendimagesdialog.h
@@ -23,10 +23,10 @@
#ifndef SENDIMAGESDIALOG_H
#define SENDIMAGESDIALOG_H
-// Qt includes.
+// TQt includes.
-#include <qstring.h>
-#include <qguardedptr.h>
+#include <tqstring.h>
+#include <tqguardedptr.h>
// KDE includes.
@@ -45,13 +45,13 @@
#include "kpaboutdata.h"
-class QComboBox;
-class QGroupBox;
-class QLabel;
-class QCheckBox;
-class QFrame;
-class QPushButton;
-class QFileInfo;
+class TQComboBox;
+class TQGroupBox;
+class TQLabel;
+class TQCheckBox;
+class TQFrame;
+class TQPushButton;
+class TQFileInfo;
class KFileItem;
class KIntNumInput;
@@ -65,42 +65,44 @@ namespace KIPISendimagesPlugin
class ListImageItems : public KListBox
{
Q_OBJECT
+ TQ_OBJECT
public:
- ListImageItems(QWidget *parent=0, const char *name=0);
+ ListImageItems(TQWidget *tqparent=0, const char *name=0);
signals:
- void addedDropItems(QStringList filesPath);
+ void addedDropItems(TQStringList filesPath);
protected:
- void dragEnterEvent(QDragEnterEvent *e);
- void dropEvent(QDropEvent *e);
+ void dragEnterEvent(TQDragEnterEvent *e);
+ void dropEvent(TQDropEvent *e);
};
class SendImagesDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- SendImagesDialog(QWidget *parent, KIPI::Interface* interface,
+ SendImagesDialog(TQWidget *tqparent, KIPI::Interface* interface,
const KIPI::ImageCollection& images );
~SendImagesDialog();
KIntNumInput *m_imageCompression;
KIntNumInput *m_attachmentlimit;
- QComboBox *m_imagesFormat;
- QComboBox *m_imagesResize;
- QComboBox *m_mailAgentName;
+ TQComboBox *m_imagesFormat;
+ TQComboBox *m_imagesResize;
+ TQComboBox *m_mailAgentName;
- QCheckBox *m_addComments;
- QCheckBox *m_comment2ImageName;
- QCheckBox *m_changeImagesProp;
+ TQCheckBox *m_addComments;
+ TQCheckBox *m_comment2ImageName;
+ TQCheckBox *m_changeImagesProp;
KURLRequester *m_ThunderbirdBinPath;
@@ -108,7 +110,7 @@ public:
public slots:
- void slotAddDropItems(QStringList filesPath);
+ void slotAddDropItems(TQStringList filesPath);
signals:
@@ -118,12 +120,12 @@ private slots:
void slotHelp();
void slotOk();
- void slotImageSelected( QListBoxItem * item );
- void slotGotPreview(const KFileItem* , const QPixmap &pixmap);
+ void slotImageSelected( TQListBoxItem * item );
+ void slotGotPreview(const KFileItem* , const TQPixmap &pixmap);
void slotFailedPreview(const KFileItem*);
void slotImagesFilesButtonAdd(void);
void slotImagesFilesButtonRem(void);
- void slotThunderbirdBinPathChanged(const QString&);
+ void slotThunderbirdBinPathChanged(const TQString&);
void slotMailAgentChanged(int);
private:
@@ -139,24 +141,24 @@ private:
bool m_cancelled;
- QLabel *m_labelImageFormat;
- QLabel *m_labelImageSize;
- QLabel *m_mailAgentLabel;
- QLabel *m_labelThunderbirdBinPath;
+ TQLabel *m_labelImageFormat;
+ TQLabel *m_labelImageSize;
+ TQLabel *m_mailAgentLabel;
+ TQLabel *m_labelThunderbirdBinPath;
- QPushButton *m_addImageButton;
- QPushButton *m_remImagesButton;
- QPushButton *m_helpButton;
+ TQPushButton *m_addImageButton;
+ TQPushButton *m_remImagesButton;
+ TQPushButton *m_helpButton;
- QProgressDialog *m_progressDlg;
+ TQProgressDialog *m_progressDlg;
- QGroupBox *m_groupBoxImageList;
+ TQGroupBox *m_groupBoxImageList;
- QLabel *m_imageLabel;
+ TQLabel *m_imageLabel;
- QFrame *page_setupImagesList;
- QFrame *page_setupEmailOptions;
- QFrame *page_about;
+ TQFrame *page_setupImagesList;
+ TQFrame *page_setupEmailOptions;
+ TQFrame *page_about;
KSqueezedTextLabel *m_ImageComments;
KSqueezedTextLabel *m_ImageAlbum;