summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0586708)
raw | patch | inline | side by side (parent: 0586708)
author | gouldtj <gouldtj@users.sourceforge.net> | |
Wed, 29 Mar 2006 05:44:52 +0000 (05:44 +0000) | ||
committer | gouldtj <gouldtj@users.sourceforge.net> | |
Wed, 29 Mar 2006 05:44:52 +0000 (05:44 +0000) |
Changing the theory of operation. No reason to have an independed
help dialog file, everything will go through the extensions dialog.
help dialog file, everything will go through the extensions dialog.
src/extension/Makefile_insert | patch | blob | history | |
src/extension/helpdialog.cpp | [deleted file] | patch | blob | history |
src/extension/helpdialog.h | [deleted file] | patch | blob | history |
index dcc831e726b8283ee6f4d2325d886469fb64de8d..d4590cfe6c9476fde7f821b8109ed030083b7ecc 100644 (file)
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
+++ /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
+++ /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 :