]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/activezone.h
Luca, si podes lleva esto, no creo que termine nada mas hoy
[z.facultad/75.42/plaqui.git] / Constructor / activezone.h
1 #ifndef _ACTIVEZONE_H_
2 #define _ACTIVEZONE_H_
3 #include <libglademm.h>
4 #include <gtkmm.h>
5 #include <gtkmm/viewport.h>
6 #include <iostream>
7
8 class WorkPlace;
9
10 typedef struct {
11         int x,y,w,z;
12 }t_line;
13
14 class ActiveZone:public Gtk::Viewport {
15         public:
16                 ActiveZone(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml> &refGlade);
17                 virtual ~ActiveZone();
18                 virtual bool on_button_press_event(GdkEventButton *e);
19                 t_line temp;
20                 int cant_click;
21                 WorkPlace *workplace;
22 };
23 #endif