]> git.llucax.com Git - z.facultad/75.42/plaqui.git/commitdiff
ahora compila, y se pueden guardar los datos de los items.
authorNicolás Dimov <ndimov@gmail.com>
Sat, 8 Nov 2003 22:10:24 +0000 (22:10 +0000)
committerNicolás Dimov <ndimov@gmail.com>
Sat, 8 Nov 2003 22:10:24 +0000 (22:10 +0000)
Constructor/cistern.cpp
Constructor/cistern.h
Constructor/cisternptywnd.cpp
Constructor/cisternptywnd.h
Constructor/conduct.h
Constructor/item.cpp
Constructor/item.h
Constructor/itemptywnd.cpp
Constructor/itemptywnd.h
Constructor/propertywnd.cpp
Constructor/propertywnd.h

index fdb9aa1d0346470e9ca7faafe595f21b0d7904f0..7fb292ddc0ad7cc3292d3791d48b139710303415 100644 (file)
@@ -1,4 +1,5 @@
 #include "cistern.h"
+#include "cisternptywnd.h"
 
 Cistern::Cistern()
 {
@@ -8,7 +9,7 @@ Cistern::Cistern()
        imgActual = 0;
        image = imageE;
        set_size_request(image->get_width(), image->get_height());
-       
+
        Glib::RefPtr<Gnome::Glade::Xml> ref = Gnome::Glade::Xml::create("constructor.glade", "cistern_pty_wnd");
        ref->get_widget_derived("cistern_pty_wnd",cistern_pty_wnd);
        cistern_pty_wnd->cistern = this;
index 3dca54310b01a8d631249f0f385a9883cba0958e..2bb8c981a87742b950006e1583f358f78d54c274 100644 (file)
@@ -1,9 +1,8 @@
 #ifndef _CISTERN_H_
 #define _CISTERN_H_
 
-#include "item.h"
-#include "cisternptywnd.h"
 #include <iostream>
+#include "item.h"
 
 class CisternPtyWnd;
 
index c19de007014e99bc5e2f06ed45bf600c3d73463c..dcd475886a17ba02019e7fc034c3d4de513f4e64 100644 (file)
@@ -1,8 +1,8 @@
 #include "cisternptywnd.h"
+#include "cistern.h"
 
 CisternPtyWnd::CisternPtyWnd(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade):PropertyWnd(cobject, refGlade)
 {
-       refGlade = Gnome::Glade::Xml::create("constructor.glade", "cistern_pty_wnd");
        refGlade->get_widget("spin_capacidad", spin_capacidad);
        refGlade->get_widget("spin_inicial", spin_inicial);
        refGlade->get_widget("txt_cistern_name", txt_cistern_name);
index 186837b469f22eec268f431b498944c943aea91a..16e51adb967a157d2e99b63d68b498301e998063 100644 (file)
@@ -2,7 +2,6 @@
 #define _CISTERNPTYWND_H_
 
 #include "propertywnd.h"
-#include "cistern.h"
 
 class Cistern;
 
index 4735d822dccf1aa2cab0246a64b08fcb31301206..78878a82e2a29b6d6274f30fbcea216c92a13e62 100644 (file)
@@ -1,4 +1,3 @@
-// Conduct.h
 #ifndef _CONDUCT_H_
 #define _CONDUCT_H_
 
index c2410d54e31a8b8b3729c47781913b7f9d4ca828..08af2cfecea9d6beca45211cfa282ac234546ff7 100644 (file)
@@ -1,5 +1,5 @@
 #include "item.h"
-#include <iostream>
+#include "workplace.h"
 
 CItem::CItem(const char *filename):Gtk::DrawingArea()
 {
index f9e460cc3750979b3e308ea20e7b4c7168324370..9b8eabd7be1f22dbf1cc00f6577a4a52ac6e174a 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef GTKMM_EXAMPLE_DRAWINGAREALINES_H
-#define GTKMM_EXAMPLE_DRAWINGAREALINES_H
+#ifndef _ITEM_H_
+#define _ITEM_H_
 
 #include <iostream>
 #include <gtkmm/drawingarea.h>
@@ -9,7 +9,6 @@
 #include <gdkmm.h>
 #include <libglademm.h>
 #include "itemptywnd.h"
-#include "workplace.h"
 
 class WorkPlace;
        
index d1d00c8b111aa0092c71046232ea5b9c784d4dec..be27282c8bccf5d18486918b599f67d09963bc38 100644 (file)
@@ -1,4 +1,5 @@
 #include "itemptywnd.h"
+#include "item.h"
 
 ItemPtyWnd::ItemPtyWnd(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade):PropertyWnd(cobject,refGlade)
 {
index daaa32e5b001aa309ffe3567cd9cb36b959c970e..d6fd3262182efbc2de0a63736354c58bdbffe260 100644 (file)
@@ -1,6 +1,5 @@
-//cisternptywnd.h
-#ifndef _CISTERNPTYWND_H_
-#define _CISTERNPTYWND_H_
+#ifndef _ITEMPTYWND_H_
+#define _ITEMPTYWND_H_
 
 #include "propertywnd.h"
 
@@ -10,6 +9,7 @@ class ItemPtyWnd : public PropertyWnd {
                virtual ~ItemPtyWnd();
                Gtk::SpinButton *spin_caudal;
                Gtk::Entry *txt_item_name;
+       protected:
                virtual void on_btn_cancel_clicked();
                virtual void on_btn_accept_clicked();
                virtual void on_btn_apply_clicked();
index 1bd3643df2c7b568ddde790ea6f9f9192f1fafc9..b233ca94228a1d36ce03aa3adc28c57f175c3450 100644 (file)
@@ -1,8 +1,5 @@
 #include "propertywnd.h"
-
-PropertyWnd::PropertyWnd()
-{      
-}
+#include "item.h"
 
 PropertyWnd::PropertyWnd(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade): Gtk::Window(cobject)
 {
index ef8fbdfb904f41fbd215f72f3fb199fea885db2a..fa488af8510448c06060da99b3e9a4ee7b8d3621 100644 (file)
@@ -6,13 +6,11 @@
 #include <gtkmm/spinbutton.h>
 #include <gtkmm/entry.h>
 #include <libglademm.h>
-#include "item.h"
 
 class CItem;
        
 class PropertyWnd : public Gtk::Window{
        public:
-               PropertyWnd();
                PropertyWnd(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
                virtual ~PropertyWnd();
                CItem *item;