diff options
| author | Nicholas Bishop <nicholasbishop@gmail.com> | 2007-08-09 06:06:33 +0000 |
|---|---|---|
| committer | nicholasbishop <nicholasbishop@users.sourceforge.net> | 2007-08-09 06:06:33 +0000 |
| commit | dcb64731332a678db8e19db49c789a1523320e66 (patch) | |
| tree | c64900c3998e69eb57a756855d5310022c26391e /src/ui | |
| parent | Fix a possible compliation problem on 64bit machines. (diff) | |
| download | inkscape-dcb64731332a678db8e19db49c789a1523320e66.tar.gz inkscape-dcb64731332a678db8e19db49c789a1523320e66.zip | |
Filter effects dialog:
* Added controls for feMorphology
(bzr r3434)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/filter-effects-dialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp index af413bc0e..3c5a351e6 100644 --- a/src/ui/dialog/filter-effects-dialog.cpp +++ b/src/ui/dialog/filter-effects-dialog.cpp @@ -1791,6 +1791,10 @@ void FilterEffectsDialog::init_settings_widgets() _settings->type(NR_FILTER_GAUSSIANBLUR); _settings->add_dualspinslider(SP_ATTR_STDDEVIATION, _("Standard Deviation"), 0.01, 100, 1, 0.01, 1); + _settings->type(NR_FILTER_MORPHOLOGY); + _settings->add_combo(SP_ATTR_OPERATOR, _("Operator"), MorphologyOperatorConverter); + _settings->add_dualspinslider(SP_ATTR_RADIUS, _("Radius"), 0, 100, 1, 0.01, 1); + _settings->type(NR_FILTER_OFFSET); _settings->add_spinslider(SP_ATTR_DX, _("Delta X"), -100, 100, 1, 0.01, 1); _settings->add_spinslider(SP_ATTR_DY, _("Delta Y"), -100, 100, 1, 0.01, 1); |
