#ifdef HAVE_CONFIG_H #include #endif #include #include #include "PropertySlider.h" PropertySlider::PropertySlider(QWidget *parent, const char *name, bool modal, WFlags fl) : PropertySliderData(parent, name, modal, fl) { this->setFixedSize(this->size()); } PropertySlider::~PropertySlider() {} void PropertySlider::resetValues() { spinBoxX->setValue(0); spinBoxY->setValue(0); spinBoxZ->setValue(0); sliderX->setValue(0); sliderY->setValue(0); sliderZ->setValue(0); }