]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/src/item.cpp
Se agrega una pequeña mejora al dibujo de las lineas. Tengo pensado mejorarlas
[z.facultad/75.42/plaqui.git] / Constructor / src / item.cpp
1 #include "item.h"
2
3 bool CItem::logic_connect = false;
4 int CItem::gate_id = -1;
5
6
7 CItem::CItem(const char *filename)
8 {
9         image = Gdk::Pixbuf::create_from_file(filename);
10         set_size_request(image->get_width(), image->get_height());
11
12         add_events(Gdk::EXPOSURE_MASK);
13 }
14
15 CItem::CItem()
16 {
17         Glib::RefPtr<Gnome::Glade::Xml> ref;
18         ref = Gnome::Glade::Xml::create(PACKAGE_DATA_DIR"/plaqui-constructor/dialogs/constructor.glade", "item_pty_wnd");
19         ref->get_widget_derived("item_pty_wnd",property_wnd);
20         caudal_max = 0.0;
21         is_union = true;
22         is_connected = false;
23         is_logic =false;
24         property_wnd->item = this;
25         menu_image_propiedades.set(Gtk::Stock::PREFERENCES, Gtk::ICON_SIZE_MENU);
26         menu_image_delete.set(Gtk::Stock::CANCEL, Gtk::ICON_SIZE_MENU);
27         menu_image_rotar.set(Gtk::Stock::REFRESH, Gtk::ICON_SIZE_MENU);
28         menu_image_linea.set(Gtk::Stock::CONVERT, Gtk::ICON_SIZE_MENU);
29         menulist = menu_popup.items();
30     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Propiedades",menu_image_propiedades, SigC::slot(*this, &CItem::on_menu_popup_propiedades) ) );
31     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Rotar", menu_image_rotar ,SigC::slot(*this, &CItem::on_menu_popup_rotar) ) );
32     menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Eliminar", menu_image_delete,SigC::slot(*this, &CItem::on_menu_popup_eliminar) ) ) ;
33         menu_popup.accelerate(*this);
34 }
35
36 CItem::~CItem()
37 {
38         std::cout << "Item Die" << std::endl;
39 }
40
41 void CItem::on_realize()
42 {
43         Gtk::DrawingArea::on_realize();
44         Glib::RefPtr<Gdk::Window> window = get_window();
45         gc = Gdk::GC::create(window);
46         
47         Glib::RefPtr<Gdk::Colormap> colormap = get_colormap();
48
49         red = Gdk::Color("red");
50         blue = Gdk::Color("blue");
51
52         colormap->alloc_color(red);
53         colormap->alloc_color(blue);
54 }
55
56 bool CItem::on_expose_event(GdkEventExpose* event)
57 {
58         get_window()->draw_pixbuf(gc, image,  0,  0,  0,  0, image->get_width() ,image->get_height(), 
59                                                                                                                                 Gdk::RGB_DITHER_NONE, 0, 0);
60
61         // XXX Esto no deberia ser necesario! en todo caso devolves false en
62         // vez de true para que siga llamando a los otros handlers :)
63         //Gtk::DrawingArea::on_expose_event(event);
64         return true;
65 }
66
67 void CItem::on_menu_popup_propiedades()
68 {
69 }
70
71 void CItem::on_menu_popup_rotar()
72 {
73 }
74
75 void CItem::on_menu_popup_eliminar()
76 {
77         workplace->delete_item(ID);
78 }
79
80 void CItem::on_menu_popup_conectar()
81 {
82 }
83
84 int CItem::get_position_x()
85 {
86         return x;
87 }
88
89 int CItem::get_position_y()
90 {
91         return y;
92 }
93
94 int CItem::get_id()
95 {
96         return ID;
97 }
98
99 double CItem::get_caudal()
100 {
101         return caudal_max;
102 }
103
104
105 Glib::ustring CItem::get_name()
106 {
107         return name;
108 }
109
110 Glib::ustring CItem::get_other_name(int _id)
111 {
112         std::list<CItem *>::iterator i = listaItems->begin();
113         while ( i != listaItems->end() ) {
114                 if ( (*i)->get_id() == _id ) 
115                         return (*i)->get_name();
116                 i++;
117         }
118         return name;
119 }
120
121 int CItem::get_img_actual()
122 {
123         return imgActual;
124 }
125
126 void CItem::set_position(int _x, int _y)
127 {
128         this->x = _x;
129         this->y = _y;
130 }
131
132 void CItem::set_id(int _id)
133 {
134         ID = _id;
135 }
136
137 void CItem::set_caudal(double _caudal)
138 {
139          caudal_max = _caudal;
140 }
141
142 void CItem::set_name(Glib::ustring _name)
143 {
144         name = _name;
145 }
146
147 bool CItem::is_occupied_area(int _a, int _b)
148 {       
149         if ( ( _a >= x ) && ( _a < x+image->get_width()) && (_b >= y) && (_b < y+image->get_height()) )  
150                         return true;
151                 else return false;
152 }
153
154 ConnectorType CItem::is_other_connection_area(int _a, int _b, CItem **_item)
155 {
156         ConnectorType temp2;
157         std::list<CItem *>::iterator i = listaItems->begin();
158         while ( i != listaItems->end() ) {
159                 CItem *temp = *i;
160                 if (temp != this) 
161                         if ( (temp2 = temp->get_connector_type(_a,_b)) != UNDEF ) {
162                                 *_item = temp;
163                                 return temp2;
164                         }
165                 i++;
166         }
167         return UNDEF;
168 }
169 ConnectorType CItem::get_connector_type( int _a, int _b )
170 {
171         return UNDEF;
172 }
173 void CItem::set_default_connector()
174 {
175 }
176
177 void CItem::get_in_logic_connect_position(int& _a, int& _b)
178 {
179         _a = x;
180         _b = y;
181 }
182
183 void CItem::get_out_logic_connect_position(int& _a, int& _b)
184 {
185         _a = x;
186         _b = y;
187 }
188
189 void CItem::update_logic_position()
190 {
191 }
192
193 void CItem::draw_connectors()
194 {
195         GdkEventExpose event;
196         if ( in_x != -1 ) {
197                 CItem::on_expose_event(&event);
198                 Glib::RefPtr<Gdk::Window> window = get_window();
199         
200                 gc->set_foreground(red);
201                 gc->set_background(red);
202                 window->draw_rectangle(gc, 1, in_x-5-x, in_y-y, 10, 10);
203                 gc->set_foreground(blue);
204                 gc->set_background(blue);
205                 window->draw_rectangle(gc, 1, out_x-5-x, out_y-y-10, 10, 10);
206         }
207 }