summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrPgConfDia.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrPgConfDia.h')
-rw-r--r--kpresenter/KPrPgConfDia.h43
1 files changed, 22 insertions, 21 deletions
diff --git a/kpresenter/KPrPgConfDia.h b/kpresenter/KPrPgConfDia.h
index e25fdf79..d322c6e9 100644
--- a/kpresenter/KPrPgConfDia.h
+++ b/kpresenter/KPrPgConfDia.h
@@ -24,54 +24,55 @@
#include "global.h"
-#include <qmap.h>
-#include <qpen.h>
-#include <qvaluelist.h>
+#include <tqmap.h>
+#include <tqpen.h>
+#include <tqvaluelist.h>
#include <kdialogbase.h>
class KPrDocument;
-class QCheckBox;
-class QComboBox;
-class QColor;
-class QListView;
-class QRadioButton;
-class QSpinBox;
+class TQCheckBox;
+class TQComboBox;
+class TQColor;
+class TQListView;
+class TQRadioButton;
+class TQSpinBox;
class KColorButton;
-class QSlider;
+class TQSlider;
class KPrPgConfDia : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
// constructor - destructor
- KPrPgConfDia( QWidget* parent, KPrDocument* doc );
+ KPrPgConfDia( TQWidget* tqparent, KPrDocument* doc );
~KPrPgConfDia();
bool getInfiniteLoop() const;
bool getShowEndOfPresentationSlide() const;
bool getManualSwitch() const;
bool getPresentationDuration() const;
- QPen getPen() const;
- QValueList<bool> getSelectedSlides() const;
+ TQPen getPen() const;
+ TQValueList<bool> getSelectedSlides() const;
- QString presentationName() const;
+ TQString presentationName() const;
protected:
KPrDocument* m_doc;
- QCheckBox *infiniteLoop, *presentationDuration, *endOfPresentationSlide;
- QRadioButton *m_manualButton, *m_autoButton;
+ TQCheckBox *infiniteLoop, *presentationDuration, *endOfPresentationSlide;
+ TQRadioButton *m_manualButton, *m_autoButton;
KColorButton* penColor;
- QSpinBox* penWidth;
- QComboBox *m_customSlideCombobox;
- QListView *slides;
- QRadioButton *m_customSlide, *m_selectedSlide;
- QLabel *m_labelCustomSlide;
+ TQSpinBox* penWidth;
+ TQComboBox *m_customSlideCombobox;
+ TQListView *slides;
+ TQRadioButton *m_customSlide, *m_selectedSlide;
+ TQLabel *m_labelCustomSlide;
void setupPageGeneral();
void setupPageSlides();