X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fui%2Fdialog%2Fextension-editor.h;h=fe171f60c163168b326cb6ac4f8bb8004c541ab9;hb=438aa633b778c772e72fc75918155647ed50cde8;hp=70825d193e5f686030e76f86c0a08c016397adbf;hpb=01ca801621b78fb1d5ec7c27c0f34ac6eb0b5f6c;p=inkscape.git diff --git a/src/ui/dialog/extension-editor.h b/src/ui/dialog/extension-editor.h index 70825d193..fe171f60c 100644 --- a/src/ui/dialog/extension-editor.h +++ b/src/ui/dialog/extension-editor.h @@ -1,7 +1,7 @@ -/** - * \brief Extension editor - * - * Authors: +/** @file + * @brief Extension editor dialog + */ +/* Authors: * Bryce W. Harrington * Ted Gould * @@ -13,7 +13,7 @@ #ifndef INKSCAPE_UI_DIALOG_EXTENSION_EDITOR_H #define INKSCAPE_UI_DIALOG_EXTENSION_EDITOR_H -#include "dialog.h" +#include "ui/widget/panel.h" #include @@ -21,49 +21,65 @@ #include #include #include +#include +#include "extension/extension.h" namespace Inkscape { namespace UI { namespace Dialog { -class ExtensionEditor : public Dialog { +class ExtensionEditor : public UI::Widget::Panel { public: ExtensionEditor(); virtual ~ExtensionEditor(); - static ExtensionEditor *create() { return new ExtensionEditor(); } + static ExtensionEditor &getInstance() { return *new ExtensionEditor(); } static void show_help (gchar const * extension_id); protected: - Gtk::Frame _page_frame; - Gtk::Label _page_title; - Gtk::TreeView _page_list; + /** \brief The view of the list of extensions on the left of the dialog */ + Gtk::TreeView _page_list; + /** \brief The model for the list of extensions */ Glib::RefPtr _page_list_model; + /** \brief The notebook page that contains information */ + Gtk::ScrolledWindow _notebook_info; + /** \brief The notebook page that contains help info */ + Gtk::ScrolledWindow _notebook_help; + /** \brief The notebook page that holds all the parameters */ + Gtk::ScrolledWindow _notebook_params; //Pagelist model columns: class PageListModelColumns : public Gtk::TreeModel::ColumnRecord { public: + /** \brief Creates the Page List model by adding all of the + members of the class as column records. */ PageListModelColumns() { Gtk::TreeModelColumnRecord::add(_col_name); - Gtk::TreeModelColumnRecord::add(_col_page); Gtk::TreeModelColumnRecord::add(_col_id); } + /** \brief Name of the extension */ Gtk::TreeModelColumn _col_name; - Gtk::TreeModelColumn _col_id; - Gtk::TreeModelColumn _col_page; + /** \brief ID of the extension */ + Gtk::TreeModelColumn _col_id; }; PageListModelColumns _page_list_columns; - Gtk::TreeModel::Path _path_tools; - Gtk::TreeModel::Path _path_shapes; - private: + /** \brief A 'global' variable to help search through and select + an item in the extension list */ + Glib::ustring _selection_search; + ExtensionEditor(ExtensionEditor const &d); ExtensionEditor& operator=(ExtensionEditor const &d); - void on_pagelist_selection_changed(); + void on_pagelist_selection_changed(void); + static void dbfunc (Inkscape::Extension::Extension * in_plug, gpointer in_data); + Gtk::TreeModel::iterator add_extension (Inkscape::Extension::Extension * ext); + bool setExtensionIter(const Gtk::TreeModel::iterator &iter); +public: + void setExtension(Glib::ustring extension_id); }; } // namespace Dialog