fill-and-stroke.cpp revision 073e18ad60852ae12d4c4c28abed5c86004a3967
/**
* @file
* Fill and Stroke dialog - implementation.
*
* Based on the old sp_object_properties_dialog.
*/
/* Authors:
* Bryce W. Harrington <bryce@bryceharrington.org>
* Gustav Broberg <broberg@kth.se>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2004--2007 Authors
* Copyright (C) 2010 Jon A. Cruz
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#include "desktop-handles.h"
#include "desktop-style.h"
#include "document.h"
#include "fill-and-stroke.h"
#include "filter-chemistry.h"
#include "inkscape.h"
#include "selection.h"
#include "style.h"
#include "svg/css-ostringstream.h"
#include "ui/icon-names.h"
#include "verbs.h"
#include "widgets/fill-style.h"
#include "widgets/icon.h"
#include "widgets/paint-selector.h"
#include "widgets/stroke-style.h"
#include "xml/repr.h"
#include "ui/view/view-widget.h"
namespace Inkscape {
namespace UI {
namespace Dialog {
FillAndStroke::FillAndStroke()
: UI::Widget::Panel ("", "/dialogs/fillstroke", SP_VERB_DIALOG_FILL_STROKE),
_page_fill(1, 1, true, true),
_page_stroke_paint(1, 1, true, true),
_page_stroke_style(1, 1, true, true),
_composite_settings(SP_VERB_DIALOG_FILL_STROKE, "fillstroke", UI::Widget::SimpleFilterModifier::BLUR),
deskTrack(),
targetDesktop(0),
fillWdgt(0),
strokeWdgt(0),
desktopChangeConn()
{
Gtk::Box *contents = _getContents();
contents->set_spacing(2);
contents->pack_start(_notebook, true, true);
_notebook.append_page(_page_fill, _createPageTabLabel(_("_Fill"), INKSCAPE_ICON("object-fill")));
_notebook.append_page(_page_stroke_paint, _createPageTabLabel(_("Stroke _paint"), INKSCAPE_ICON("object-stroke")));
_notebook.append_page(_page_stroke_style, _createPageTabLabel(_("Stroke st_yle"), INKSCAPE_ICON("object-stroke-style")));
_layoutPageFill();
_layoutPageStrokePaint();
_layoutPageStrokeStyle();
contents->pack_start(_composite_settings, false, false, 0);
show_all_children();
_composite_settings.setSubject(&_subject);
// Connect this up last
desktopChangeConn = deskTrack.connectDesktopChanged( sigc::mem_fun(*this, &FillAndStroke::setTargetDesktop) );
deskTrack.connect(GTK_WIDGET(gobj()));
}
FillAndStroke::~FillAndStroke()
{
_composite_settings.setSubject(NULL);
desktopChangeConn.disconnect();
deskTrack.disconnect();
}
void FillAndStroke::setDesktop(SPDesktop *desktop)
{
Panel::setDesktop(desktop);
deskTrack.setBase(desktop);
}
void FillAndStroke::setTargetDesktop(SPDesktop *desktop)
{
if (targetDesktop != desktop) {
targetDesktop = desktop;
if (fillWdgt) {
sp_fill_style_widget_set_desktop(fillWdgt, desktop);
}
if (strokeWdgt) {
sp_fill_style_widget_set_desktop(strokeWdgt, desktop);
}
if (strokeStyleWdgt) {
sp_stroke_style_widget_set_desktop(strokeStyleWdgt, desktop);
}
_composite_settings.setSubject(&_subject);
}
}
void
FillAndStroke::_layoutPageFill()
{
fillWdgt = manage(sp_fill_style_widget_new());
_page_fill.table().attach(*fillWdgt, 0, 1, 0, 1);
}
void
FillAndStroke::_layoutPageStrokePaint()
{
strokeWdgt = manage(sp_stroke_style_paint_widget_new());
_page_stroke_paint.table().attach(*strokeWdgt, 0, 1, 0, 1);
}
void
FillAndStroke::_layoutPageStrokeStyle()
{
//Gtk::Widget *strokeStyleWdgt = manage(Glib::wrap(sp_stroke_style_line_widget_new()));
//Gtk::Widget *strokeStyleWdgt = static_cast<Gtk::Widget *>(sp_stroke_style_line_widget_new());
strokeStyleWdgt = sp_stroke_style_line_widget_new();
_page_stroke_style.table().attach(*strokeStyleWdgt, 0, 1, 0, 1);
}
void
FillAndStroke::showPageFill()
{
present();
_notebook.set_current_page(0);
}
void
FillAndStroke::showPageStrokePaint()
{
present();
_notebook.set_current_page(1);
}
void
FillAndStroke::showPageStrokeStyle()
{
present();
_notebook.set_current_page(2);
}
Gtk::HBox&
FillAndStroke::_createPageTabLabel(const Glib::ustring& label, const char *label_image)
{
Gtk::HBox *_tab_label_box = manage(new Gtk::HBox(false, 4));
_tab_label_box->pack_start(*Glib::wrap(sp_icon_new(Inkscape::ICON_SIZE_DECORATION,
label_image)));
Gtk::Label *_tab_label = manage(new Gtk::Label(label, true));
_tab_label_box->pack_start(*_tab_label);
_tab_label_box->show_all();
return *_tab_label_box;
}
} // namespace Dialog
} // namespace UI
} // namespace Inkscape
/*
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:fileencoding=utf-8:textwidth=99 :