summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-03-29 05:44:52 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-03-29 05:44:52 +0000
commite1f1444ddd0e0eb05b478033d406acc0748cfe0f (patch)
tree8913f9af98c0bcc1ae5cf873a05d9faf99c2ad54 /src
parentr11143@tres: ted | 2006-03-27 21:54:21 -0800 (diff)
downloadinkscape-e1f1444ddd0e0eb05b478033d406acc0748cfe0f.tar.gz
inkscape-e1f1444ddd0e0eb05b478033d406acc0748cfe0f.zip
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. (bzr r362)
Diffstat (limited to 'src')
-rw-r--r--src/extension/Makefile_insert2
-rw-r--r--src/extension/helpdialog.cpp62
-rw-r--r--src/extension/helpdialog.h41
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 :