void Object::setContent (const std::string &part, const Evasxx::Object &content) { elm_object_part_content_set(o, part.c_str(), content.obj()); }
Scroller::Scroller (Evasxx::Object &parent) { o = elm_scroller_add (parent.obj ()); 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 (); }
void Object::setContent (const Evasxx::Object &content) { elm_object_part_content_set(o, NULL, content.obj()); }
void Bubble::setIcon (const Evasxx::Object &icon) { elm_bubble_icon_set (o, icon.obj ()); }
Label::Label (Evasxx::Object &parent) { o = elm_label_add (parent.obj ()); elmInit (); }
Bubble::Bubble (Evasxx::Object &parent) { o = elm_bubble_add (parent.obj ()); elmInit (); }
void Progressbar::setIcon (Evasxx::Object &icon) { elm_progressbar_icon_set (o, icon.obj ()); }
Slider::Slider (Evasxx::Object &parent) { o = elm_slider_add (parent.obj ()); elmInit (); }
List::List (Evasxx::Object &parent) { o = elm_list_add (parent.obj ()); elmInit (); }
Image::Image (Evasxx::Object &parent) { o = elm_image_add (parent.obj ()); elmInit (); }
void Frame::setContent (const Evasxx::Object &content) { elm_object_content_set (o, content.obj ()); }
Frame::Frame (Evasxx::Object &parent) { o = elm_frame_add (parent.obj ()); elmInit (); }
void Scroller::setContent (Evasxx::Object &child) { elm_object_content_set (o, child.obj ()); }
void Bubble::setContent (const Evasxx::Object &content) { elm_bubble_content_set (o, content.obj ()); }
Button::Button (Evasxx::Object &parent) { o = elm_button_add (parent.obj ()); elmInit (); }
Progressbar::Progressbar (Evasxx::Object &parent) { o = elm_progressbar_add (parent.obj ()); elmInit (); }