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