예제 #1
0
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 ();
}
예제 #3
0
파일: Window.cpp 프로젝트: gzorin/e17
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
0
void Object::setContent (const Evasxx::Object &content)
{
  elm_object_part_content_set(o, NULL, content.obj());
}
예제 #5
0
파일: Bubble.cpp 프로젝트: gzorin/e17
void Bubble::setIcon (const Evasxx::Object &icon)
{
  elm_bubble_icon_set (o, icon.obj ());
}
예제 #6
0
Label::Label (Evasxx::Object &parent)
{
    o = elm_label_add (parent.obj ());

    elmInit ();
}
예제 #7
0
파일: Bubble.cpp 프로젝트: gzorin/e17
Bubble::Bubble (Evasxx::Object &parent)
{
  o = elm_bubble_add (parent.obj ());
  
  elmInit ();
}
예제 #8
0
파일: Progressbar.cpp 프로젝트: gzorin/e17
void Progressbar::setIcon (Evasxx::Object &icon)
{
  elm_progressbar_icon_set (o, icon.obj ());
}
예제 #9
0
파일: Slider.cpp 프로젝트: Limsik/e17
Slider::Slider (Evasxx::Object &parent)
{
  o = elm_slider_add (parent.obj ());
  
  elmInit ();
}
예제 #10
0
List::List (Evasxx::Object &parent)
{
  o = elm_list_add (parent.obj ());
  
  elmInit ();
}
예제 #11
0
파일: Image.cpp 프로젝트: Limsik/e17
Image::Image (Evasxx::Object &parent)
{
  o = elm_image_add (parent.obj ());
  
  elmInit ();
}
예제 #12
0
파일: Frame.cpp 프로젝트: Limsik/e17
void Frame::setContent (const Evasxx::Object &content)
{
  elm_object_content_set (o, content.obj ());
}
예제 #13
0
파일: Frame.cpp 프로젝트: Limsik/e17
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 ());
}
예제 #15
0
파일: Bubble.cpp 프로젝트: gzorin/e17
void Bubble::setContent (const Evasxx::Object &content)
{
  elm_bubble_content_set (o, content.obj ());
}
예제 #16
0
파일: Button.cpp 프로젝트: Limsik/e17
Button::Button (Evasxx::Object &parent)
{
  o = elm_button_add (parent.obj ());
  
  elmInit ();
}
예제 #17
0
파일: Progressbar.cpp 프로젝트: gzorin/e17
Progressbar::Progressbar (Evasxx::Object &parent)
{
  o = elm_progressbar_add (parent.obj ());
  
  elmInit ();
}