本文整理汇总了C++中evasxx::Object::obj方法的典型用法代码示例。如果您正苦于以下问题:C++ Object::obj方法的具体用法?C++ Object::obj怎么用?C++ Object::obj使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类evasxx::Object
的用法示例。
在下文中一共展示了Object::obj方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setContent
void Object::setContent (const std::string &part, const Evasxx::Object &content)
{
elm_object_part_content_set(o, part.c_str(), content.obj());
}
示例2: elmInit
Scroller::Scroller (Evasxx::Object &parent)
{
o = elm_scroller_add (parent.obj ());
elmInit ();
}
示例3: elmInit
Window::Window (Evasxx::Object &parent, const std::string &name, Elm_Win_Type type)
{
o = elm_win_add (parent.obj (), name.c_str (), type);
elmInit ();
}
示例4: setIcon
void Bubble::setIcon (const Evasxx::Object &icon)
{
elm_bubble_icon_set (o, icon.obj ());
}
示例5: elmInit
Label::Label (Evasxx::Object &parent)
{
o = elm_label_add (parent.obj ());
elmInit ();
}
示例6: elmInit
Bubble::Bubble (Evasxx::Object &parent)
{
o = elm_bubble_add (parent.obj ());
elmInit ();
}
示例7: setIcon
void Progressbar::setIcon (Evasxx::Object &icon)
{
elm_progressbar_icon_set (o, icon.obj ());
}
示例8: elmInit
Slider::Slider (Evasxx::Object &parent)
{
o = elm_slider_add (parent.obj ());
elmInit ();
}
示例9: elmInit
Image::Image (Evasxx::Object &parent)
{
o = elm_image_add (parent.obj ());
elmInit ();
}
示例10: setContent
void Frame::setContent (const Evasxx::Object &content)
{
elm_object_content_set (o, content.obj ());
}
示例11: elmInit
Frame::Frame (Evasxx::Object &parent)
{
o = elm_frame_add (parent.obj ());
elmInit ();
}
示例12: setContent
void Scroller::setContent (Evasxx::Object &child)
{
elm_object_content_set (o, child.obj ());
}
示例13: setContent
void Bubble::setContent (const Evasxx::Object &content)
{
elm_bubble_content_set (o, content.obj ());
}
示例14: elmInit
Button::Button (Evasxx::Object &parent)
{
o = elm_button_add (parent.obj ());
elmInit ();
}
示例15: elmInit
Progressbar::Progressbar (Evasxx::Object &parent)
{
o = elm_progressbar_add (parent.obj ());
elmInit ();
}