You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdewebdev/quanta/components/csseditor/colorslider.h

73 lines
2.2 KiB

/***************************************************************************
colorslider.h - description
-------------------
begin : lun ago 9 2004
copyright : (C) 2004 by gulmini luciano
email : gulmini.luciano@student.unife.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef COLORSLIDER_H
#define COLORSLIDER_H
#include <tqslider.h>
#include "minieditor.h"
/**
*@author gulmini luciano
*/
class colorSlider : public miniEditor {
TQ_OBJECT
private :
TQString m_functionName;
protected:
TQSlider *m_leftValue,
*m_centerValue,
*m_rightValue;
public:
colorSlider(const TQString& functionName,const TQString& l=TQString(),const TQString& c=TQString(),const TQString& r=TQString(),TQWidget *parent=0, const char *name=0);
virtual ~colorSlider();
virtual void connectToPropertySetter(propertySetter* p);
private slots:
void convertLeftValue(int i);
void convertCenterValue(int i);
void convertRightValue(int i);
signals:
void valueChanged(const TQString&);
};
class RGBcolorSlider : public colorSlider {
TQ_OBJECT
public:
RGBcolorSlider(TQWidget *parent=0, const char *name=0);
~RGBcolorSlider(){}
};
//FOR CSS3
/*class HSLcolorSlider : public colorSlider {
TQ_OBJECT
public:
HSLcolorSlider(TQWidget *parent=0, const char *name=0);
~HSLcolorSlider();
};*/
#endif