X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/4c30f5939017e47c70f79df3a9f737d9ea743db5..4f94fbe0a1d217c7410e5396aad365c85f1fc5af:/Client/src/principal.cpp?ds=sidebyside diff --git a/Client/src/principal.cpp b/Client/src/principal.cpp index 845de81..7b441ee 100644 --- a/Client/src/principal.cpp +++ b/Client/src/principal.cpp @@ -16,6 +16,8 @@ #include #include +#define INFINITO 99999999 + Principal::Principal(BaseObjectType *co, const Glib::RefPtr &rg):Gtk::Window(co),refXml(rg) { Gtk::MenuItem *conect=0, *exit=0, *about=0, *mnu_prop=0, *mnu_disconnect=0; @@ -71,6 +73,10 @@ Principal::Principal(BaseObjectType *co, const Glib::RefPtr & update_ui.connect( SigC::slot(*this, &Principal::update_items_prop ) ); load_xml_dispatch.connect( SigC::slot(*this, &Principal::loadXML ) ); gc = Gdk::GC::create(get_window()); + color_low = Gdk::Color("blue"); + color_high = Gdk::Color("red"); + Gtk::Widget::get_default_colormap()->alloc_color(color_low); + Gtk::Widget::get_default_colormap()->alloc_color(color_high); } Principal::~Principal() @@ -105,6 +111,11 @@ bool Principal::on_workplace_expose_event(GdkEventExpose *e) ViewItem *tmp = find_item(*linea); x2 = tmp->x + tmp->out_x; y2 = tmp->y + tmp->out_y; + if (tmp->get_open()) { + gc->set_foreground(color_high); + } else { + gc->set_foreground(color_low); + } gc->set_line_attributes(3, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER); window->draw_line(gc, x2+tmp->item_offset_x, y2+tmp->item_offset_y, x2+tmp->item_offset_x, y1+i->second->offset_y); window->draw_line(gc, x2+tmp->item_offset_x, y1+i->second->offset_y, x1+i->second->offset_x, y1+i->second->offset_y); @@ -117,6 +128,11 @@ bool Principal::on_workplace_expose_event(GdkEventExpose *e) ViewItem *tmp = find_item(*linea); x2 = tmp->x + tmp->in_x; y2 = tmp->y + tmp->in_y; + if (i->second->get_open()) { + gc->set_foreground(color_high); + } else { + gc->set_foreground(color_low); + } gc->set_line_attributes(3, Gdk::LINE_SOLID, Gdk::CAP_NOT_LAST, Gdk::JOIN_MITER); window->draw_line(gc, x1+i->second->offset_x, y1+i->second->offset_y, x1+i->second->offset_x, y2+tmp->item_offset_y); window->draw_line(gc, x1+i->second->offset_x, y2+tmp->item_offset_y, x2+tmp->item_offset_x, y2+tmp->item_offset_y); @@ -283,7 +299,7 @@ void Principal::update_items_prop() for(i=mapItems.begin(); i!=mapItems.end(); i++) { i->second->queue_draw(); } - + work_place->queue_draw(); } void Principal::on_conexion_frame(const std::string &frame) @@ -767,7 +783,11 @@ void Principal::read_status_xml(const std::string &frame) tmp_b = get_bool_from_xml(items->children); item_name = (char *)xmlGetProp(items, BAD_CAST"name"); mapItems[item_name]->set_open(tmp_b); - } else if (xmlStrcmp(items->name, BAD_CAST"color")==0) { + } else if (xmlStrcmp(items->name, BAD_CAST"logic")==0) { + tmp_b = get_bool_from_xml(items->children); + item_name = (char *)xmlGetProp(items, BAD_CAST"name"); + mapItems[item_name]->set_open(tmp_b); + } else if (xmlStrcmp(items->name, BAD_CAST"color")==0) { item_name = (char *)xmlGetProp(items, BAD_CAST"name"); mapItems[item_name]->set_color( get_rgb_from_xml(items->children) ); } else if (xmlStrcmp(items->name, BAD_CAST"tank")==0) { @@ -799,7 +819,7 @@ void Principal::read_status_xml(const std::string &frame) Gdk::Color Principal::get_rgb_from_xml(xmlNodePtr nodo) { - unsigned r,g,b; + gushort r,g,b; while (nodo != NULL) { if (nodo->type == XML_ELEMENT_NODE) { if (xmlStrcmp(nodo->name, BAD_CAST"r")==0) @@ -811,14 +831,15 @@ Gdk::Color Principal::get_rgb_from_xml(xmlNodePtr nodo) } nodo = nodo->next; } - r = 65535 * r / 255; - g = 65535 * g / 255; - b = 65535 * b / 255; + r = static_cast(65535 * (r / 255.0f)); + g = static_cast(65535 * (g / 255.0f)); + b = static_cast(65535 * (b / 255.0f)); Gdk::Color c; c.set_rgb(r,g,b); return c; } + float Principal::get_float_from_xml(xmlNodePtr nodo) { float tmp = -1; @@ -831,6 +852,7 @@ float Principal::get_float_from_xml(xmlNodePtr nodo) } nodo = nodo->next; } + if (tmp == INFINITO) tmp = 0; return tmp; }