diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/Makefile_insert | 2 | ||||
| -rw-r--r-- | src/extension/helpdialog.cpp | 62 | ||||
| -rw-r--r-- | src/extension/helpdialog.h | 41 |
3 files changed, 0 insertions, 105 deletions
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 <ted@gould.cx> - * - * Copyright (C) 2006 Authors - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#include <gtkmm/stock.h> -#include <gtkmm/dialog.h> -#include <gtkmm/scrolledwindow.h> -#include <gtkmm/textview.h> -#include <glibmm/i18n.h> - -#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 <ted@gould.cx> - * - * 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 <glibmm/ustring.h> - -#include <gdkmm/types.h> -#include <gtkmm/dialog.h> - -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 : |
