summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp
blob: 577d35767703697971f1ab90faac4e77578c94f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%{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;
}