Conduct::Conduct(int orientacion)
{
+ in_x = -1;
imageN = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_n.png");
imageS = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/canio_s.png");
null = Gdk::Pixbuf::create_from_file(PACKAGE_DATA_DIR"/plaqui-constructor/pixmaps/null.png");
bool Conduct::on_button_press_event(GdkEventButton *event)
{
if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 1)) {
- combo_entry->set_text(name);
+ list_pointed->push_back(name);
+ combo_entry->set_popdown_strings(*list_pointed);
WorkPlace::pointed = ID;
+ combo_entry->get_entry()->set_text (name);
+ workplace->queue_draw();
}
if ((event->type == GDK_BUTTON_PRESS) && ( event->button ==2)){
else return is_connected;
}
+/*si no estoy conectado pregunto por el del otro lado, y ahi puedo setear los dos
+ *si ya estoy devuelvo.
+*/
ConnectorType Conduct::get_connector_type(int _a, int _b)
{
CItem *_item;
}
return UNDEF;
}
-/*si no estoy conectado pregunto por el del otro lado, y ahi puedo setear los dos
- *si ya estoy devuelvo.
-*/
+
void Conduct::set_default_connector()
{