]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Constructor/ventana.cpp
Otro que me sube los .bak! :)
[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         btn_salir.signal_released().connect(SigC::slot(*this,&Ventana::on_btn_salir_pressed ));
7 }
8
9 Ventana::~Ventana()
10 {
11 }
12
13 void Ventana::on_btn_salir_pressed()
14 {
15         Gtk::Main::quit();
16 }