/** @file
* @brief New From Template main dialog - implementation
*/
/* Authors:
* Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof KosiĆski
*
* Copyright (C) 2013 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include "new-from-template.h"
#include "file.h"
#include <gtkmm/alignment.h>
namespace Inkscape {
namespace UI {
: _create_template_button(_("Create from template"))
{
set_title(_("New From Template"));
_main_widget = new TemplateLoadTab(this);
#if WITH_GTKMM_3_0
#else
#endif
#if WITH_GTKMM_3_0
#else
#endif
_create_template_button.set_sensitive(false);
show_all();
}
{
delete _main_widget;
}
{
}
{
_onClose();
}
{
response(0);
}
{
}
}
}