diff options
| author | gustav_b <gustav_b@users.sourceforge.net> | 2007-11-22 00:14:41 +0000 |
|---|---|---|
| committer | gustav_b <gustav_b@users.sourceforge.net> | 2007-11-22 00:14:41 +0000 |
| commit | 5caa6ff4dfb7b538555d60fa2732272bf8b9828b (patch) | |
| tree | 65c6fb0232f8621fa6cecdcdf68d0790bd955777 /src/ui/dialog/document-metadata.h | |
| parent | Fix ordering of LPE parameters (no longer use map, just use vector) (diff) | |
| download | inkscape-5caa6ff4dfb7b538555d60fa2732272bf8b9828b.tar.gz inkscape-5caa6ff4dfb7b538555d60fa2732272bf8b9828b.zip | |
The dialog to panel refactoring:
* Made the current dialogs subclass the Panel class instead of the
Dialog class.
* Extended the Panel class with some functionality that the dialogs
relied on.
* Added a PanelDialog class which is a dialog container for a
single panel with the dialog behavior as a template parameter.
(* Fixed coding style for the Panel and Dialog class)
For details, see
http://www.nabble.com/Re%3A-Dockable-dialogs%2C-todo-list-p12728194.html
http://www.nabble.com/Re%3A-Inkscape-overcomes-Xara-in-Google-Trends-p13126622.html
(bzr r4126)
Diffstat (limited to 'src/ui/dialog/document-metadata.h')
| -rw-r--r-- | src/ui/dialog/document-metadata.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ui/dialog/document-metadata.h b/src/ui/dialog/document-metadata.h index 3f1fb9e57..7ee2ee216 100644 --- a/src/ui/dialog/document-metadata.h +++ b/src/ui/dialog/document-metadata.h @@ -18,10 +18,10 @@ #include <gtkmm/notebook.h> #include <glibmm/i18n.h> +#include "ui/widget/panel.h" #include "ui/widget/licensor.h" #include "ui/widget/notebook-page.h" #include "ui/widget/registry.h" -#include "dialog.h" using namespace Inkscape::UI::Widget; @@ -37,17 +37,18 @@ namespace Inkscape { typedef std::list<EntityEntry*> RDElist; -class DocumentMetadata : public Inkscape::UI::Dialog::Dialog { +class DocumentMetadata : public Inkscape::UI::Widget::Panel { public: void update(); - static DocumentMetadata *create(Behavior::BehaviorFactory behavior_factory); + + static DocumentMetadata &getInstance(); + static void destroy(); sigc::connection _doc_replaced_connection; protected: void build_metadata(); void init(); - virtual void on_response (int); Gtk::Tooltips _tt; Gtk::Notebook _notebook; @@ -62,8 +63,8 @@ protected: Registry _wr; private: - DocumentMetadata(Behavior::BehaviorFactory behavior_factory); virtual ~DocumentMetadata(); + DocumentMetadata(); }; } // namespace Dialog |
