~moduli16/inkscape/recolor

« back to all changes in this revision

Viewing changes to src/ui/dialog/dialog-manager.cpp

  • Committer: tavmjong-free
  • Date: 2012-10-11 17:54:14 UTC
  • Revision ID: tavmjong@free.fr-20121011175414-j1i7huls4h70n91n
Add symbols dialog. See: http://wiki.inkscape.org/wiki/index.php/SymbolsDialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "ui/dialog/memory.h"
34
34
#include "ui/dialog/messages.h"
35
35
#include "ui/dialog/scriptdialog.h"
 
36
#include "ui/dialog/symbols.h"
36
37
#include "ui/dialog/tile.h"
37
38
#include "ui/dialog/tracedialog.h"
38
39
#include "ui/dialog/transformation.h"
121
122
        registerFactory("SvgFontsDialog",      &create<SvgFontsDialog,       FloatingBehavior>);
122
123
#endif
123
124
        registerFactory("Swatches",            &create<SwatchesPanel,        FloatingBehavior>);
 
125
        registerFactory("Symbols",             &create<SymbolsDialog,        FloatingBehavior>);
124
126
        registerFactory("TileDialog",          &create<TileDialog,           FloatingBehavior>);
125
127
        registerFactory("Trace",               &create<TraceDialog,          FloatingBehavior>);
126
128
        registerFactory("Transformation",      &create<Transformation,       FloatingBehavior>);
156
158
        registerFactory("SvgFontsDialog",      &create<SvgFontsDialog,       DockBehavior>);
157
159
#endif
158
160
        registerFactory("Swatches",            &create<SwatchesPanel,        DockBehavior>);
 
161
        registerFactory("Symbols",             &create<SymbolsDialog,        DockBehavior>);
159
162
        registerFactory("TileDialog",          &create<TileDialog,           DockBehavior>);
160
163
        registerFactory("Trace",               &create<TraceDialog,          DockBehavior>);
161
164
        registerFactory("Transformation",      &create<Transformation,       DockBehavior>);