コード例 #1
0
ファイル: CEGUIScrollbar.cpp プロジェクト: Ocerus/Ocerus
/*************************************************************************
	handler function for when thumb moves.
*************************************************************************/
bool Scrollbar::handleThumbMoved(const EventArgs&)
{
	// adjust scroll bar position as required.
	setScrollPosition(getValueFromThumb());

	return true;
}
コード例 #2
0
ファイル: CEGUISlider.cpp プロジェクト: brock7/TianLong
/*************************************************************************
	handler function for when thumb moves.	
*************************************************************************/
bool Slider::handleThumbMoved(const EventArgs& e)
{
	setCurrentValue(getValueFromThumb());

	return true;
}