예제 #1
0
void StudyTool::setDelay()
{
	bool ok;
	int inputValue = QInputDialog::getInt(
			this,
			"Set the delay",
			"Delay (seconds): ",
			interval,
			1,
			10000,
			1,
			&ok);
	updateTimerInterval(ok ? inputValue : interval);
}
예제 #2
0
void OrdinalPropertyAnimator::changeActive() {
    updateTimerInterval();
}
예제 #3
0
void OrdinalPropertyAnimator::initializeResources() {
    changeProperty();
    updateTimerInterval();
}