X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/43aa212b9816129a8a2b08a8848bca407ef0129f..f5a1e732bf3907cabd004932aba3256b31d9d282:/Constructor/item.h diff --git a/Constructor/item.h b/Constructor/item.h index 4bc193f..10070b8 100644 --- a/Constructor/item.h +++ b/Constructor/item.h @@ -1,5 +1,5 @@ -#ifndef GTKMM_EXAMPLE_DRAWINGAREALINES_H -#define GTKMM_EXAMPLE_DRAWINGAREALINES_H +#ifndef _ITEM_H_ +#define _ITEM_H_ #include #include @@ -8,11 +8,25 @@ #include #include #include -#include "propertywnd.h" -#include "workplace.h" +#include +#include "itemptywnd.h" -class WorkPlace; +typedef enum { NONE, RIGHT, LEFT, MIDDLE } ConnectorSide; +typedef enum { UNDEF, IN, OUT } ConnectorType; + +class Connector { + public: + int id_dest; + ConnectorType type; + Connector& operator= (Connector & c) { + id_dest = c.id_dest; + type = c.type; + return *this; + } +}; +class WorkPlace; + class CItem:public Gtk::DrawingArea { public: CItem(); @@ -24,20 +38,39 @@ public: virtual void on_menu_popup_eliminar(); virtual void on_menu_popup_conectar(); Glib::RefPtr get_image() { return image; } - void set_position(int _x, int _y); int get_position_x(); int get_position_y(); - bool is_occupied_area(int _a, int _b); - void set_id(int _id); int get_id(); - // habria que ocultarla.......................................... + int get_img_actual(); + Glib::ustring get_name(); + double get_caudal(); + void set_position(int _x, int _y); + void set_id(int _id); + void set_caudal(double _caudal); + void set_name(Glib::ustring _name); + bool is_occupied_area(int _a, int _b); + ConnectorType is_other_connection_area(int _a, int _b); + virtual void save(FILE *archivo) = 0; + virtual bool check_connection()=0; + virtual void set_default_connector(); + virtual ConnectorType get_connector_type( int _a, int _b ); WorkPlace *workplace; + Gtk::Entry *combo_entry; + std::list *listaItems; + bool is_union; + bool is_connected; + // Hay que ocultarlo --- problemas con el get y el set!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + // 0 = izquierda/arriba , 1 = derecha/abajo , 2 = medio. tomando como referencia la imagen inicial de cada item cuando corresponda + std::vector connect_vec; protected: - int ID; + int imgActual; + int ID; + Glib::ustring name; + double caudal_max; Gtk::Menu menu_popup; Gtk::Image menu_image_delete, menu_image_rotar, menu_image_propiedades, menu_image_linea; Glib::RefPtr image; - PropertyWnd *property_wnd; + ItemPtyWnd *property_wnd; int x, y; };