コード例 #1
0
ファイル: Buttons.cpp プロジェクト: DrJonki/I-want-it-back
void ButtonsExample::ButtonToggle() {
	// When the ToggleButton is active hide the window's titlebar.
	if( m_toggle_button->IsActive() ) {
		m_window->SetStyle( m_window->GetStyle() & ~sfg::Window::TITLEBAR );
	}
	else {
		m_window->SetStyle( m_window->GetStyle() | sfg::Window::TITLEBAR );
	}
}
コード例 #2
0
		void onButtonLayerForeground()
		{
			buttonLayerAll->SetActive(false);
			buttonLayerObject->SetActive(false);
			buttonLayerAudio->SetActive(false);
			buttonLayerBackground->SetActive(false);
			buttonLayerTerrain->SetActive(false);
			if (!buttonLayerForeground->IsActive())
			{
				buttonLayerForeground->SetActive(true);
			}
		}