%{CC_TEMPLATE} // DO NOT EDIT THIS FILE ! It was created using // glade-- /home/amp8165/Projects/gnome2mm/gnome2mm.glade // for gtk 2.2.4 and gtkmm 1.2.10 // // Please modify the corresponding derived classes in ./src/main_window.cpp #include "config.h" #include #include "main_window_glade.h" #include #include main_window_glade::main_window_glade( ) : Gtk::Window(GTK_WINDOW_TOPLEVEL) { main_window = this; Gtk::AccelGroup *main_window_accgrp = Gtk::AccelGroup::create(); gmm_data = new GlademmData(main_window_accgrp); main_window->set_title(_("%{APPNAME} Project")); main_window->set_modal(false); main_window->add_accel_group(*(gmm_data->getAccelGroup())); main_window->show(); main_window->delete_event.connect(SigC::slot(this, &main_window_glade::quit)); } main_window_glade::~main_window_glade() { delete gmm_data; }