diff options
| author | Felipe Corr??a da Silva Sanches <juca@members.fsf.org> | 2008-06-25 02:53:34 +0000 |
|---|---|---|
| committer | JucaBlues <JucaBlues@users.sourceforge.net> | 2008-06-25 02:53:34 +0000 |
| commit | e2f580d1cc567fdae480d31e4f73cb0640e0d057 (patch) | |
| tree | dd57a7aced933c660843baa0695accbbd90f505a /src/ui/dialog/dialog-manager.cpp | |
| parent | Warning cleanup (diff) | |
| download | inkscape-e2f580d1cc567fdae480d31e4f73cb0640e0d057.tar.gz inkscape-e2f580d1cc567fdae480d31e4f73cb0640e0d057.zip | |
adding a dialog for SVG Fonts
(bzr r6056)
Diffstat (limited to 'src/ui/dialog/dialog-manager.cpp')
| -rw-r--r-- | src/ui/dialog/dialog-manager.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ui/dialog/dialog-manager.cpp b/src/ui/dialog/dialog-manager.cpp index 15ebcef5a..a2b839607 100644 --- a/src/ui/dialog/dialog-manager.cpp +++ b/src/ui/dialog/dialog-manager.cpp @@ -33,6 +33,7 @@ #include "ui/dialog/memory.h" #include "ui/dialog/messages.h" #include "ui/dialog/scriptdialog.h" +#include "ui/dialog/svg-fonts-dialog.h" #include "ui/dialog/text-properties.h" #include "ui/dialog/tracedialog.h" #include "ui/dialog/transformation.h" @@ -105,6 +106,9 @@ DialogManager::DialogManager() { registerFactory("Memory", &create<Memory, FloatingBehavior>); registerFactory("Messages", &create<Messages, FloatingBehavior>); registerFactory("Script", &create<ScriptDialog, FloatingBehavior>); +#ifdef ENABLE_SVG_FONTS + registerFactory("SvgFontsDialog", &create<SvgFontsDialog, FloatingBehavior>); +#endif registerFactory("Swatches", &create<SwatchesPanel, FloatingBehavior>); registerFactory("TextProperties", &create<TextProperties, FloatingBehavior>); registerFactory("TileDialog", &create<TileDialog, FloatingBehavior>); @@ -133,6 +137,9 @@ DialogManager::DialogManager() { registerFactory("Memory", &create<Memory, DockBehavior>); registerFactory("Messages", &create<Messages, DockBehavior>); registerFactory("Script", &create<ScriptDialog, DockBehavior>); +#ifdef ENABLE_SVG_FONTS + registerFactory("SvgFontsDialog", &create<SvgFontsDialog, DockBehavior>); +#endif registerFactory("Swatches", &create<SwatchesPanel, DockBehavior>); registerFactory("TextProperties", &create<TextProperties, DockBehavior>); registerFactory("TileDialog", &create<TileDialog, DockBehavior>); |
