]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/ventana.cpp
compilo y anduvosvn up! groso
[z.facultad/75.42/plaqui.git] / Constructor / ventana.cpp
1 //ventana.cpp
2 #include "ventana.h"
3 Ventana::Ventana(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade):
4 Gtk::Window(cobject) 
5 {
6         refGlade->get_widget("button9", btn_salir);
7         btn_salir->signal_released().connect(SigC::slot(*this,&Ventana::on_btn_salir_pressed ));
8 }
9
10 Ventana::~Ventana()
11 {
12 }
13
14 void Ventana::on_btn_salir_pressed()
15 {
16         Gtk::Main::quit();
17 }