ocarina/gui/window.cpp
Anna Schumaker 9b98788106 gui: Begin breaking out window code
I think this will help with maintainability.  We'll see ...

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-09-11 08:01:08 -04:00

17 lines
299 B
C++

/*
* Copyright 2014 (c) Anna Schumaker.
*/
#include <core/version.h>
#include <gui/ocarina.h>
const std::string appname = "Ocarina ";
Gtk::Window *window_init()
{
Gtk::Window *window = lib :: get_widget<Gtk::Window>("o_window");
window->set_title(appname + get_version());
return window;
}