From: Nicolás Dimov Date: Tue, 18 Nov 2003 03:28:14 +0000 (+0000) Subject: borro los activezone X-Git-Tag: svn_import~270 X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/commitdiff_plain/ac8c756883349b0d5cae173fe8f5058dbfb10375 borro los activezone --- diff --git a/Constructor/activezone.cpp b/Constructor/activezone.cpp deleted file mode 100644 index f23eefc..0000000 --- a/Constructor/activezone.cpp +++ /dev/null @@ -1,31 +0,0 @@ -#include "activezone.h" -#include "workplace.h" - -ActiveZone::ActiveZone(BaseObjectType* cobject, const Glib::RefPtr &refGlade):Gtk::Viewport(cobject) -{ - cant_click=1; -} - -ActiveZone::~ActiveZone() -{ -} - -bool ActiveZone::on_button_press_event(GdkEventButton *event) -{ - if ( (event->type == GDK_BUTTON_PRESS) && (event->button == 1) ) { - if (cant_click ==2) { - get_pointer(temp.w, temp.z); - cant_click--; - workplace->lista_lineas.push_back(temp); - workplace->get_window()->draw_line (get_style()->get_black_gc(), temp.x,temp.y,temp.w,temp.z); - } - } - - if ( (event->type == GDK_BUTTON_PRESS) && (event->button == 1) ) { - if (cant_click == 1) { - get_pointer(temp.x,temp.y); - cant_click++; - } - } - return true; -} diff --git a/Constructor/activezone.h b/Constructor/activezone.h deleted file mode 100644 index d4f468f..0000000 --- a/Constructor/activezone.h +++ /dev/null @@ -1,23 +0,0 @@ -#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 diff --git a/Constructor/cistern.cpp b/Constructor/cistern.cpp index 5f2a4fa..6bdb208 100644 --- a/Constructor/cistern.cpp +++ b/Constructor/cistern.cpp @@ -41,8 +41,7 @@ bool Cistern::on_button_press_event(GdkEventButton *event) tmp_line.store = this; workplace->lista_lineas.push_back(tmp_line); workplace->on_expose_event(&e); - - } + } CItem::logic_connect = false; }