1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-08-23 00:43:41 +03:00

sch2fig/fig.c (fig_glabel): support orientation 1 (up)

This commit is contained in:
Werner Almesberger 2016-07-25 01:50:07 -03:00
parent 707c8f790d
commit a0c4aedd32

View File

@ -131,6 +131,9 @@ void fig_glabel(int x, int y, const char *s, int dir, int dim,
bool anchor_right = 1;
switch (shape) {
case fig_unspec:
box = box_simple;
break;
case fig_in:
box = box_right;
break;
@ -145,12 +148,19 @@ void fig_glabel(int x, int y, const char *s, int dir, int dim,
}
switch (dir) {
case 0:
case 0: /* left */
txt.rot = 0;
txt.hor = text_max;
dx = -1;
break;
case 2:
case 1: /* up */
txt.rot = 90;
txt.hor = text_min;
dx = 1;
box = flip_box(box);
anchor_right = !anchor_right;
break;
case 2: /* right */
txt.rot = 0;
txt.hor = text_min;
dx = 1;
@ -165,6 +175,18 @@ void fig_glabel(int x, int y, const char *s, int dir, int dim,
shift_tip = dx * (GLABEL_OFFSET + half);
switch (box) {
case box_simple:
n = 5;
text_shift(&txt, txt.hor, text_mid, shift_flat, 0);
text_rel(&txt, text_min, text_min,
-GLABEL_OFFSET, GLABEL_OFFSET, vx + 1, vy + 1);
text_rel(&txt, text_max, text_min,
GLABEL_OFFSET, GLABEL_OFFSET, vx + 2, vy + 2);
text_rel(&txt, text_max, text_max,
GLABEL_OFFSET, -GLABEL_OFFSET, vx + 3, vy + 3);
text_rel(&txt, text_min, text_max,
-GLABEL_OFFSET, -GLABEL_OFFSET, vx + 4, vy + 4);
break;
case box_right:
text_shift(&txt, txt.hor, text_mid,
anchor_right ? shift_tip : shift_flat, 0);