object-composite-settings.cpp revision 9d2da14dec9f62765544a573f9151d83b85d0909
/*
* A widget for controlling object compositing (filter, opacity, etc.)
*
* Authors:
* Bryce W. Harrington <bryce@bryceharrington.org>
* Gustav Broberg <broberg@kth.se>
*
* Copyright (C) 2004--2007 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "desktop-handles.h"
#include "desktop-style.h"
#include "document.h"
#include "filter-chemistry.h"
#include "inkscape.h"
#include "inkscape-stock.h"
#include "selection.h"
#include "style.h"
#include "svg/css-ostringstream.h"
#include "verbs.h"
#include "ui/widget/object-composite-settings.h"
#include "display/sp-canvas.h"
namespace Inkscape {
namespace UI {
namespace Widget {
) {
if (w->_subject) {
}
}
ObjectCompositeSettings::ObjectCompositeSettings(unsigned int verb_code, char const *history_prefix)
: _verb_code(verb_code),
_opacity_vbox(false, 0),
_opacity_label_box(false, 0),
_fe_vbox(false, 0),
_blocked(false)
{
// Filter Effects
_fe_cb.signal_blend_blur_changed().connect(sigc::mem_fun(*this, &ObjectCompositeSettings::_blendBlurValueChanged));
// Opacity
_opacity_hscale.set_draw_value(false);
_opacity_adjustment.signal_value_changed().connect(sigc::mem_fun(*this, &ObjectCompositeSettings::_opacityValueChanged));
_desktop_activated = g_signal_connect ( G_OBJECT (INKSCAPE), "activate_desktop", G_CALLBACK (&ObjectCompositeSettings::_on_desktop_switch), this );
}
}
if (subject) {
_subject_changed = _subject->connectChanged(sigc::mem_fun(*this, &ObjectCompositeSettings::_subjectChanged));
}
}
void
{
if (!_subject) {
return;
}
if (!desktop) {
return;
}
if (_blocked)
return;
_blocked = true;
// FIXME: fix for GTK breakage, see comment in SelectedStyle::on_opacity_changed; here it results in crash 1580903
if (!bbox) {
return;
}
const bool remfilter = (blendmode == "normal" && radius == 0) || (blendmode == "filter" && !filter);
//apply created filter to every selected item
if (!SP_IS_ITEM(*i)) {
continue;
}
if(remfilter) {
remove_filter (item, false);
}
else {
if(blendmode != "filter")
}
//request update
}
}
sp_document_maybe_done (sp_desktop_document (desktop), _blur_tag.c_str(), _verb_code, _("Change blur"));
// resume interruptibility
_blocked = false;
}
void
{
if (!_subject) {
return;
}
if (!desktop) {
return;
}
if (_blocked)
return;
_blocked = true;
// FIXME: fix for GTK breakage, see comment in SelectedStyle::on_opacity_changed; here it results in crash 1580903
// UPDATE: crash fixed in GTK+ 2.10.7 (bug 374378), remove this as soon as it's reasonably common
// (though this only fixes the crash, not the multiple change events)
_("Change opacity"));
// resume interruptibility
_blocked = false;
}
void
if (!_subject) {
return;
}
if (!desktop) {
return;
}
if (_blocked)
return;
_blocked = true;
switch (result) {
case QUERY_STYLE_NOTHING:
_opacity_hbox.set_sensitive(false);
// gtk_widget_set_sensitive (opa, FALSE);
break;
case QUERY_STYLE_SINGLE:
case QUERY_STYLE_MULTIPLE_AVERAGED: // TODO: treat this slightly differently
_opacity_hbox.set_sensitive(true);
break;
}
//query now for current filter mode and average blurring of selection
switch(blend_result) {
case QUERY_STYLE_NOTHING:
_fe_cb.set_sensitive(false);
break;
case QUERY_STYLE_SINGLE:
_fe_cb.set_sensitive(true);
break;
// TODO: set text
_fe_cb.set_sensitive(false);
break;
}
switch (blur_result) {
case QUERY_STYLE_NOTHING: //no blurring
_fe_cb.set_blur_sensitive(false);
break;
case QUERY_STYLE_SINGLE:
if (bbox) {
_fe_cb.set_blur_sensitive(true);
//update blur widget value
}
break;
}
}
_blocked = false;
}
}
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :