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.
31 lines
918 B
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.cc
|
|
|
|
#include "config.h"
|
|
#include <libgnome/libgnome.h>
|
|
#include "main_window_glade.hh"
|
|
#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;
|
|
}
|