コード例 #1
0
ファイル: GameMenuView.cpp プロジェクト: johnuk89/pioneer
	FileDialog(TYPE t, const char *title): Gui::VBox() {
		m_type = t;
		m_title = title;
		SetTransparency(false);
		SetSpacing(5.0f);
		SetSizeRequest(FLT_MAX, FLT_MAX);
	}
コード例 #2
0
ファイル: GuiBox.cpp プロジェクト: Luomu/pioneer
void Box::SetSizeRequest(float size[2])
{
	SetSizeRequest(size[0], size[1]);
}
コード例 #3
0
FileSelectorWidget::FileSelectorWidget(Type type, const std::string &title) : Gui::VBox(), m_type(type), m_title(title)
{
	SetTransparency(false);
	SetSpacing(5.0f);
	SetSizeRequest(FLT_MAX, FLT_MAX);
}