diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2017-02-04 10:22:35 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2017-02-04 10:22:35 +0000 |
| commit | 2a84c87bd1c6850a9bb9ad5b39f82d1dacb4b94d (patch) | |
| tree | 96d622a4e1cb20e4e86b8a7fc38dd8d72cc9356c /src/verbs.cpp | |
| parent | Disable rotate guides in doc rotation (diff) | |
| parent | Add some more comments to improve code understanding (diff) | |
| download | inkscape-2a84c87bd1c6850a9bb9ad5b39f82d1dacb4b94d.tar.gz inkscape-2a84c87bd1c6850a9bb9ad5b39f82d1dacb4b94d.zip | |
Merge in GSoC style dialog. (Work in progress.)
(bzr r15471)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index aeb742105..fce823408 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2157,6 +2157,12 @@ void DialogVerb::perform(SPAction *action, void *data) case SP_VERB_DIALOG_PRINT_COLORS_PREVIEW: dt->_dlg_mgr->showDialog("PrintColorsPreviewDialog"); break; + case SP_VERB_DIALOG_STYLE: + dt->_dlg_mgr->showDialog("StyleDialog"); + break; + case SP_VERB_DIALOG_CSS: + dt->_dlg_mgr->showDialog("CssDialog"); + break; default: break; @@ -3005,6 +3011,10 @@ Verb *Verb::_base_verbs[] = { N_("View Objects"), INKSCAPE_ICON("dialog-layers")), new DialogVerb(SP_VERB_DIALOG_TAGS, "DialogTags", N_("Selection se_ts..."), N_("View Tags"), INKSCAPE_ICON("edit-select-all-layers")), + new DialogVerb(SP_VERB_DIALOG_STYLE, "DialogStyle", N_("Style Dialog..."), + N_("View Style Dialog"), NULL), + new DialogVerb(SP_VERB_DIALOG_CSS, "DialogCss", N_("Css Dialog..."), + N_("View Css Dialog"), NULL), new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffects ..."), N_("Manage, edit, and apply path effects"), INKSCAPE_ICON("dialog-path-effects")), new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter _Editor..."), |
