X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fui%2Fdialog%2Falign-and-distribute.cpp;h=e83907f492cb5b2e8ccb91ab132ba2382cb7b380;hb=8b9a820756fdf348239872236be2257f854e094a;hp=7d4820663b319e47bc1631218a1f1d5631601e75;hpb=34109961a6de6f936a370e48822f1bad70bc84b2;p=inkscape.git diff --git a/src/ui/dialog/align-and-distribute.cpp b/src/ui/dialog/align-and-distribute.cpp index 7d4820663..e83907f49 100644 --- a/src/ui/dialog/align-and-distribute.cpp +++ b/src/ui/dialog/align-and-distribute.cpp @@ -153,7 +153,7 @@ private : SPItem * thing = *master; selected.erase(master); //Compute the anchor point - NR::Maybe b = sp_item_bbox_desktop (thing); + boost::optional b = sp_item_bbox_desktop (thing); if (b) { mp = Geom::Point(a.mx0 * b->min()[Geom::X] + a.mx1 * b->max()[Geom::X], a.my0 * b->min()[Geom::Y] + a.my1 * b->max()[Geom::Y]); @@ -170,7 +170,7 @@ private : case AlignAndDistribute::DRAWING: { - NR::Maybe b = sp_item_bbox_desktop + boost::optional b = sp_item_bbox_desktop ( (SPItem *) sp_document_root (sp_desktop_document (desktop)) ); if (b) { mp = Geom::Point(a.mx0 * b->min()[Geom::X] + a.mx1 * b->max()[Geom::X], @@ -183,7 +183,7 @@ private : case AlignAndDistribute::SELECTION: { - NR::Maybe b = selection->bounds(); + boost::optional b = selection->bounds(); if (b) { mp = Geom::Point(a.mx0 * b->min()[Geom::X] + a.mx1 * b->max()[Geom::X], a.my0 * b->min()[Geom::Y] + a.my1 * b->max()[Geom::Y]); @@ -214,7 +214,7 @@ private : it++) { sp_document_ensure_up_to_date(sp_desktop_document (desktop)); - NR::Maybe b = sp_item_bbox_desktop (*it); + boost::optional b = sp_item_bbox_desktop (*it); if (b) { Geom::Point const sp(a.sx0 * b->min()[Geom::X] + a.sx1 * b->max()[Geom::X], a.sy0 * b->min()[Geom::Y] + a.sy1 * b->max()[Geom::Y]); @@ -318,7 +318,7 @@ private : it != selected.end(); ++it) { - NR::Maybe bbox = sp_item_bbox_desktop(*it); + boost::optional bbox = sp_item_bbox_desktop(*it); if (bbox) { sorted.push_back(BBoxSort(*it, to_2geom(*bbox), _orientation, _kBegin, _kEnd)); } @@ -590,7 +590,7 @@ private : //Check 2 or more selected objects if (selected.size() < 2) return; - NR::Maybe sel_bbox = selection->bounds(); + boost::optional sel_bbox = selection->bounds(); if (!sel_bbox) { return; } @@ -611,7 +611,7 @@ private : ++it) { sp_document_ensure_up_to_date(sp_desktop_document (desktop)); - NR::Maybe item_box = sp_item_bbox_desktop (*it); + boost::optional item_box = sp_item_bbox_desktop (*it); if (item_box) { // find new center, staying within bbox double x = _dialog.randomize_bbox->min()[Geom::X] + (*item_box).extent(Geom::X)/2 + @@ -762,7 +762,7 @@ void on_tool_changed(Inkscape::Application */*inkscape*/, SPEventContext */*cont void on_selection_changed(Inkscape::Application */*inkscape*/, Inkscape::Selection */*selection*/, AlignAndDistribute *daad) { - daad->randomize_bbox = NR::Nothing(); + daad->randomize_bbox = boost::optional(); } ///////////////////////////////////////////////////////// @@ -772,7 +772,7 @@ void on_selection_changed(Inkscape::Application */*inkscape*/, Inkscape::Selecti AlignAndDistribute::AlignAndDistribute() : UI::Widget::Panel ("", "dialogs.align", SP_VERB_DIALOG_ALIGN_DISTRIBUTE), - randomize_bbox(NR::Nothing()), + randomize_bbox(), _alignFrame(_("Align")), _distributeFrame(_("Distribute")), _removeOverlapFrame(_("Remove overlaps")), @@ -935,7 +935,7 @@ AlignAndDistribute::AlignAndDistribute() // Connect to the global selection change, to invalidate cached randomize_bbox g_signal_connect (G_OBJECT (INKSCAPE), "change_selection", G_CALLBACK (on_selection_changed), this); - randomize_bbox = NR::Nothing(); + randomize_bbox = boost::optional(); show_all_children(); @@ -1073,7 +1073,7 @@ std::list::iterator AlignAndDistribute::find_master( std::list::iterator it = list.begin(); it != list.end(); it++) { - NR::Maybe b = sp_item_bbox_desktop (*it); + boost::optional b = sp_item_bbox_desktop (*it); if (b) { gdouble dim = (*b).extent(horizontal ? Geom::X : Geom::Y); if (dim > max) { @@ -1090,7 +1090,7 @@ std::list::iterator AlignAndDistribute::find_master( std::list::iterator it = list.begin(); it != list.end(); it++) { - NR::Maybe b = sp_item_bbox_desktop (*it); + boost::optional b = sp_item_bbox_desktop (*it); if (b) { gdouble dim = (*b).extent(horizontal ? Geom::X : Geom::Y); if (dim < max) {