コード例 #1
0
ファイル: Test.cpp プロジェクト: spacechase0/SFGUI
void Ouchy::DoOuch() {
	if( !m_state ) {
		m_button->SetLabel( "Ouch" );
	}
	else {
		m_button->SetLabel( "Boom" );
	}

	m_state = !m_state;
}
コード例 #2
0
ファイル: Buttons.cpp プロジェクト: DrJonki/I-want-it-back
void ButtonsExample::ButtonClick() {
	// When the Button is clicked it's label should change.
	m_button->SetLabel( "I was clicked" );
}