3 Not::Not(int orientacion)
6 in_connected = out_connected = false;
7 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_n.png");
8 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_s.png");
9 imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
10 imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_o.png");
11 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
12 imgActual = orientacion;
43 set_size_request(image->get_width(), image->get_height());
45 menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
52 bool Not::on_button_press_event(GdkEventButton *event)
55 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
56 WorkPlace::pointed = ID;
58 if (CItem::logic_connect) {
59 if (CItem::gate_id != -1) {
60 if ( detect_click_position((int)event->x, (int)event->y) == IN && !in_connected && !workplace->get_logic_item(CItem::gate_id)->get_out_logic_connect()) {
61 tmp_line.logic_id = CItem::gate_id;
62 workplace->get_logic_item(CItem::gate_id)->set_out_connected(true);
63 set_in_connected(true);
64 tmp_line.store_id = ID;
65 workplace->lista_lineas_logic.push_back(tmp_line);
66 workplace->queue_draw();
71 if ( detect_click_position((int)event->x, (int)event->y ) == OUT && !out_connected ) {
74 if ( detect_click_position((int)event->x, (int)event->y ) == IN && !in_connected) {
78 list_pointed->push_back(name);
79 combo_entry->set_popdown_strings(*list_pointed);
80 combo_entry->get_entry()->set_text (name);
81 workplace->queue_draw();
84 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
86 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
118 set_size_request(image->get_width(),image->get_height());
119 image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0);
121 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
122 menu_popup.popup(event->button, event->time);
123 return true; //It has been handled.
125 workplace->queue_draw();
128 void Not::on_menu_popup_rotar()
130 GdkEventButton event;
131 event.type = GDK_BUTTON_PRESS;
133 Not::on_button_press_event(&event);
136 void Not::save(FILE *archivo)
138 vec_connector.clear();
141 char c_img[50], c_x[50], c_y[50], c_id[50];
142 sprintf(c_id,"%d",ID);
143 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
144 sprintf(c_x,"\t\t<x>%d</x>\n",x);
145 sprintf(c_y,"\t\t<y>%d</y>\n",y);
146 dato = "\t<not nombre=\""+name+"\" id=\"";
152 for ( int i=0; i<=vec_connector.size()-1&&!vec_connector.empty(); i++) {
153 if ( vec_connector[i].type == IN ) {
154 dato += "\t\t<entrada>";
155 dato += vec_connector[i].name_dest + "</entrada>\n";
157 dato += "\t\t<salida>";
158 dato += vec_connector[i].name_dest + "</salida>\n";
161 dato += "\t</not>\n";
162 fprintf(archivo, dato.c_str() );
165 bool Not::check_connection()
167 int cant_in = 0, cant_out =0;
168 t_logic_connector temp;
169 std::list<t_line>::iterator i = workplace->lista_lineas_in.begin();
170 while ( i != workplace->lista_lineas_in.end() ) {
171 if ( workplace->get_logic_item((*i).logic_id)->get_id() == ID ) {
173 temp.name_dest = workplace->get_item((*i).store_id)->get_name();
174 vec_connector.push_back(temp);
180 i = workplace->lista_lineas_out.begin();
181 while ( i != workplace->lista_lineas_out.end() ) {
182 if (workplace->get_logic_item((*i).logic_id)->get_id() == ID ) {
184 temp.name_dest = workplace->get_item((*i).store_id)->get_name();
185 vec_connector.push_back(temp);
190 return true;// (in_connected == out_connected ) ==true;
193 ConnectorType Not::detect_click_position(int _a, int _b)
197 if ( (_a<=32 )&&(_a>=22)&&(_b<=20)&&(_b>=10) )
199 if ( (_a<=10)&&(_a>=0)&&(_b<=20)&&(_b>=10) )
203 if ( (_a<=20 )&&(_a>=10)&&(_b<=32)&&(_b>=22) )
205 if ( (_a<=20)&&(_a>=10)&&(_b<=10)&&(_b>=0) )
209 if ( (_a<=10 )&&(_a>=0)&&(_b<=20)&&(_b>=10) )
211 if ( (_a<=32)&&(_a>=22)&&(_b<=20)&&(_b>=10) )
215 if ( (_a<=20 )&&(_a>=10)&&(_b<=10)&&(_b>=0) )
217 if ( (_a<=20)&&(_a>=10)&&(_b<=32)&&(_b>=22) )
223 void Not::update_logic_position()
252 void Not::get_in_logic_connect_position(int& _a, int& _b)
258 void Not::get_out_logic_connect_position(int& _a, int& _b)
264 void Not::set_out_connected(bool _o)
269 void Not::set_in_connected(bool _o)
274 bool Not::get_out_logic_connect()
276 return out_connected;
279 void Not::draw_connectors()
281 Glib::RefPtr<Gdk::Window> window = get_window();
308 gc->set_foreground(red);
309 gc->set_background(red);
310 window->draw_rectangle(gc, 1, a, b, 10, 10);
311 gc->set_foreground(blue);
312 gc->set_background(blue);
313 window->draw_rectangle(gc, 1, c, d, 10, 10);