ficheros de c?digo fuente "width_slider" a?adidos al repositorio (se habian olvidado)

This commit is contained in:
Luis Ángel San Martín
2013-02-08 15:12:55 +01:00
parent be591fde62
commit 850d62e11e
2 changed files with 98 additions and 0 deletions

27
YACReader/width_slider.h Normal file
View File

@ -0,0 +1,27 @@
#ifndef WIDTH_SLIDER_H
#define WIDTH_SLIDER_H
#include <QWidgetAction>
class QLabel;
class QSlider;
class YACReaderSliderAction : public QWidgetAction
{
Q_OBJECT
private:
QLabel * percentageLabel;
QSlider * slider;
public:
YACReaderSliderAction (QWidget * parent = 0);
public slots:
void updateText(int value);
signals:
void fitToWidthRatioChanged(float value);
};
#endif