예제 #1
0
void appl::widget::VectorDisplay::ToggleAuto() {
	if (m_autoDisplay == false) {
		periodicCallEnable();
		m_autoDisplay = true;
	} else {
		periodicCallDisable();
		m_autoDisplay = false;
	}
}
예제 #2
0
void ewol::widget::ButtonColor::changeStatusIn(int32_t _newStatusId) {
	if (true == m_shaper.changeStatusIn(_newStatusId) ) {
		periodicCallEnable();
		markToRedraw();
	}
}