На форме создан Horizontal Slide, и ещё LCD Number.
Необходимо:
Связать их так, что бы после изменения слайдера, менялись числа в намбере.
Для решения этой проблемы, создаю слот void on_Slider1_sliderPressed();
class TAquarium
{
static const int FishCount = 10;
public:
QTimer *timer;
TAquarium();
void Init(QGraphicsScene * scene);
void Run(QGraphicsScene * scene);
};
void TAquarium::Run(QGraphicsScene * scene)
{
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()),
this, SLOT(OnTimerEvent()));
timer->start(30);
}