]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/item.cpp
ahora si se puede guardar un archivo, igual todavia hay que definir bien el formato
[z.facultad/75.42/plaqui.git] / Constructor / item.cpp
1 #include "item.h"
2 #include "workplace.h"
3
4 CItem::CItem(const char *filename):Gtk::DrawingArea()
5 {
6         image = Gdk::Pixbuf::create_from_file(filename);
7         set_size_request(image->get_width(), image->get_height());
8 }
9
10 CItem::CItem()
11 {
12         Glib::RefPtr<Gnome::Glade::Xml> ref;
13         ref = Gnome::Glade::Xml::create("constructor.glade", "item_pty_wnd");
14         ref->get_widget_derived("item_pty_wnd",property_wnd);
15         caudal_max = 0.0;
16         property_wnd->item = this;
17         menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
18         menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
19         menu_image_rotar.set(Gtk::Stock::REFRESH, Gtk::ICON_SIZE_MENU);
20         menu_image_linea.set(Gtk::Stock::CONVERT, Gtk::ICON_SIZE_MENU);
21         Gtk::Menu::MenuList& menulist = menu_popup.items();
22     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Propiedades",menu_image_propiedades, SigC::slot(*this, &CItem::on_menu_popup_propiedades) ) );
23     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Rotar", menu_image_rotar ,SigC::slot(*this, &CItem::on_menu_popup_rotar) ) );
24     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Eliminar", menu_image_delete,SigC::slot(*this, &CItem::on_menu_popup_eliminar) ) ) ;
25         menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
26         menu_popup.accelerate(*this);
27 }
28
29 CItem::~CItem()
30 {
31         std::cout << "Item Die" << std::endl;
32 }
33
34 bool CItem::on_expose_event(GdkEventExpose* event)
35 {
36         image->render_to_drawable ( get_window(),  get_style()->get_black_gc(), 0,  0,  0,  0,  image->get_width() ,image->get_height() , 
37                                                                                                                                 Gdk::RGB_DITHER_NONE, 0, 0);
38
39         // XXX Esto no deberia ser necesario! en todo caso devolves false en
40         // vez de true para que siga llamando a los otros handlers :)
41         //Gtk::DrawingArea::on_expose_event(event);
42         return true;
43 }
44
45 void CItem::on_menu_popup_propiedades()
46 {
47 }
48
49 void CItem::on_menu_popup_rotar()
50 {
51 }
52
53 void CItem::on_menu_popup_eliminar()
54 {
55         workplace->delete_item(ID);
56 }
57
58 void CItem::on_menu_popup_conectar()
59 {
60 }
61
62 void CItem::set_position(int _x, int _y)
63 {
64         this->x = _x;
65         this->y = _y;
66 }
67
68 void CItem::set_id(int _id)
69 {
70         ID = _id;
71 }
72
73 void CItem::set_caudal(double _caudal)
74 {
75          caudal_max = _caudal;
76 }
77
78 void CItem::set_name(Glib::ustring _name)
79 {
80         name = _name;
81 }
82
83 void CItem::set_conector_in(int _in)
84 {
85         conector_in = _in;
86 }
87
88 void CItem::set_conector_out(int _out)
89 {
90         conector_out = _out;
91 }
92
93 int CItem::get_position_x()
94 {
95         return x;
96 }
97
98 int CItem::get_position_y()
99 {
100         return y;
101 }
102
103 int CItem::get_id()
104 {
105         return ID;
106 }
107
108 double CItem::get_caudal()
109 {
110         return caudal_max;
111 }
112
113
114 Glib::ustring CItem::get_name()
115 {
116         return name;
117 }
118
119 int CItem::get_conector_in()
120 {
121         return conector_in;
122 }
123
124 int CItem::get_conector_out()
125 {
126         return conector_out;
127 }
128
129 bool CItem::is_occupied_area(int _a, int _b)
130 {       
131         if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
132                         return true;
133                 else return false;
134 }