mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-16 22:11:34 +02:00
The characteristics of the diagonal of the object selected (length and angle)
were taken from the bounding box and thus included silk width and other confusing things. - inst.c (rect_status_sort): wrapper for rect_status that sorts the coordinates (min/max) - inst.c (line_op_select, rect_op_select, meas_op_select): display the characteristics of the diagonal of the ideal line(s), not of the bounding box - inst.c (pad_op_select, rpad_op_select): normalize the diagonal by using rect_status_sort instead of rect_status. This makes pads behave like silk screen objects. git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5924 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
parent
c9ca5a45be
commit
6b22c8a579
18
inst.c
18
inst.c
@ -548,6 +548,14 @@ static void rect_status(struct coord a, struct coord b, unit_type width,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void rect_status_sort(struct coord a, struct coord b, unit_type width,
|
||||||
|
int rounded)
|
||||||
|
{
|
||||||
|
sort_coord(&a, &b);
|
||||||
|
rect_status(a, b, width, rounded);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ----- helper functions for instance creation ---------------------------- */
|
/* ----- helper functions for instance creation ---------------------------- */
|
||||||
|
|
||||||
|
|
||||||
@ -756,7 +764,7 @@ static void obj_line_edit(struct obj *obj)
|
|||||||
|
|
||||||
static void line_op_select(struct inst *self)
|
static void line_op_select(struct inst *self)
|
||||||
{
|
{
|
||||||
rect_status(self->bbox.min, self->bbox.max, self->u.rect.width, 0);
|
rect_status_sort(self->base, self->u.rect.end, self->u.rect.width, 0);
|
||||||
obj_line_edit(self->obj);
|
obj_line_edit(self->obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -796,7 +804,7 @@ static void obj_rect_edit(struct obj *obj)
|
|||||||
|
|
||||||
static void rect_op_select(struct inst *self)
|
static void rect_op_select(struct inst *self)
|
||||||
{
|
{
|
||||||
rect_status(self->bbox.min, self->bbox.max, self->u.rect.width, 0);
|
rect_status_sort(self->base, self->u.rect.end, self->u.rect.width, 0);
|
||||||
obj_rect_edit(self->obj);
|
obj_rect_edit(self->obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -853,7 +861,7 @@ static void pad_op_select(struct inst *self)
|
|||||||
{
|
{
|
||||||
status_set_type_entry(NULL, "label =");
|
status_set_type_entry(NULL, "label =");
|
||||||
status_set_name("Pad name (actual)", "%s", self->u.pad.name);
|
status_set_name("Pad name (actual)", "%s", self->u.pad.name);
|
||||||
rect_status(self->base, self->u.pad.other, -1, 0);
|
rect_status_sort(self->base, self->u.pad.other, -1, 0);
|
||||||
obj_pad_edit(self->obj);
|
obj_pad_edit(self->obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -870,7 +878,7 @@ static void rpad_op_select(struct inst *self)
|
|||||||
{
|
{
|
||||||
status_set_type_entry(NULL, "label =");
|
status_set_type_entry(NULL, "label =");
|
||||||
status_set_name("Pad name (actual)", "%s", self->u.pad.name);
|
status_set_name("Pad name (actual)", "%s", self->u.pad.name);
|
||||||
rect_status(self->base, self->u.pad.other, -1, 1);
|
rect_status_sort(self->base, self->u.pad.other, -1, 1);
|
||||||
obj_pad_edit(self->obj);
|
obj_pad_edit(self->obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -970,7 +978,7 @@ static void obj_meas_edit(struct obj *obj)
|
|||||||
|
|
||||||
static void meas_op_select(struct inst *self)
|
static void meas_op_select(struct inst *self)
|
||||||
{
|
{
|
||||||
rect_status(self->bbox.min, self->bbox.max, -1, 0);
|
rect_status_sort(self->base, self->u.meas.end, -1, 0);
|
||||||
status_set_type_entry(NULL, "offset =");
|
status_set_type_entry(NULL, "offset =");
|
||||||
set_with_units(status_set_name, "", self->u.meas.offset,
|
set_with_units(status_set_name, "", self->u.meas.offset,
|
||||||
"Measurement line offset");
|
"Measurement line offset");
|
||||||
|
Loading…
Reference in New Issue
Block a user