]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/item.cpp
-Se conectan como trompada!!!!!
[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         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         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 int CItem::get_position_x()
64 {
65         return x;
66 }
67
68 int CItem::get_position_y()
69 {
70         return y;
71 }
72
73 int CItem::get_id()
74 {
75         return ID;
76 }
77
78 double CItem::get_caudal()
79 {
80         return caudal_max;
81 }
82
83
84 Glib::ustring CItem::get_name()
85 {
86         return name;
87 }
88
89 Glib::ustring CItem::get_other_name(int _id)
90 {
91         std::list<CItem *>::iterator i = listaItems->begin();
92         while ( i != listaItems->end() ) {
93                 if ( (*i)->get_id() == _id ) 
94                         return (*i)->get_name();
95                 i++;
96         }
97         return name;
98 }
99
100 int CItem::get_img_actual()
101 {
102         return imgActual;
103 }
104
105 void CItem::set_position(int _x, int _y)
106 {
107         this->x = _x;
108         this->y = _y;
109 }
110
111 void CItem::set_id(int _id)
112 {
113         ID = _id;
114 }
115
116 void CItem::set_caudal(double _caudal)
117 {
118          caudal_max = _caudal;
119 }
120
121 void CItem::set_name(Glib::ustring _name)
122 {
123         name = _name;
124 }
125
126 bool CItem::is_occupied_area(int _a, int _b)
127 {       
128         if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
129                         return true;
130                 else return false;
131 }
132
133 ConnectorType CItem::is_other_connection_area(int _a, int _b, CItem **_item)
134 {
135         ConnectorType temp2;
136         std::list<CItem *>::iterator i = listaItems->begin();
137         while ( i != listaItems->end() ) {
138                 CItem *temp = *i;
139                 if (temp != this) 
140                         if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF ) {
141                                 *_item = temp;
142                                 return temp2;
143                         }
144                 i++;
145         }
146         return UNDEF;
147 }
148 ConnectorType CItem::get_connector_type( int _a, int _b )
149 {
150         return UNDEF;
151 }
152 void CItem::set_default_connector()
153 {
154 }