MCPcopy Create free account
hub / github.com/YACReader/yacreader / setRange

Method setRange

custom_widgets/yacreader_spin_slider_widget.cpp:55–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53}
54
55void YACReaderSpinSliderWidget::setRange(int lowValue, int topValue, int step)
56{
57 spinBox->setMinimum(lowValue);
58 spinBox->setMaximum(topValue);
59 spinBox->setSingleStep(step);
60
61 slider->setMinimum(lowValue);
62 slider->setMaximum(topValue);
63 slider->setSingleStep(step);
64}
65
66void YACReaderSpinSliderWidget::setValue(int value)
67{

Callers 8

OptionsDialogMethod · 0.80
createPublishingBoxMethod · 0.80
loadComicMethod · 0.80
createGeneralTabMethod · 0.80
createGridTabMethod · 0.80
FolderContentViewMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected