X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/a0481d50f6da9cac5efd3502c3657b3fc461ec0d..43fc1b3f57852f2af098fa7411e83220015aaa6f:/Client/src/item_codo.cpp diff --git a/Client/src/item_codo.cpp b/Client/src/item_codo.cpp index 76aefe1..8b088f8 100644 --- a/Client/src/item_codo.cpp +++ b/Client/src/item_codo.cpp @@ -1,25 +1,26 @@ #include "item_codo.h" -Codo::Codo(Glib::ustring _name, int orientacion):Item(_name) +ViewCodo::ViewCodo(Glib::ustring _name, int orientacion):ViewItem(_name) { switch (orientacion) { case 0: - image = Gdk::Pixbuf::create_from_file("codo_o.png"); + image.set("codo_o.png"); break; case 1: - image = Gdk::Pixbuf::create_from_file("codo_n.png"); + image.set("codo_n.png"); break; case 2: - image = Gdk::Pixbuf::create_from_file("codo_e.png"); + image.set("codo_e.png"); break; case 3: - image = Gdk::Pixbuf::create_from_file("codo_s.png"); + image.set("codo_s.png"); } - set_size_request(image->get_width(), image->get_height()); + image.show(); + set_size_request(); } -Codo::~Codo() +ViewCodo::~ViewCodo() { }