Michaël Lemaire
1fcbb37f17
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@214 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
22 lines
355 B
C++
22 lines
355 B
C++
#include "inputcolor.h"
|
|
|
|
#include <QLabel>
|
|
|
|
InputColor::InputColor(QWidget* form, QString label, Color color):
|
|
BaseInput(form, label),
|
|
_color(color)
|
|
{
|
|
setObjectName("_inputcolor_");
|
|
|
|
_preview = new QLabel(form);
|
|
_control = new QLabel(form);
|
|
}
|
|
|
|
void InputColor::applyValue()
|
|
{
|
|
emit(valueChanged());
|
|
}
|
|
|
|
void InputColor::revert()
|
|
{
|
|
}
|