AlbumShaper
1.0a3
|
#include <blurSharpenSlider.h>
Public Member Functions | |
BlurSharpenSlider (Orientation orientation, QWidget *parent, const char *name=0) | |
Protected Member Functions | |
virtual QString | mapValToString () |
subclass DynamicSlider and reimplement this method to change the behavior used to display slider values |
Definition at line 17 of file blurSharpenSlider.h.
BlurSharpenSlider::BlurSharpenSlider | ( | Orientation | orientation, |
QWidget * | parent, | ||
const char * | name = 0 |
||
) |
Definition at line 14 of file blurSharpenSlider.cpp.
References DynamicSlider::setPrefixes(), DynamicSlider::setSuffix(), and DynamicSlider::setZeroString().
: DynamicSlider( orientation, parent, name) { setZeroString( tr("No change") ); setPrefixes( QString(tr("Blur"))+": ", QString(tr("Sharpen"))+": " ); setSuffix("x"); }
QString BlurSharpenSlider::mapValToString | ( | ) | [protected, virtual] |
subclass DynamicSlider and reimplement this method to change the behavior used to display slider values
Reimplemented from DynamicSlider.
Definition at line 24 of file blurSharpenSlider.cpp.
{ //always use the absolute value of the value return QString("%1").arg( QABS(value()) ); }