]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/item.cpp
-ahi borre lo que se me escapo
[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         is_union = true;
17         property_wnd->item = this;
18         menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
19         menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
20         menu_image_rotar.set(Gtk::Stock::REFRESH, Gtk::ICON_SIZE_MENU);
21         menu_image_linea.set(Gtk::Stock::CONVERT, Gtk::ICON_SIZE_MENU);
22         Gtk::Menu::MenuList& menulist = menu_popup.items();
23     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Propiedades",menu_image_propiedades, SigC::slot(*this, &CItem::on_menu_popup_propiedades) ) );
24     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Rotar", menu_image_rotar ,SigC::slot(*this, &CItem::on_menu_popup_rotar) ) );
25     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Eliminar", menu_image_delete,SigC::slot(*this, &CItem::on_menu_popup_eliminar) ) ) ;
26         menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
27         menu_popup.accelerate(*this);
28 }
29
30 CItem::~CItem()
31 {
32         std::cout << "Item Die" << std::endl;
33 }
34
35 bool CItem::on_expose_event(GdkEventExpose* event)
36 {
37         image->render_to_drawable ( get_window(),  get_style()->get_black_gc(), 0,  0,  0,  0,  image->get_width() ,image->get_height() , 
38                                                                                                                                 Gdk::RGB_DITHER_NONE, 0, 0);
39
40         // XXX Esto no deberia ser necesario! en todo caso devolves false en
41         // vez de true para que siga llamando a los otros handlers :)
42         //Gtk::DrawingArea::on_expose_event(event);
43         return true;
44 }
45
46 void CItem::on_menu_popup_propiedades()
47 {
48 }
49
50 void CItem::on_menu_popup_rotar()
51 {
52 }
53
54 void CItem::on_menu_popup_eliminar()
55 {
56         workplace->delete_item(ID);
57 }
58
59 void CItem::on_menu_popup_conectar()
60 {
61 }
62
63 void CItem::set_position(int _x, int _y)
64 {
65         this->x = _x;
66         this->y = _y;
67 }
68
69 void CItem::set_id(int _id)
70 {
71         ID = _id;
72 }
73
74 void CItem::set_caudal(double _caudal)
75 {
76          caudal_max = _caudal;
77 }
78
79 void CItem::set_name(Glib::ustring _name)
80 {
81         name = _name;
82 }
83
84 void CItem::set_conector_in(int _in)
85 {
86         conector_in = _in;
87 }
88
89 void CItem::set_conector_out(int _out)
90 {
91         conector_out = _out;
92 }
93
94 int CItem::get_position_x()
95 {
96         return x;
97 }
98
99 int CItem::get_position_y()
100 {
101         return y;
102 }
103
104 int CItem::get_id()
105 {
106         return ID;
107 }
108
109 double CItem::get_caudal()
110 {
111         return caudal_max;
112 }
113
114
115 Glib::ustring CItem::get_name()
116 {
117         return name;
118 }
119
120 int CItem::get_conector_in()
121 {
122         return conector_in;
123 }
124
125 int CItem::get_conector_out()
126 {
127         return conector_out;
128 }
129
130 int CItem::get_img_actual()
131 {
132         return imgActual;
133 }
134
135 bool CItem::is_occupied_area(int _a, int _b)
136 {       
137         if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
138                         return true;
139                 else return false;
140 }
141
142 bool CItem::is_other_connection_area(int _a, int _b)
143 {
144         std::list<CItem *>::iterator i = listaItems->begin();
145         while ( i != listaItems->end() ){
146                 CItem *temp = *i;
147                 if ( temp->is_connection_area(_a,_b) )
148                         return true;
149                 i++;
150         }
151         return false;
152 }