summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 73430a3)
raw | patch | inline | side by side (parent: 73430a3)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Mon, 9 Mar 2009 00:40:52 +0000 (00:40 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Mon, 9 Mar 2009 00:40:52 +0000 (00:40 +0000) |
src/selcue.cpp | patch | blob | history | |
src/selcue.h | patch | blob | history |
diff --git a/src/selcue.cpp b/src/selcue.cpp
index 67c9712d1f14b2a73b6f34417bb642ce1357022b..714daaa7ea980da371a87faa0c8d07d09fd5c8ae 100644 (file)
--- a/src/selcue.cpp
+++ b/src/selcue.cpp
_selection = sp_desktop_selection(_desktop);
_sel_changed_connection = _selection->connectChanged(
- sigc::hide(sigc::mem_fun(*this, &Inkscape::SelCue::_updateItemBboxes))
+ sigc::hide(sigc::mem_fun(*this, &Inkscape::SelCue::_newItemBboxes))
);
_sel_modified_connection = _selection->connectModified(
_sel_changed_connection.disconnect();
_sel_modified_connection.disconnect();
- for (std::list<SPCanvasItem*>::iterator i = _item_bboxes.begin(); i != _item_bboxes.end(); i++) {
+ for (std::vector<SPCanvasItem*>::iterator i = _item_bboxes.begin(); i != _item_bboxes.end(); i++) {
gtk_object_destroy(*i);
}
_item_bboxes.clear();
- for (std::list<SPCanvasItem*>::iterator i = _text_baselines.begin(); i != _text_baselines.end(); i++) {
+ for (std::vector<SPCanvasItem*>::iterator i = _text_baselines.begin(); i != _text_baselines.end(); i++) {
gtk_object_destroy(*i);
}
_text_baselines.clear();
void Inkscape::SelCue::_updateItemBboxes()
{
- for (std::list<SPCanvasItem*>::iterator i = _item_bboxes.begin(); i != _item_bboxes.end(); i++) {
- gtk_object_destroy(*i);
+ Inkscape::Preferences *prefs = Inkscape::Preferences::get();
+ gint mode = prefs->getInt("/options/selcue/value", MARK);
+ if (mode == NONE) {
+ return;
+ }
+
+ g_return_if_fail(_selection != NULL);
+
+ int prefs_bbox = prefs->getBool("/tools/bounding_box");
+ SPItem::BBoxType bbox_type = !prefs_bbox ?
+ SPItem::APPROXIMATE_BBOX : SPItem::GEOMETRIC_BBOX;
+
+ GSList const *items = _selection->itemList();
+ if (_item_bboxes.size() != g_slist_length((GSList *) items)) {
+ _newItemBboxes();
+ return;
}
- _item_bboxes.clear();
- for (std::list<SPCanvasItem*>::iterator i = _text_baselines.begin(); i != _text_baselines.end(); i++) {
+ int bcount = 0;
+ for (GSList const *l = _selection->itemList(); l != NULL; l = l->next) {
+ SPItem *item = (SPItem *) l->data;
+ SPCanvasItem* box = _item_bboxes[bcount ++];
+
+ if (box) {
+ Geom::OptRect const b = sp_item_bbox_desktop(item, bbox_type);
+
+ if (b) {
+ sp_canvas_item_show(box);
+ if (mode == MARK) {
+ SP_CTRL(box)->moveto(Geom::Point(b->min()[Geom::X], b->max()[Geom::Y]));
+ } else if (mode == BBOX) {
+ SP_CTRLRECT(box)->setRectangle(*b);
+ }
+ } else { // no bbox
+ sp_canvas_item_hide(box);
+ }
+ }
+ }
+
+ _newTextBaselines();
+}
+
+
+void Inkscape::SelCue::_newItemBboxes()
+{
+ for (std::vector<SPCanvasItem*>::iterator i = _item_bboxes.begin(); i != _item_bboxes.end(); i++) {
gtk_object_destroy(*i);
}
- _text_baselines.clear();
+ _item_bboxes.clear();
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
gint mode = prefs->getInt("/options/selcue/value", MARK);
if (box) {
_item_bboxes.push_back(box);
}
+ }
+
+ _newTextBaselines();
+}
+
+void Inkscape::SelCue::_newTextBaselines()
+{
+ for (std::vector<SPCanvasItem*>::iterator i = _text_baselines.begin(); i != _text_baselines.end(); i++) {
+ gtk_object_destroy(*i);
+ }
+ _text_baselines.clear();
+
+ for (GSList const *l = _selection->itemList(); l != NULL; l = l->next) {
+ SPItem *item = (SPItem *) l->data;
SPCanvasItem* baseline_point = NULL;
if (SP_IS_TEXT(item) || SP_IS_FLOWTEXT(item)) { // visualize baseline
Inkscape::Text::Layout const *layout = te_get_layout(item);
- if (layout != NULL) {
+ if (layout != NULL && layout->outputExists()) {
Geom::Point a = layout->characterAnchorPoint(layout->begin()) * sp_item_i2d_affine(item);
baseline_point = sp_canvas_item_new(sp_desktop_controls(_desktop), SP_TYPE_CTRL,
"mode", SP_CTRL_MODE_XOR,
}
}
+
/*
Local Variables:
mode:c++
diff --git a/src/selcue.h b/src/selcue.h
index 42ebc9878c4b04fc84df5dd9d337881b57ecc3c6..c9266ac9a464a52f77c8826c25be999ac961d365 100644 (file)
--- a/src/selcue.h
+++ b/src/selcue.h
private:
void _updateItemBboxes();
+ void _newItemBboxes();
+ void _newTextBaselines();
SPDesktop *_desktop;
Selection *_selection;
sigc::connection _sel_changed_connection;
sigc::connection _sel_modified_connection;
- std::list<SPCanvasItem*> _item_bboxes;
- std::list<SPCanvasItem*> _text_baselines;
+ std::vector<SPCanvasItem*> _item_bboxes;
+ std::vector<SPCanvasItem*> _text_baselines;
};
}