From 4ae7b32dc09eb7acd9411a8af63a767660aa64ec Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 17 Dec 2020 20:50:19 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro (cherry picked from commit 3e3d9eda9d1dd8c67c1c27c6a9bdc68bdecfcc30) --- .../gnome2mmapp/main_window_glade.cpp | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp (limited to 'languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp') diff --git a/languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp b/languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp new file mode 100644 index 00000000..577d3576 --- /dev/null +++ b/languages/cpp/app_templates/gnome2mmapp/main_window_glade.cpp @@ -0,0 +1,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 +#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; +} -- cgit v1.2.3