summaryrefslogtreecommitdiffstats
path: root/kooka/imgprintdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kooka/imgprintdialog.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kooka/imgprintdialog.h')
-rw-r--r--kooka/imgprintdialog.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/kooka/imgprintdialog.h b/kooka/imgprintdialog.h
index 845cc038..f710820e 100644
--- a/kooka/imgprintdialog.h
+++ b/kooka/imgprintdialog.h
@@ -27,8 +27,8 @@
#ifndef __IMGPRINTDIALOG_H__
#define __IMGPRINTDIALOG_H__
-#include <qmap.h>
-#include <qcheckbox.h>
+#include <tqmap.h>
+#include <tqcheckbox.h>
#include <kdeprint/kprintdialogpage.h>
#include "kookaimage.h"
@@ -41,24 +41,24 @@
#define OPT_PSGEN_DRAFT "kde-kooka-psdraft"
#define OPT_RATIO "kde-kooka-ratio"
#define OPT_FITPAGE "kde-kooka-fitpage"
-class QWidget;
-class QString;
-class QLabel;
+class TQWidget;
+class TQString;
+class TQLabel;
class KIntNumInput;
class KookaImage;
-class QVButtonGroup;
-class QRadioButton;
-class QCheckBox;
+class TQVButtonGroup;
+class TQRadioButton;
+class TQCheckBox;
class ImgPrintDialog: public KPrintDialogPage
{
Q_OBJECT
public:
- ImgPrintDialog( KookaImage *img, QWidget *parent=0L, const char* name=0L );
+ ImgPrintDialog( KookaImage *img, TQWidget *parent=0L, const char* name=0L );
- void setOptions(const QMap<QString,QString>& opts);
- void getOptions(QMap<QString,QString>& opts, bool include_def = false);
- bool isValid(QString& msg);
+ void setOptions(const TQMap<TQString,TQString>& opts);
+ void getOptions(TQMap<TQString,TQString>& opts, bool include_def = false);
+ bool isValid(TQString& msg);
void setImage( KookaImage *img );
@@ -68,21 +68,21 @@ protected slots:
void slCustomHeightChanged(int);
private:
- QButtonGroup *m_scaleRadios;
- QRadioButton *m_rbOrigSize;
- QRadioButton *m_rbScale;
- QRadioButton *m_rbScreen;
- QRadioButton *m_rbFitPage;
+ TQButtonGroup *m_scaleRadios;
+ TQRadioButton *m_rbOrigSize;
+ TQRadioButton *m_rbScale;
+ TQRadioButton *m_rbScreen;
+ TQRadioButton *m_rbFitPage;
KIntNumInput *m_sizeW;
KIntNumInput *m_sizeH;
KIntNumInput *m_dpi;
- QCheckBox *m_psDraft;
- QCheckBox *m_ratio;
+ TQCheckBox *m_psDraft;
+ TQCheckBox *m_ratio;
KookaImage *m_image;
- QLabel *m_screenRes;
+ TQLabel *m_screenRes;
bool m_ignoreSignal;
};