当前位置: 首页>>代码示例>>C++>>正文


C++ Label::Set_text方法代码示例

本文整理汇总了C++中Label::Set_text方法的典型用法代码示例。如果您正苦于以下问题:C++ Label::Set_text方法的具体用法?C++ Label::Set_text怎么用?C++ Label::Set_text使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Label的用法示例。


在下文中一共展示了Label::Set_text方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1:

AG_Spinbox::AG_Spinbox()
{
	Label* label = new Label;
	label->Set_bounding_rect(Rect(margin, attributes_max_y, 200, 20));
	label->Set_text("Spinbox attributes");
	Add_widget(label);

	//Attribute Value
	New_attribute("Value");
	value.Set_bounding_rect(interface::Rect(100-margin, attributes_max_y, 100, 20));
	Add_widget(&value);
}
开发者ID:trezker,项目名称:le-bomb,代码行数:12,代码来源:AG_Spinbox.cpp

示例2:

Widget_editor::Widget_editor()
:widget(NULL)
,editing_attributes(false)
,pressed(false)
,left(false)
,right(false)
,top(false)
,bottom(false)
,move(false)
,selected(false)
{
	float margin = 4;
	attributes_max_y = 0;
	attribute_group = new Group;
	attribute_group->Set_bounding_rect(Rect(0, 0, 200, 400));

	Label* label = new Label;
	label->Set_bounding_rect(Rect(margin, attributes_max_y, 200, 20));
	label->Set_text("Base attributes");
	attribute_group->Add_widget(label);
	attributes_max_y += 20;

	//Attribute Top
	label = new Label;
	label->Set_bounding_rect(Rect(margin, attributes_max_y, 100, 20));
	label->Set_text("Top");
	attribute_group->Add_widget(label);

	w_top.Set_bounding_rect(interface::Rect(100-margin, attributes_max_y, 100, 20));
	attribute_group->Add_widget(&w_top);
	attributes_max_y += 20;

	//Attribute Left
	label = new Label;
	label->Set_bounding_rect(Rect(margin, attributes_max_y, 100, 20));
	label->Set_text("Left");
	attribute_group->Add_widget(label);

	w_left.Set_bounding_rect(interface::Rect(100-margin, attributes_max_y, 100, 20));
	attribute_group->Add_widget(&w_left);
	attributes_max_y += 20;

	//Attribute Width
	label = new Label;
	label->Set_bounding_rect(Rect(margin, attributes_max_y, 100, 20));
	label->Set_text("Width");
	attribute_group->Add_widget(label);

	w_width.Set_bounding_rect(interface::Rect(100-margin, attributes_max_y, 100, 20));
	attribute_group->Add_widget(&w_width);
	attributes_max_y += 20;

	//Attribute Height
	label = new Label;
	label->Set_bounding_rect(Rect(margin, attributes_max_y, 100, 20));
	label->Set_text("Height");
	attribute_group->Add_widget(label);

	w_height.Set_bounding_rect(interface::Rect(100-margin, attributes_max_y, 100, 20));
	attribute_group->Add_widget(&w_height);
	attributes_max_y += 20;

	attributes_height = attributes_max_y;
}
开发者ID:trezker,项目名称:le-bomb,代码行数:64,代码来源:Widget_editor.cpp


注:本文中的Label::Set_text方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。