summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/tagdialogs/colorcombo.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/dialogs/tagdialogs/colorcombo.h')
-rw-r--r--quanta/dialogs/tagdialogs/colorcombo.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/quanta/dialogs/tagdialogs/colorcombo.h b/quanta/dialogs/tagdialogs/colorcombo.h
index 35eae54a..b6f851e0 100644
--- a/quanta/dialogs/tagdialogs/colorcombo.h
+++ b/quanta/dialogs/tagdialogs/colorcombo.h
@@ -26,10 +26,10 @@
#ifndef COLORCOMBO_H
#define COLORCOMBO_H
-#include <qcombobox.h>
+#include <tqcombobox.h>
#include <kdialogbase.h>
-#include <qframe.h>
-#include <qpixmap.h>
+#include <tqframe.h>
+#include <tqpixmap.h>
#include <kcolordialog.h>
#include "kselect.h"
@@ -41,16 +41,16 @@ class ColorCombo : public QComboBox
{
Q_OBJECT
public:
- ColorCombo( QWidget *parent = 0L, const char *name = 0L );
+ ColorCombo( TQWidget *parent = 0L, const char *name = 0L );
~ColorCombo();
- void setColor( const QColor &col );
- void setColorName(const QString &color);
- QString colorName();
+ void setColor( const TQColor &col );
+ void setColorName(const TQString &color);
+ TQString colorName();
/**
* Retrieve the currently selected color.
**/
- QColor color() const;
+ TQColor color() const;
bool hasColor() const;
@@ -59,25 +59,25 @@ public slots:
void slotHighlighted( int index );
signals:
- void activated( const QColor &col );
- void highlighted( const QColor &col );
+ void activated( const TQColor &col );
+ void highlighted( const TQColor &col );
protected:
/**
* @reimplemented
*/
- virtual void resizeEvent( QResizeEvent *re );
+ virtual void resizeEvent( TQResizeEvent *re );
private:
void createStandardPalette();
void addColors();
- QColor customColor;
- QColor internalcolor;
+ TQColor customColor;
+ TQColor internalcolor;
bool hascolor;
- QColor *standardPalette;
- QString *standardPaletteNames;
+ TQColor *standardPalette;
+ TQString *standardPaletteNames;
};