X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e752c10ce2c082a8654b2abd68b2cf442275cdcd..f5a1e732bf3907cabd004932aba3256b31d9d282:/Constructor/activezone.h?ds=sidebyside diff --git a/Constructor/activezone.h b/Constructor/activezone.h index 56431bf..d4f468f 100644 --- a/Constructor/activezone.h +++ b/Constructor/activezone.h @@ -1,12 +1,23 @@ +#ifndef _ACTIVEZONE_H_ +#define _ACTIVEZONE_H_ #include #include #include #include +class WorkPlace; + +typedef struct { + int x,y,w,z; +}t_line; + class ActiveZone:public Gtk::Viewport { public: ActiveZone(BaseObjectType* cobject, const Glib::RefPtr &refGlade); virtual ~ActiveZone(); virtual bool on_button_press_event(GdkEventButton *e); + t_line temp; + int cant_click; + WorkPlace *workplace; }; - +#endif