+
+void Cistern::on_menu_popup_propiedades()
+{
+ GdkEventButton event;
+ event.type = GDK_2BUTTON_PRESS;
+ event.button = 1;
+ Cistern::on_button_press_event(&event);
+}
+
+void Cistern::set_capacidad(double _cap)
+{
+ capacidad = _cap;
+}
+
+double Cistern::get_capacidad()
+{
+ return capacidad;
+}
+
+void Cistern::set_contenido_inicial(double _ini)
+{
+ contenido_inicial = _ini;
+}
+
+double Cistern::get_contenido_inicial()
+{
+ return contenido_inicial;
+}