new-from-template.cpp revision a44d3ad5c12db209f90b52a5a07465ec7c47f873
/** @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
*/
#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"));
show_all();
}
void NewFromTemplate::_createFromTemplate()
{
_onClose();
}
void NewFromTemplate::_onClose()
{
response(0);
}
{
}
}
}