/**
* @file
* Dialog for naming calligraphic profiles.
*
* @note This file is in the wrong directory because of link order issues -
* it is required by widgets/toolbox.cpp, and libspwidgets.a comes after
* libinkdialogs.a in the current link order.
*/
/* Author:
* Aubanel MONNIER
*
* Copyright (C) 2007 Authors
* Released under GNU GPL. Read the file 'COPYING' for more information
*/
#include "calligraphic-profile-rename.h"
#if WITH_GTKMM_3_0
#else
#endif
#include "desktop.h"
namespace Inkscape {
namespace UI {
namespace Dialog {
#if WITH_GTKMM_3_0
#else
#endif
_applied(false)
{
set_title(_("Edit profile"));
#if WITH_GTKMM_3_0
#else
#endif
#if WITH_GTKMM_3_0
#else
#endif
// Buttons
_close_button.set_use_stock(true);
_delete_button.set_use_underline(true);
_delete_button.set_visible(false);
_apply_button.set_use_underline(true);
}
{
_applied = true;
_deleted = false;
_close();
}
{
_applied = true;
_deleted = true;
_close();
}
{
}
{
if (profile_name.empty()) {
} else {
}
dial.property_destroy_with_parent() = true;
// dial.Gtk::Dialog::show();
//dial.present();
}
} // namespace Dialog
} // namespace UI
} // namespace Inkscape
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :