From: gouldtj Date: Wed, 29 Mar 2006 05:44:52 +0000 (+0000) Subject: r11144@tres: ted | 2006-03-27 22:00:25 -0800 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1c3bd751fd0a2a4074f39c4340ea164069b20095;p=inkscape.git r11144@tres: ted | 2006-03-27 22:00:25 -0800 Changing the theory of operation. No reason to have an independed help dialog file, everything will go through the extensions dialog. --- diff --git a/src/extension/Makefile_insert b/src/extension/Makefile_insert index dcc831e72..d4590cfe6 100644 --- a/src/extension/Makefile_insert +++ b/src/extension/Makefile_insert @@ -15,8 +15,6 @@ extension_libextension_a_SOURCES = \ extension/dependency.h \ extension/error-file.cpp \ extension/error-file.h \ - extension/helpdialog.cpp \ - extension/helpdialog.h \ extension/init.cpp \ extension/init.h \ extension/parameter.h \ diff --git a/src/extension/helpdialog.cpp b/src/extension/helpdialog.cpp deleted file mode 100644 index 235e9010b..000000000 --- a/src/extension/helpdialog.cpp +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Authors: - * Ted Gould - * - * Copyright (C) 2006 Authors - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#include -#include -#include -#include -#include - -#include "../dialogs/dialog-events.h" - -#include "helpdialog.h" - -namespace Inkscape { -namespace Extension { - -HelpDialog::HelpDialog (Glib::ustring name, gchar const * help) : - Gtk::Dialog::Dialog(_("Help with ") + name, true, true) -{ - Gtk::TextView * textview = new Gtk::TextView(); - textview->set_editable(false); - textview->set_wrap_mode(Gtk::WRAP_WORD); - textview->show(); - textview->get_buffer()->set_text(help, help + strlen(help)); - - Gtk::ScrolledWindow * scrollwindow = new Gtk::ScrolledWindow(); - scrollwindow->add(*textview); - scrollwindow->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); - scrollwindow->set_shadow_type(Gtk::SHADOW_IN); - scrollwindow->show(); - - Gtk::VBox * vbox = this->get_vbox(); - vbox->pack_start(*scrollwindow, true, true, 5); - - 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 : diff --git a/src/extension/helpdialog.h b/src/extension/helpdialog.h deleted file mode 100644 index 90a426969..000000000 --- a/src/extension/helpdialog.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Authors: - * Ted Gould - * - * Copyright (C) 2006 Authors - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#ifndef INKSCAPE_EXTENSION_HELP_DIALOG_H__ -#define INKSCAPE_EXTENSION_HELP_DIALOG_H__ - -#include - -#include -#include - -namespace Inkscape { -namespace Extension { - -class HelpDialog : public Gtk::Dialog { - -public: - HelpDialog (Glib::ustring name, gchar const * help); -}; - - -};}; /* namespace Inkscape, Extension */ - -#endif /* INKSCAPE_EXTENSION_HELP_DIALOG_H__ */ - -/* - 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 :