9 imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_n.png");
10 imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_s.png");
11 imageE = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_e.png");
12 imageO = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/not_o.png");
13 null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
16 set_size_request(image->get_width(), image->get_height());
18 menulist.push_back( Gtk::Menu_Helpers::ImageMenuElem("Conectar", menu_image_linea,SigC::slot(*this, &CItem::on_menu_popup_conectar) ) ) ;
25 bool Not::on_button_press_event(GdkEventButton *event)
28 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
29 CItem::logic_connect = true;
31 combo_entry->set_text(name);
32 WorkPlace::pointed = ID;
35 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 2)){
37 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);
69 set_size_request(image->get_width(),image->get_height());
70 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);
72 if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){
73 menu_popup.popup(event->button, event->time);
74 return true; //It has been handled.
76 workplace->queue_draw();
79 void Not::on_menu_popup_rotar()
82 event.type = GDK_BUTTON_PRESS;
84 Not::on_button_press_event(&event);
87 void Not::save(FILE *archivo)
89 vec_connector.clear();
92 char c_img[50], c_x[50], c_y[50], c_id[50];
93 sprintf(c_id,"%d",ID);
94 sprintf(c_img,"\t\t<orientacion>%d</orientacion>\n",imgActual);
95 sprintf(c_x,"\t\t<x>%d</x>\n",x);
96 sprintf(c_y,"\t\t<y>%d</y>\n",y);
97 dato = "\t<not nombre=\""+name+"\" id=\"";
103 for ( int i=0; i<=vec_connector.size()-1; i++) {
104 if ( vec_connector[i].type == IN ) {
105 dato += "\t\t<entrada>";
106 dato += vec_connector[i].name_dest + "</entrada>\n";
108 dato += "\t\t<salida>";
109 dato += vec_connector[i].name_dest + "</salida>\n";
112 dato += "\t</not>\n";
113 fprintf(archivo, dato.c_str() );
116 bool Not::check_connection()
118 int cant_in = 0, cant_out =0;
119 t_logic_connector temp;
120 std::list<t_line>::iterator i = workplace->lista_lineas_in.begin();
121 while ( i != workplace->lista_lineas_in.end() ) {
122 if ( (*i).logic->get_id() == ID ) {
124 temp.name_dest = (*i).store->get_name();
125 vec_connector.push_back(temp);
131 i = workplace->lista_lineas_out.begin();
132 while ( i != workplace->lista_lineas_out.end() ) {
133 if ( (*i).logic->get_id() == ID ) {
135 temp.name_dest = (*i).store->get_name();
136 vec_connector.push_back(temp);
142 //FIXME la not tiene que tener una sola salida y una sola entrada!!!!!
143 return true;// (cant_in == cant_out );
146 ConnectorType Not::detect_click_position(int _a, int _b)
150 if ( (_a<=32 )&&(_a>=22)&&(_b<=20)&&(_b>=10) )
152 if ( (_a<=10)&&(_a>=0)&&(_b<=20)&&(_b>=10) )
156 if ( (_a<=20 )&&(_a>=10)&&(_b<=32)&&(_b>=22) )
158 if ( (_a<=20)&&(_a>=10)&&(_b<=10)&&(_b>=0) )
162 if ( (_a<=10 )&&(_a>=0)&&(_b<=20)&&(_b>=10) )
164 if ( (_a<=32)&&(_a>=22)&&(_b<=20)&&(_b>=10) )
168 if ( (_a<=20 )&&(_a>=10)&&(_b<=10)&&(_b>=0) )
170 if ( (_a<=20)&&(_a>=10)&&(_b<=32)&&(_b>=22) )
176 void Not::update_logic_position()
205 void Not::get_in_logic_connect_position(int& _a, int& _b)
211 void Not::get_out_logic_connect_position(int& _a, int& _b)