From 179fa413b047bede6e32109e2ce82437c5fb8d34 Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Mon, 16 Jan 2006 02:36:01 +0000 Subject: moving trunk for module inkscape (bzr r1) --- src/extension/prefdialog.cpp | 48 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/extension/prefdialog.cpp (limited to 'src/extension/prefdialog.cpp') diff --git a/src/extension/prefdialog.cpp b/src/extension/prefdialog.cpp new file mode 100644 index 000000000..40eb037b6 --- /dev/null +++ b/src/extension/prefdialog.cpp @@ -0,0 +1,48 @@ +/* + * Authors: + * Ted Gould + * + * Copyright (C) 2005 Authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include +#include + +#include "../dialogs/dialog-events.h" + +#include "prefdialog.h" + +namespace Inkscape { +namespace Extension { + +PrefDialog::PrefDialog (Glib::ustring name, Gtk::Widget * controls) : + Gtk::Dialog::Dialog(name + _(" Preferences"), true, true) +{ + this->get_vbox()->pack_start(*controls, true, true, 5); + + add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); + + Gtk::Button * ok = add_button(Gtk::Stock::OK, Gtk::RESPONSE_OK); + set_default_response(Gtk::RESPONSE_OK); + ok->grab_focus(); + + GtkWidget *dlg = GTK_WIDGET(gobj()); + sp_transientize(dlg); + + return; +} + +}; }; /* namespace Inkscape, Extension */ + +/* + 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 : -- cgit v1.2.3