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 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
|
/* Dia -- an diagram creation/manipulation program
* Copyright (C) 1998, 1999 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 <assert.h>
#include <math.h>
#include <string.h>
#include <stdio.h>
#include "intl.h"
#include "object.h"
#include "connection.h"
#include "diarenderer.h"
#include "handle.h"
#include "properties.h"
#include "connpoint_line.h"
#include "attributes.h"
#include "pixmaps/lifeline.xpm"
typedef struct _Lifeline Lifeline;
#define LIFELINE_NUM_HANDLES 5
#define LIFELINE_NUM_STD_CPS 7
struct _Lifeline {
Connection connection;
ConnectionPoint connections[LIFELINE_NUM_STD_CPS]; /* 7°th cp position is at rbot handle location
(this is useful to attach another lifeline
just below this one in case of an object
activated more than once in a sequence diagram.)*/
Handle boxbot_handle;
Handle boxtop_handle;
Handle boxmid_handle;
/* these are _relative_ to endpoints[0] */
real rtop, rbot;
real cp_distance;
int draw_focuscontrol;
int draw_cross;
Color line_color;
Color fill_color;
ConnPointLine *northwest,*southwest,*northeast,*southeast;
/* we're (almost) obliged to do this stupid gymnastic with twin
connpoint_lines, because we really do want to reload older objects
(those created before we had the CPLs) without funny side effects. And
we don't want to have two connection points (one static, one dynamic) in
the same place either.
*/
};
#define LIFELINE_CP_DEFAULT_DISTANCE 0.5
#define LIFELINE_CP_DISTANCE_INCREASE_FACTOR 0.25
#define LIFELINE_LINEWIDTH 0.05
#define LIFELINE_BOXWIDTH 0.1
#define LIFELINE_WIDTH 0.7
#define LIFELINE_HEIGHT 3.0
#define LIFELINE_BOXMINHEIGHT 0.5
#define LIFELINE_DASHLEN 0.4
#define LIFELINE_CROSSWIDTH 0.12
#define LIFELINE_CROSSLEN 0.8
#define HANDLE_BOXTOP (HANDLE_CUSTOM1)
#define HANDLE_BOXBOT (HANDLE_CUSTOM2)
#define HANDLE_BOXMID (HANDLE_CUSTOM3)
static ObjectChange* lifeline_move_handle(Lifeline *lifeline, Handle *handle,
Point *to, ConnectionPoint *cp,
HandleMoveReason reason,
ModifierKeys modifiers);
static ObjectChange* lifeline_move(Lifeline *lifeline, Point *to);
static void lifeline_select(Lifeline *lifeline, Point *clicked_point,
DiaRenderer *interactive_renderer);
static void lifeline_draw(Lifeline *lifeline, DiaRenderer *renderer);
static DiaObject *lifeline_create(Point *startpoint,
void *user_data,
Handle **handle1,
Handle **handle2);
static real lifeline_distance_from(Lifeline *lifeline, Point *point);
static void lifeline_update_data(Lifeline *lifeline);
static void lifeline_destroy(Lifeline *lifeline);
static DiaObject *lifeline_load(ObjectNode obj_node, int version,DiaContext *ctx);
static PropDescription *lifeline_describe_props(Lifeline *lifeline);
static void lifeline_get_props(Lifeline * lifeline, GPtrArray *props);
static void lifeline_set_props(Lifeline * lifeline, GPtrArray *props);
static DiaMenu *lifeline_get_object_menu(Lifeline *lifeline,
Point *clickedpoint);
typedef enum {
LIFELINE_CHANGE_ADD = 0x01,
LIFELINE_CHANGE_DEL = 0x02,
LIFELINE_CHANGE_INC = 0x03,
LIFELINE_CHANGE_DEC = 0x04,
LIFELINE_CHANGE_DEF = 0x05
} LifelineChangeType;
static ObjectChange *lifeline_create_change(Lifeline *lifeline, LifelineChangeType changetype, Point *clicked);
static ObjectTypeOps lifeline_type_ops =
{
(CreateFunc) lifeline_create,
(LoadFunc) lifeline_load,/* using properties */
(SaveFunc) object_save_using_properties
};
DiaObjectType lifeline_type =
{
"UML - Lifeline", /* name */
0, /* version */
lifeline_xpm, /* pixmap */
&lifeline_type_ops /* ops */
};
static ObjectOps lifeline_ops = {
(DestroyFunc) lifeline_destroy,
(DrawFunc) lifeline_draw,
(DistanceFunc) lifeline_distance_from,
(SelectFunc) lifeline_select,
(CopyFunc) object_copy_using_properties,
(MoveFunc) lifeline_move,
(MoveHandleFunc) lifeline_move_handle,
(GetPropertiesFunc) object_create_props_dialog,
(ApplyPropertiesDialogFunc) object_apply_props_from_dialog,
(ObjectMenuFunc) lifeline_get_object_menu,
(DescribePropsFunc) lifeline_describe_props,
(GetPropsFunc) lifeline_get_props,
(SetPropsFunc) lifeline_set_props,
(TextEditFunc) 0,
(ApplyPropertiesListFunc) object_apply_props,
};
static PropDescription lifeline_props[] = {
CONNECTION_COMMON_PROPERTIES,
PROP_STD_LINE_COLOUR_OPTIONAL,
PROP_STD_FILL_COLOUR_OPTIONAL,
{ "rtop", PROP_TYPE_REAL, PROP_FLAG_NO_DEFAULTS, NULL,NULL,NULL},
{ "rbot", PROP_TYPE_REAL, PROP_FLAG_NO_DEFAULTS, NULL,NULL,NULL},
{ "draw_focus", PROP_TYPE_BOOL, PROP_FLAG_VISIBLE,
N_("Draw focus of control:"), NULL, NULL },
{ "draw_cross", PROP_TYPE_BOOL, PROP_FLAG_VISIBLE,
N_("Draw destruction mark:"), NULL, NULL },
{ "cpl_northwest",PROP_TYPE_CONNPOINT_LINE, PROP_FLAG_OPTIONAL|PROP_FLAG_NO_DEFAULTS, NULL, NULL },
{ "cpl_southwest",PROP_TYPE_CONNPOINT_LINE, PROP_FLAG_OPTIONAL|PROP_FLAG_NO_DEFAULTS, NULL, NULL },
{ "cpl_northeast",PROP_TYPE_CONNPOINT_LINE, PROP_FLAG_OPTIONAL|PROP_FLAG_NO_DEFAULTS, NULL, NULL },
{ "cpl_southeast",PROP_TYPE_CONNPOINT_LINE, PROP_FLAG_OPTIONAL|PROP_FLAG_NO_DEFAULTS, NULL, NULL },
PROP_DESC_END
};
static PropDescription *
lifeline_describe_props(Lifeline *lifeline)
{
if (lifeline_props[0].quark == 0)
prop_desc_list_calculate_quarks(lifeline_props);
return lifeline_props;
}
static PropOffset lifeline_offsets[] = {
CONNECTION_COMMON_PROPERTIES_OFFSETS,
{ "line_colour",PROP_TYPE_COLOUR,offsetof(Lifeline,line_color)},
{ "fill_colour",PROP_TYPE_COLOUR,offsetof(Lifeline,fill_color)},
{ "draw_focus", PROP_TYPE_BOOL, offsetof(Lifeline, draw_focuscontrol) },
{ "draw_cross", PROP_TYPE_BOOL, offsetof(Lifeline, draw_cross) },
{ "rtop", PROP_TYPE_REAL, offsetof(Lifeline, rtop) },
{ "rbot", PROP_TYPE_REAL, offsetof(Lifeline, rbot) },
{ "cpl_northwest",PROP_TYPE_CONNPOINT_LINE,offsetof(Lifeline,northwest)},
{ "cpl_southwest",PROP_TYPE_CONNPOINT_LINE,offsetof(Lifeline,southwest)},
{ "cpl_northeast",PROP_TYPE_CONNPOINT_LINE,offsetof(Lifeline,northeast)},
{ "cpl_southeast",PROP_TYPE_CONNPOINT_LINE,offsetof(Lifeline,southeast)},
{ NULL, 0, 0 },
};
static void
lifeline_get_props(Lifeline * lifeline, GPtrArray *props)
{
object_get_props_from_offsets(&lifeline->connection.object,
lifeline_offsets, props);
}
static void
lifeline_set_props(Lifeline *lifeline, GPtrArray *props)
{
object_set_props_from_offsets(&lifeline->connection.object,
lifeline_offsets, props);
/* This magic is necessary to correctly load data
from old lifeline behavior. It calculates the
cp_distance in function of saved rtop-rbot distance and
num of cp.
( It's just the inverse of lifeline_rect_size :)
*/
lifeline->cp_distance = (lifeline->rbot - lifeline->rtop)
/ (lifeline->northwest->num_connections + 1 +
lifeline->southwest->num_connections + 1);
lifeline_update_data(lifeline);
}
static real
lifeline_distance_from(Lifeline *lifeline, Point *point)
{
Point *endpoints;
real dist1, dist2;
endpoints = &lifeline->connection.endpoints[0];
dist1 = distance_line_point( &endpoints[0], &endpoints[1],
LIFELINE_WIDTH, point);
dist2 = dist1;
return MIN(dist1, dist2);
}
static inline real
lifeline_rect_size(Lifeline *lifeline)
{
return ( (lifeline->northwest->num_connections+1) * lifeline->cp_distance
+ (lifeline->southwest->num_connections+1) * lifeline->cp_distance);
}
static void
lifeline_select(Lifeline *lifeline, Point *clicked_point,
DiaRenderer *interactive_renderer)
{
connection_update_handles(&lifeline->connection);
}
static gboolean
lifeline_point_above_mid (Lifeline *lifeline,
Point *pt)
{
return (pt->y < lifeline->boxmid_handle.pos.y);
}
/*!
* Moving handles of a lifeline
*
* - the top handle is usually connected to an object, when moved connected
* the whole lifeline is moved horizontally (but may not any longer vertically).
* - the top box handle is used to move the whole box vertically.
* - the bottom box handle should maybe resize the box without changing the
* connection point distance, i.e. adding/removing some (maybe limited
* by connected points)
* - the bottom handle just move itself, not beyond the lower box handle
*/
static ObjectChange*
lifeline_move_handle(Lifeline *lifeline, Handle *handle,
Point *to, ConnectionPoint *cp,
HandleMoveReason reason, ModifierKeys modifiers)
{
real s, dy;
Connection *conn;
assert(lifeline!=NULL);
assert(handle!=NULL);
assert(to!=NULL);
conn = &lifeline->connection;
if (handle->id == HANDLE_BOXBOT) {
/* distance between upper handle and boxtop must not be smaller than zero */
dy = to->y - conn->endpoints[0].y;
if (dy > lifeline_rect_size(lifeline)) {
real dist = dy - lifeline->rbot;
real di;
modf (dist, &di);
/* the integer part gives the number of points to add or remove */
if (fabs (di) > 0) {
int ni = (int)di;
if (lifeline_point_above_mid (lifeline, to) ?
lifeline->northeast->num_connections + ni > 0 :
lifeline->southeast->num_connections + ni > 0)
return lifeline_create_change (lifeline, ni > 0 ? LIFELINE_CHANGE_ADD : LIFELINE_CHANGE_DEL, to);
else
return NULL;
}
}
} else if (handle->id == HANDLE_BOXMID) {
/* the box can not move over the top - same logic, but old movement behavior as above */
real dist = (to->y - handle->pos.y); /* the potential movement */
if (dist > 0 ||
-dist < lifeline->rtop) {
lifeline->rbot += dist;
lifeline->rtop = lifeline->rbot - lifeline_rect_size(lifeline);
}
} else if (handle->id == HANDLE_BOXTOP) {
/* Distance between upper handle and boxtop must not be smaller than zero,
* Same for boxbot and lower handle */
dy = to->y - conn->endpoints[0].y;
if (dy > 0 &&
dy + lifeline_rect_size(lifeline) < conn->endpoints[1].y) {
lifeline->rtop = dy;
}
} else {
/* move horizontally only if startpoint is moved */
if (handle->id==HANDLE_MOVE_STARTPOINT) {
conn->endpoints[0].x = conn->endpoints[1].x = to->x;
} else {
to->x = conn->endpoints[0].x;
}
/* If connected don't change size */
dy = (reason==HANDLE_MOVE_CONNECTED) ?
conn->endpoints[1].y - conn->endpoints[0].y : lifeline->rbot;
connection_move_handle(conn, handle->id, to, cp, reason, modifiers);
s = conn->endpoints[1].y - conn->endpoints[0].y;
if (handle->id==HANDLE_MOVE_ENDPOINT && s < dy &&
s > lifeline->rtop + LIFELINE_BOXMINHEIGHT)
lifeline->rbot = s;
else if (reason==HANDLE_MOVE_CONNECTED || s < dy)
conn->endpoints[1].y = conn->endpoints[0].y + dy;
}
lifeline_update_data(lifeline);
return NULL;
}
static ObjectChange*
lifeline_move(Lifeline *lifeline, Point *to)
{
Point start_to_end;
Point delta;
Point *endpoints = &lifeline->connection.endpoints[0];
delta = *to;
point_sub(&delta, &endpoints[0]);
start_to_end = endpoints[1];
point_sub(&start_to_end, &endpoints[0]);
endpoints[1] = endpoints[0] = *to;
point_add(&endpoints[1], &start_to_end);
lifeline_update_data(lifeline);
return NULL;
}
static void
lifeline_draw(Lifeline *lifeline, DiaRenderer *renderer)
{
DiaRendererClass *renderer_ops = DIA_RENDERER_GET_CLASS (renderer);
Point *endpoints, p1, p2;
assert(lifeline != NULL);
assert(renderer != NULL);
endpoints = &lifeline->connection.endpoints[0];
renderer_ops->set_linewidth(renderer, LIFELINE_LINEWIDTH);
renderer_ops->set_linestyle(renderer, LINESTYLE_DASHED, LIFELINE_DASHLEN);
/* Ok, instead rendering one big line between two endpoints we just
from endpoints to rtop and rbottom respectively.
This trick lets dashed line displayed correctly if we attach another
lifeline object to "rbot" connectionpoint
*/
p1.x = p2.x = endpoints[0].x;
p1.y = endpoints[0].y + lifeline->rtop;
p2.y = endpoints[0].y + lifeline->rbot;
renderer_ops->draw_line(renderer,
&endpoints[0], &p1,
&lifeline->line_color);
renderer_ops->draw_line(renderer,
&p2, &endpoints[1],
&lifeline->line_color);
renderer_ops->set_linewidth(renderer, LIFELINE_BOXWIDTH);
renderer_ops->set_linestyle(renderer, LINESTYLE_SOLID, 0.0);
p1.x = endpoints[0].x - LIFELINE_WIDTH/2.0;
p1.y = endpoints[0].y + lifeline->rtop;
p2.x = endpoints[0].x + LIFELINE_WIDTH/2.0;
p2.y = endpoints[0].y + lifeline->rbot;
if (lifeline->draw_focuscontrol) {
renderer_ops->draw_rect(renderer,
&p1, &p2,
&lifeline->fill_color,
&lifeline->line_color);
}
if (lifeline->draw_cross) {
renderer_ops->set_linewidth(renderer, LIFELINE_CROSSWIDTH);
p1.x = endpoints[1].x + LIFELINE_CROSSLEN;
p2.x = endpoints[1].x - LIFELINE_CROSSLEN;
p1.y = endpoints[1].y + LIFELINE_CROSSLEN;
p2.y = endpoints[1].y - LIFELINE_CROSSLEN;
renderer_ops->draw_line(renderer,
&p1, &p2,
&lifeline->line_color);
p1.y = p2.y;
p2.y = endpoints[1].y + LIFELINE_CROSSLEN;
renderer_ops->draw_line(renderer,
&p1, &p2,
&lifeline->line_color);
}
}
/* DiaObject menu handling */
typedef struct {
ObjectChange obj_change;
ObjectChange *east, *west;
real cp_distance_change;
LifelineChangeType type;
} LifelineChange;
static void
lifeline_change_apply(LifelineChange *change, DiaObject *obj)
{
if( change->type == LIFELINE_CHANGE_ADD || change->type == LIFELINE_CHANGE_DEL ) {
change->west->apply(change->west,obj);
change->east->apply(change->east,obj);
} else {
((Lifeline*)obj)->cp_distance += change->cp_distance_change;
}
}
static void
lifeline_change_revert(LifelineChange *change, DiaObject *obj)
{
if( change->type == LIFELINE_CHANGE_ADD || change->type == LIFELINE_CHANGE_DEL ) {
change->west->revert(change->west,obj);
change->east->revert(change->east,obj);
} else {
((Lifeline*)obj)->cp_distance -= change->cp_distance_change;
}
}
static void
lifeline_change_free(LifelineChange *change)
{
if( change->type == LIFELINE_CHANGE_ADD || change->type == LIFELINE_CHANGE_DEL ) {
if (change->east->free)
change->east->free(change->east);
g_free(change->east);
if (change->west->free)
change->west->free(change->west);
g_free(change->west);
}
}
static ObjectChange *
lifeline_create_change(Lifeline *lifeline, LifelineChangeType changetype, Point *clicked)
{
LifelineChange *vc;
vc = g_new0(LifelineChange,1);
vc->obj_change.apply = (ObjectChangeApplyFunc)lifeline_change_apply;
vc->obj_change.revert = (ObjectChangeRevertFunc)lifeline_change_revert;
vc->obj_change.free = (ObjectChangeFreeFunc)lifeline_change_free;
vc->type = changetype;
switch( vc->type )
{
case LIFELINE_CHANGE_ADD:
if (lifeline_point_above_mid (lifeline, clicked)) {
vc->east = connpointline_add_point(lifeline->northeast,clicked);
vc->west = connpointline_add_point(lifeline->northwest,clicked);
} else {
vc->east = connpointline_add_point(lifeline->southeast,clicked);
vc->west = connpointline_add_point(lifeline->southwest,clicked);
}
break;
case LIFELINE_CHANGE_DEL:
if (lifeline_point_above_mid (lifeline, clicked)) {
vc->east = connpointline_remove_point(lifeline->northeast,clicked);
vc->west = connpointline_remove_point(lifeline->northwest,clicked);
} else {
vc->east = connpointline_remove_point(lifeline->southeast,clicked);
vc->west = connpointline_remove_point(lifeline->southwest,clicked);
}
break;
case LIFELINE_CHANGE_INC:
vc->cp_distance_change = LIFELINE_CP_DISTANCE_INCREASE_FACTOR;
lifeline->cp_distance += vc->cp_distance_change;
break;
case LIFELINE_CHANGE_DEC:
vc->cp_distance_change = -1 * LIFELINE_CP_DISTANCE_INCREASE_FACTOR;
lifeline->cp_distance += vc->cp_distance_change;
break;
case LIFELINE_CHANGE_DEF:
vc->cp_distance_change = LIFELINE_CP_DEFAULT_DISTANCE*2 - lifeline->cp_distance;
lifeline->cp_distance += vc->cp_distance_change;
break;
}
lifeline_update_data(lifeline);
return (ObjectChange *)vc;
}
static ObjectChange *
lifeline_cp_callback(DiaObject *obj, Point *clicked, gpointer data)
{
LifelineChangeType type = GPOINTER_TO_INT(data);
return lifeline_create_change((Lifeline *)obj, type, clicked);
}
static DiaMenuItem object_menu_items[] = {
{ N_("Add connection points"), lifeline_cp_callback, GINT_TO_POINTER(LIFELINE_CHANGE_ADD), 1 },
{ N_("Remove connection points"), lifeline_cp_callback, GINT_TO_POINTER(LIFELINE_CHANGE_DEL), 1 },
{ N_("Increase connection points distance"), lifeline_cp_callback, GINT_TO_POINTER(LIFELINE_CHANGE_INC), 1 },
{ N_("Decrease connection points distance"), lifeline_cp_callback, GINT_TO_POINTER(LIFELINE_CHANGE_DEC), 1 },
{ N_("Set default connection points distance"), lifeline_cp_callback, GINT_TO_POINTER(LIFELINE_CHANGE_DEF), 1 },
};
static DiaMenu object_menu = {
N_("UML Lifeline"),
sizeof(object_menu_items)/sizeof(DiaMenuItem),
object_menu_items,
NULL
};
static DiaMenu *
lifeline_get_object_menu(Lifeline *lifeline, Point *clickedpoint)
{
/* Set entries sensitive/selected etc here */
g_assert( (lifeline->northwest->num_connections ==
lifeline->northeast->num_connections) ||
(lifeline->southwest->num_connections ==
lifeline->southeast->num_connections) );
object_menu_items[0].active = 1;
/* don't allow to remove the last connection point */
if (lifeline_point_above_mid (lifeline, clickedpoint))
object_menu_items[1].active = (lifeline->northeast->num_connections > 1);
else
object_menu_items[1].active = (lifeline->southeast->num_connections > 1);
return &object_menu;
}
static DiaObject *
lifeline_create(Point *startpoint,
void *user_data,
Handle **handle1,
Handle **handle2)
{
Lifeline *lifeline;
Connection *conn;
DiaObject *obj;
int i;
lifeline = g_malloc0(sizeof(Lifeline));
lifeline->cp_distance = LIFELINE_CP_DEFAULT_DISTANCE;
conn = &lifeline->connection;
conn->endpoints[0] = *startpoint;
conn->endpoints[0].x += LIFELINE_WIDTH/2;
conn->endpoints[1] = conn->endpoints[0];
conn->endpoints[1].y = conn->endpoints[0].y + 6.0*lifeline->cp_distance;
obj = &conn->object;
obj->type = &lifeline_type;
obj->ops = &lifeline_ops;
connection_init(conn, LIFELINE_NUM_HANDLES, LIFELINE_NUM_STD_CPS);
lifeline->line_color = attributes_get_foreground();
lifeline->fill_color = attributes_get_background();
/* _relative_ from conn->endpoints[0].y */
lifeline->rtop = lifeline->cp_distance;
lifeline->draw_focuscontrol = 1;
lifeline->draw_cross = 0;
lifeline->boxbot_handle.id = HANDLE_BOXBOT;
lifeline->boxbot_handle.type = HANDLE_MINOR_CONTROL;
lifeline->boxbot_handle.connect_type = HANDLE_NONCONNECTABLE;
lifeline->boxbot_handle.connected_to = NULL;
obj->handles[2] = &lifeline->boxbot_handle;
lifeline->boxtop_handle.id = HANDLE_BOXTOP;
lifeline->boxtop_handle.type = HANDLE_MINOR_CONTROL;
lifeline->boxtop_handle.connect_type = HANDLE_NONCONNECTABLE;
lifeline->boxtop_handle.connected_to = NULL;
obj->handles[3] = &lifeline->boxtop_handle;
lifeline->boxmid_handle.id = HANDLE_BOXMID;
lifeline->boxmid_handle.type = HANDLE_MINOR_CONTROL;
lifeline->boxmid_handle.connect_type = HANDLE_NONCONNECTABLE;
lifeline->boxmid_handle.connected_to = NULL;
obj->handles[4] = &lifeline->boxmid_handle;
/* Only the start point should be connectable */
obj->handles[1]->connect_type = HANDLE_NONCONNECTABLE;
/* Connection points */
for (i=0;i<LIFELINE_NUM_STD_CPS;i++) {
obj->connections[i] = &lifeline->connections[i];
lifeline->connections[i].object = obj;
lifeline->connections[i].connected = NULL;
}
/* **must** be the same init order as in the property descriptors */
lifeline->northwest = connpointline_create(obj, 1);
lifeline->southwest = connpointline_create(obj, 1);
lifeline->northeast = connpointline_create(obj, 1);
lifeline->southeast = connpointline_create(obj, 1);
lifeline_update_data(lifeline);
*handle1 = obj->handles[0];
*handle2 = obj->handles[1];
return &lifeline->connection.object;
}
static void
lifeline_destroy(Lifeline *lifeline)
{
connpointline_destroy(lifeline->southeast);
connpointline_destroy(lifeline->northwest);
connpointline_destroy(lifeline->northeast);
connpointline_destroy(lifeline->southwest);
connection_destroy(&lifeline->connection);
}
static void
lifeline_update_data(Lifeline *lifeline)
{
Connection *conn = &lifeline->connection;
DiaObject *obj = &conn->object;
LineBBExtras *extra = &conn->extra_spacing;
Point p1, p2, pnw, psw, pne, pse, pmw,pme;
obj->position = conn->endpoints[0];
/* Update lifeline rbot using num. of cp and cp_distance */
lifeline->rbot = lifeline->rtop + lifeline_rect_size( lifeline ) ;
/* Update conn->endpoints[0].y if rbot is greater */
if( conn->endpoints[1].y < conn->endpoints[0].y + lifeline->rbot )
conn->endpoints[1].y = conn->endpoints[0].y + lifeline->rbot + lifeline->cp_distance;
/* box handles: */
p1.x = conn->endpoints[0].x;
p1.y = conn->endpoints[0].y + lifeline->rtop;
lifeline->boxtop_handle.pos = p1;
p2.x = p1.x;
p2.y = conn->endpoints[0].y + lifeline->rbot;
lifeline->boxbot_handle.pos = p2;
/* middle handle - between the cpls */
lifeline->boxmid_handle.pos.x = p1.x;
lifeline->boxmid_handle.pos.y = p1.y + (lifeline->cp_distance * (lifeline->northwest->num_connections + 1));
connection_update_handles(conn);
/* Boundingbox: */
extra->start_trans =
extra->start_long =
extra->end_long =
extra->end_trans = LIFELINE_LINEWIDTH/2.0;
if (lifeline->draw_focuscontrol) {
extra->start_trans =
extra->end_trans = MAX(LIFELINE_LINEWIDTH/2,(LIFELINE_WIDTH/2+LIFELINE_BOXWIDTH/2));
}
if (lifeline->draw_cross) {
extra->end_trans += LIFELINE_CROSSLEN;
extra->end_long += LIFELINE_CROSSLEN;
}
connection_update_boundingbox(conn);
if (lifeline->draw_focuscontrol) {
p1.x -= LIFELINE_WIDTH/2.0;
p2.x += LIFELINE_WIDTH/2.0;
}
/* Update connections: */
pnw.x = p1.x; pnw.y = p1.y;
psw.x = p1.x; psw.y = p2.y;
pne.x = p2.x; pne.y = p1.y;
pse.x = p2.x; pse.y = p2.y;
pmw.x = pnw.x;
pme.x = pne.x;
pmw.y = pme.y = (p1.y + lifeline->cp_distance * (lifeline->northwest->num_connections+1));
lifeline->connections[6].pos.x = conn->endpoints[0].x;
lifeline->connections[6].pos.y = conn->endpoints[0].y + lifeline->rbot;
lifeline->connections[6].directions = DIR_SOUTH;
lifeline->connections[0].pos = pnw;
lifeline->connections[1].pos = pne;
lifeline->connections[2].pos = pmw;
lifeline->connections[3].pos = pme;
lifeline->connections[4].pos = psw;
lifeline->connections[5].pos = pse;
lifeline->connections[0].directions = DIR_NORTH|DIR_WEST;
lifeline->connections[1].directions = DIR_NORTH|DIR_EAST;
lifeline->connections[2].directions = DIR_WEST;
lifeline->connections[3].directions = DIR_EAST;
lifeline->connections[4].directions = DIR_SOUTH|DIR_WEST;
lifeline->connections[5].directions = DIR_SOUTH|DIR_EAST;
connpointline_update(lifeline->northwest);
connpointline_putonaline(lifeline->northwest,&pnw,&pmw, DIR_WEST);
connpointline_update(lifeline->southwest);
connpointline_putonaline(lifeline->southwest,&pmw,&psw, DIR_WEST);
connpointline_update(lifeline->northeast);
connpointline_putonaline(lifeline->northeast,&pne,&pme, DIR_EAST);
connpointline_update(lifeline->southeast);
connpointline_putonaline(lifeline->southeast,&pme,&pse, DIR_EAST);
}
static DiaObject *
lifeline_load(ObjectNode obj_node, int version,DiaContext *ctx)
{
DiaObject *obj = object_load_using_properties(&lifeline_type,
obj_node,version,ctx);
return obj;
}
|