1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
|
/* Dia -- an diagram creation/manipulation program
* Copyright (C) 1998 Alexander Larsson
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "intl.h"
#include "diagramdata.h"
#include "diarenderer.h"
#include "dynamic_obj.h"
static const Rectangle invalid_extents = { -1.0,-1.0,-1.0,-1.0 };
/*! The default object renderer.
* @param obj An object to render.
* @param renderer The renderer to render on.
* @param active_layer The layer containing the object.
* @param data The diagram containing the layer.
* \ingroup DiagramStructure
*/
static void
normal_render(DiaObject *obj, DiaRenderer *renderer,
int active_layer,
gpointer data)
{
DIA_RENDERER_GET_CLASS(renderer)->draw_object(renderer, obj, NULL);
}
/*!
* bounding box debug helper : environment variable DIA_RENDER_BOUNDING_BOXES
* set to !0 to see the calculated bounding boxes
*/
int
render_bounding_boxes (void)
{
static int rbb = FALSE;
static int once = TRUE;
if (once) {
rbb = g_getenv ("DIA_RENDER_BOUNDING_BOXES") != NULL;
once = FALSE;
}
return rbb;
}
/*!
* \brief Render all components of a single layer.
*
* This function also handles rendering of bounding boxes for debugging purposes.
* @param layer The layer to render.
* @param renderer The renderer to draw things with.
* @param update The rectangle that requires update. Only objects that
* intersect with this rectangle will actually be get rendered.
* @param obj_renderer A function that will render an object.
* @param data The diagram that the layer belongs to.
* @param active_layer Which number layer in the diagram is currently active.
* \memberof _Layer
*/
void
layer_render(Layer *layer, DiaRenderer *renderer, Rectangle *update,
ObjectRenderer obj_renderer,
gpointer data,
int active_layer)
{
GList *list;
DiaObject *obj;
if (obj_renderer == NULL)
obj_renderer = normal_render;
/* Draw all objects: */
list = layer->objects;
while (list!=NULL) {
obj = (DiaObject *) list->data;
if (update==NULL || rectangle_intersects(update, &obj->bounding_box)) {
if ((render_bounding_boxes()) && (renderer->is_interactive)) {
Point p1, p2;
Color col;
p1.x = obj->bounding_box.left;
p1.y = obj->bounding_box.top;
p2.x = obj->bounding_box.right;
p2.y = obj->bounding_box.bottom;
col.red = 1.0;
col.green = 0.0;
col.blue = 1.0;
col.alpha = 1.0;
DIA_RENDERER_GET_CLASS(renderer)->set_linewidth(renderer,0.01);
DIA_RENDERER_GET_CLASS(renderer)->draw_rect(renderer, &p1, &p2, NULL, &col);
}
(*obj_renderer)(obj, renderer, active_layer, data);
}
list = g_list_next(list);
}
}
/*!
* \brief Create a new layer in this diagram.
* @param name Name of the new layer.
* @param parent The DiagramData that the layer will belong to,.
* @return A new Layer object.
* \memberof _Layer
*/
Layer *
new_layer(gchar *name, DiagramData *parent)
{
Layer *layer;
layer = g_new(Layer, 1);
layer->name = name;
layer->parent_diagram = parent;
layer->visible = TRUE;
layer->connectable = FALSE;
layer->objects = NULL;
layer->extents.left = 0.0;
layer->extents.right = 10.0;
layer->extents.top = 0.0;
layer->extents.bottom = 10.0;
return layer;
}
/*!
* \brief Destroy a layer object.
* @param layer The layer object to deallocate entirely.
* \memberof _Layer
*/
void
layer_destroy(Layer *layer)
{
g_free(layer->name);
destroy_object_list(layer->objects);
g_free(layer);
}
/*!
* \brief Set the parent layer of an object.
* @param element A DiaObject that should be part of a layer.
* @param user_data The layer it should be part of.
* \protected \memberof _Layer
*/
static void
set_parent_layer(gpointer element, gpointer user_data)
{
((DiaObject*)element)->parent_layer = (Layer*)user_data;
/* FIXME: even group members need a parent_layer and what about parent objects ???
* Now I know again why I always try to avoid back-pointers )-; --hb.
* If the group objects didn't actually leave the diagram, this wouldn't
* be a problem. --LC */
}
/*!
* \brief Get the index of an object in a layer.
* @param layer The layer the object is (should be) in.
* @param obj The object to look for.
* @return The index of the object in the layers list of objects. This is also
* the vertical position of the object.
* \memberof _Layer
*/
int
layer_object_get_index(Layer *layer, DiaObject *obj)
{
return (int)g_list_index(layer->objects, (gpointer) obj);
}
/*!
* \brief Get the object a index or NULL
* @param layer The layer to query for the nth object
* @param index The zero-based indexed of the object
* \memberof _Layer
*/
DiaObject *
layer_object_get_nth (Layer *layer, guint index)
{
if (g_list_length(layer->objects) > index) {
g_assert(g_list_nth(layer->objects, index));
return (DiaObject *)g_list_nth(layer->objects, index)->data;
}
return NULL;
}
int
layer_object_count (Layer *layer)
{
return g_list_length(layer->objects);
}
gchar *
layer_get_name (Layer *layer)
{
return g_strdup (layer->name);
}
/*!
* \brief Add an object to the top of a layer.
* @param layer The layer to add the object to.
* @param obj The object to add. This must not already be part of another layer.
* \memberof _Layer
*/
void
layer_add_object(Layer *layer, DiaObject *obj)
{
layer->objects = g_list_append(layer->objects, (gpointer) obj);
set_parent_layer(obj, layer);
/* send a signal that we have added a object to the diagram */
data_emit (layer_get_parent_diagram(layer), layer, obj, "object_add");
}
/*!
* \brief Add an object to a layer at a specific position.
* @param layer The layer to add the object to.
* @param obj The object to add. This must not be part of another layer.
* @param pos The top-to-bottom position this object should be inserted at.
* \memberof _Layer
*/
void
layer_add_object_at(Layer *layer, DiaObject *obj, int pos)
{
layer->objects = g_list_insert(layer->objects, (gpointer) obj, pos);
set_parent_layer(obj, layer);
/* send a signal that we have added a object to the diagram */
data_emit (layer_get_parent_diagram(layer), layer, obj, "object_add");
}
/*!
* \brief Add a list of objects to the end of a layer.
* @param layer The layer to add objects to.
* @param obj_list The list of objects to add. These must not already
* be part of another layer.
* \memberof _Layer
*/
void
layer_add_objects(Layer *layer, GList *obj_list)
{
GList *list = obj_list;
layer->objects = g_list_concat(layer->objects, obj_list);
g_list_foreach(obj_list, set_parent_layer, layer);
while (list != NULL)
{
DiaObject *obj = (DiaObject *)list->data;
/* send a signal that we have added a object to the diagram */
data_emit (layer_get_parent_diagram(layer), layer, obj, "object_add");
list = g_list_next(list);
}
}
/*!
* \brief Add a list of objects to the top of a layer.
* @param layer The layer to add objects to.
* @param obj_list The list of objects to add. These must not already
* be part of another layer.
* \memberof _Layer
*/
void
layer_add_objects_first(Layer *layer, GList *obj_list)
{
GList *list = obj_list;
layer->objects = g_list_concat(obj_list, layer->objects);
g_list_foreach(obj_list, set_parent_layer, layer);
/* Send one signal per object added */
while (list != NULL)
{
DiaObject *obj = (DiaObject *)list->data;
/* send a signal that we have added a object to the diagram */
data_emit (layer_get_parent_diagram(layer), layer, obj, "object_add");
list = g_list_next(list);
}
}
/*!
* \brief Remove an object from a layer.
* @param layer The layer to remove the object from.
* @param obj The object to remove.
* \memberof _Layer
*/
void
layer_remove_object(Layer *layer, DiaObject *obj)
{
/* send a signal that we'll remove a object from the diagram */
data_emit (layer_get_parent_diagram(layer), layer, obj, "object_remove");
layer->objects = g_list_remove(layer->objects, obj);
dynobj_list_remove_object(obj);
set_parent_layer(obj, NULL);
}
/*!
* Remove a list of objects from a layer.
* @param layer The layer to remove the objects from.
* @param obj_list The objects to remove.
* \memberof _Layer
*/
void
layer_remove_objects(Layer *layer, GList *obj_list)
{
DiaObject *obj;
while (obj_list != NULL) {
obj = (DiaObject *) obj_list->data;
layer_remove_object (layer, obj);
obj_list = g_list_next(obj_list);
}
}
/*!
* \brief Find the objects that intersect a given rectangle.
* @param layer The layer to search in.
* @param rect The rectangle to intersect with.
* @return List of objects whose bounding box intersect the rectangle. The
* list should be freed by the caller.
* \memberof _Layer
*/
GList *
layer_find_objects_intersecting_rectangle(Layer *layer, Rectangle *rect)
{
GList *list;
GList *selected_list;
DiaObject *obj;
selected_list = NULL;
list = layer->objects;
while (list != NULL) {
obj = (DiaObject *)list->data;
if (rectangle_intersects(rect, &obj->bounding_box)) {
if (dia_object_is_selectable(obj)) {
selected_list = g_list_prepend(selected_list, obj);
}
/* Objects in closed groups do not get selected, but their parents do.
* Since the parents bbox is outside the objects, they will be found
* anyway and the inner object can just be skipped. */
}
list = g_list_next(list);
}
return selected_list;
}
/*!
* \brief Find objects entirely contained in a rectangle.
* @param layer The layer to search for objects in.
* @param rect The rectangle that the objects should be in.
* @return A list containing the objects that are entirely contained in the
* rectangle. The list should be freed by the caller.
* \memberof _Layer
*/
GList *
layer_find_objects_in_rectangle(Layer *layer, Rectangle *rect)
{
GList *list;
GList *selected_list;
DiaObject *obj;
selected_list = NULL;
list = layer->objects;
while (list != NULL) {
obj = (DiaObject *)list->data;
if (rectangle_in_rectangle(rect, &obj->bounding_box)) {
if (dia_object_is_selectable(obj)) {
selected_list = g_list_prepend(selected_list, obj);
}
}
list = g_list_next(list);
}
return selected_list;
}
/*!
* \brief Find objects entirely containing a rectangle.
* @param layer The layer to search for objects in.
* @param rect The rectangle that the objects should surround.
* @return A list containing the objects that entirely contain the
* rectangle. The list should be freed by the caller.
* \memberof _Layer
*/
GList *
layer_find_objects_containing_rectangle(Layer *layer, Rectangle *rect)
{
GList *list;
GList *selected_list;
DiaObject *obj;
g_return_val_if_fail (layer != NULL, NULL);
selected_list = NULL;
list = layer->objects;
while (list != NULL) {
obj = (DiaObject *)list->data;
if (rectangle_in_rectangle(&obj->bounding_box, rect)) {
if (dia_object_is_selectable(obj)) {
selected_list = g_list_prepend(selected_list, obj);
}
}
list = g_list_next(list);
}
return selected_list;
}
/*!
* \brief Find the object closest to the given point in the layer
*
* no further away than maxdist, and not included in avoid.
* Stops it if finds an object that includes the point.
* @param layer The layer to search in.
* @param pos The point to compare to.
* @param maxdist The maximum distance the object can be from the point.
* @param avoid A list of objects that cannot be returned by this search.
* @return The closest object, or NULL if no allowed objects are closer than
* maxdist.
* \memberof _Layer
*/
DiaObject *
layer_find_closest_object_except(Layer *layer, Point *pos,
real maxdist, GList *avoid)
{
GList *l;
DiaObject *closest;
DiaObject *obj;
real dist;
GList *avoid_tmp;
closest = NULL;
for (l = layer->objects; l!=NULL; l = g_list_next(l)) {
obj = (DiaObject *) l->data;
/* Check bounding box here too. Might give speedup. */
dist = obj->ops->distance_from(obj, pos);
if (maxdist-dist > 0.00000001) {
for (avoid_tmp = avoid; avoid_tmp != NULL; avoid_tmp = avoid_tmp->next) {
if (avoid_tmp->data == obj) {
goto NEXTOBJECT;
}
}
closest = obj;
}
NEXTOBJECT:
;
}
return closest;
}
/*!
* \brief Find the object closest to the given point in the layer,
*
* no further away than maxdist. Stops it if finds an object that includes the point.
* @param layer The layer to search in.
* @param pos The point to compare to.
* @param maxdist The maximum distance the object can be from the point.
* @return The closest object, or NULL if none are closer than maxdist.
*/
DiaObject *
layer_find_closest_object(Layer *layer, Point *pos, real maxdist)
{
return layer_find_closest_object_except(layer, pos, maxdist, NULL);
}
/*!
* \brief Find the connectionpoint closest to pos in a layer.
* @param layer the layer to search in
* @param closest connection point found or NULL
* @param pos refernce position in diagram coordinates
* @param notthis object not to search on
* @return the distance of the connection point and pos
* \memberof _Layer
*/
real
layer_find_closest_connectionpoint(Layer *layer,
ConnectionPoint **closest,
Point *pos,
DiaObject *notthis)
{
GList *l;
DiaObject *obj;
ConnectionPoint *cp;
real mindist, dist;
int i;
mindist = 1000000.0; /* Realy big value... */
*closest = NULL;
for (l = layer->objects; l!=NULL; l = g_list_next(l) ) {
obj = (DiaObject *) l->data;
if (obj == notthis)
continue;
for (i=0;i<obj->num_connections;i++) {
cp = obj->connections[i];
/* Note: Uses manhattan metric for speed... */
dist = distance_point_point_manhattan(pos, &cp->pos);
if (dist<mindist) {
mindist = dist;
*closest = cp;
}
}
}
return mindist;
}
/*!
* \brief Recalculation of the bounding box containing all objects in the layer
* \memberof _Layer
*/
int
layer_update_extents(Layer *layer)
{
GList *l;
DiaObject *obj;
Rectangle new_extents;
l = layer->objects;
if (l!=NULL) {
obj = (DiaObject *) l->data;
new_extents = obj->bounding_box;
l = g_list_next(l);
while(l!=NULL) {
const Rectangle *bbox;
obj = (DiaObject *) l->data;
/* don't consider empty (or broken) objects in the overall extents */
bbox = &obj->bounding_box;
if (bbox->right > bbox->left && bbox->bottom > bbox->top)
rectangle_union(&new_extents, &obj->bounding_box);
l = g_list_next(l);
}
} else {
new_extents = invalid_extents;
}
if (rectangle_equals(&new_extents,&layer->extents)) return FALSE;
layer->extents = new_extents;
return TRUE;
}
/*!
* \brief Swaps a list of objects with a single object
*
* This function exchanges the given object with the list of objects.
* Ownership of remove_obj and insert_list objects is swapped, too.
*
* \memberof _Layer
*/
void
layer_replace_object_with_list(Layer *layer, DiaObject *remove_obj,
GList *insert_list)
{
GList *list, *il;
list = g_list_find(layer->objects, remove_obj);
g_assert(list!=NULL);
dynobj_list_remove_object(remove_obj);
data_emit (layer_get_parent_diagram(layer), layer, remove_obj, "object_remove");
set_parent_layer(remove_obj, NULL);
g_list_foreach(insert_list, set_parent_layer, layer);
if (list->prev == NULL) {
layer->objects = insert_list;
} else {
list->prev->next = insert_list;
insert_list->prev = list->prev;
}
if (list->next != NULL) {
GList *last;
last = g_list_last(insert_list);
last->next = list->next;
list->next->prev = last;
}
il = insert_list;
while (il) {
data_emit (layer_get_parent_diagram(layer), layer, il->data, "object_add");
il = g_list_next(il);
}
g_list_free_1(list);
/* with transformed groups the list and the single object are not necessarily
* of the same size */
layer_update_extents (layer);
}
static void
layer_remove_dynobj(gpointer obj, gpointer userdata)
{
dynobj_list_remove_object((DiaObject*)obj);
}
void
layer_set_object_list(Layer *layer, GList *list)
{
GList *ol;
/* signal removal on all objects */
ol = layer->objects;
while (ol) {
if (!g_list_find (list, ol->data)) /* only if it really vanishes */
data_emit (layer_get_parent_diagram(layer), layer, ol->data, "object_remove");
ol = g_list_next (ol);
}
/* restore old list */
ol = layer->objects;
g_list_foreach(layer->objects, set_parent_layer, NULL);
g_list_foreach(layer->objects, layer_remove_dynobj, NULL);
layer->objects = list;
g_list_foreach(layer->objects, set_parent_layer, layer);
/* signal addition on all objects */
list = layer->objects;
while (list) {
if (!g_list_find (ol, list->data)) /* only if it is new */
data_emit (layer_get_parent_diagram(layer), layer, list->data, "object_add");
list = g_list_next (list);
}
g_list_free(ol);
}
DiagramData *
layer_get_parent_diagram(Layer *layer)
{
return layer->parent_diagram;
}
|