You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp

31 lines
918 B

%{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 <libgnome/libgnome.h>
#include "main_window_glade.h"
#include <gdk/gdkkeysyms.h>
#include <gtk--/accelgroup.h>
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;
}