]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/item.cpp
- Se actualiza la funcion save() de todos los item
[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 Glib::ustring CItem::get_other_name(int _id)
91 {
92         std::list<CItem *>::iterator i = listaItems->begin();
93         while ( i != listaItems->end() ) {
94                 if ( (*i)->get_id() == _id ) 
95                         return (*i)->get_name();
96                 i++;
97         }
98         return name;
99 }
100
101 int CItem::get_img_actual()
102 {
103         return imgActual;
104 }
105
106 void CItem::set_position(int _x, int _y)
107 {
108         this->x = _x;
109         this->y = _y;
110 }
111
112 void CItem::set_id(int _id)
113 {
114         ID = _id;
115 }
116
117 void CItem::set_caudal(double _caudal)
118 {
119          caudal_max = _caudal;
120 }
121
122 void CItem::set_name(Glib::ustring _name)
123 {
124         name = _name;
125 }
126
127 bool CItem::is_occupied_area(int _a, int _b)
128 {       
129         if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
130                         return true;
131                 else return false;
132 }
133
134 ConnectorType CItem::is_other_connection_area(int _a, int _b, CItem **_item)
135 {
136         ConnectorType temp2;
137         std::list<CItem *>::iterator i = listaItems->begin();
138         while ( i != listaItems->end() ) {
139                 CItem *temp = *i;
140                 if (temp != this) 
141                         if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF ) {
142                                 *_item = temp;
143                                 return temp2;
144                         }
145                 i++;
146         }
147         return UNDEF;
148 }
149 ConnectorType CItem::get_connector_type( int _a, int _b )
150 {
151         return UNDEF;
152 }
153 void CItem::set_default_connector()
154 {
155 }