1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-06-30 22:06:43 +03:00

- postscript.c: added DSC comments

- postscript.c: generate a page for each package
- gui_style.h: changed monospaced font to Liberation Mono, to alleviate "l" vs.
  "1" problem



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5519 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner 2009-08-22 08:58:26 +00:00
parent 9f814ab010
commit 9e48901814
4 changed files with 58 additions and 21 deletions

1
README
View File

@ -21,6 +21,7 @@ Prerequisites:
- fig2dev
- ImageMagick
- Gtk+ 2.x development package (libgtk2.0-dev or similar)
- Liberation Fonts (ttf-liberation or similar)
Check out the repository:

View File

@ -47,7 +47,8 @@
#define FRAME_EYE_R1 3
#define FRAME_EYE_R2 5
#define ITEM_LIST_FONT "Courier Bold 8"
#define ITEM_LIST_FONT "Liberation Mono 8"
//#define ITEM_LIST_FONT "Courier Bold 8"
#define SELECT_R 6 /* pixels within which we select */

6
inst.h
View File

@ -139,10 +139,12 @@ extern struct inst *curr_frame;
#define FOR_INST_PRIOS_DOWN(prio) \
for (prio = ip_n-1; prio != (enum inst_prio) -1; prio--)
#define FOR_PKG_INSTS(pkg, prio, inst) \
for (inst = (pkg)->insts[prio]; inst; inst = inst->next)
#define FOR_ALL_INSTS(i, prio, inst) \
for (i = 0; i != 2; i++) \
for (inst = (i ? active_pkg : pkgs)->insts[prio]; inst; \
inst = inst->next)
FOR_PKG_INSTS(i ? active_pkg : pkgs, prio, inst)
void inst_select_outside(void *item, void (*deselect)(void *item));

View File

@ -247,7 +247,6 @@ static void ps_meas(FILE *file, const struct inst *inst,
c = add_vec(a1, b1);
d = sub_vec(b1, a1);
//s = stralloc_printf("%s%lgmm", meas->label ? meas->label : "", len);
fprintf(file, "gsave %d %d moveto\n", c.x/2, c.y/2);
fprintf(file, " /Helvetica-Bold findfont dup\n");
fprintf(file, " (%s) %d %d realsize\n", s,
@ -329,16 +328,21 @@ static void ps_draw_package(FILE *file, const struct pkg *pkg, double zoom)
{
enum inst_prio prio;
const struct inst *inst;
int i;
fprintf(file, "gsave %f dup scale\n", zoom);
ps_cross(file, pkgs->insts[ip_frame]);
FOR_INST_PRIOS_UP(prio)
FOR_ALL_INSTS(i, prio, inst)
FOR_INST_PRIOS_UP(prio) {
FOR_PKG_INSTS(pkgs, prio, inst)
ps_background(file, prio, inst);
FOR_INST_PRIOS_UP(prio)
FOR_ALL_INSTS(i, prio, inst)
FOR_PKG_INSTS(pkg, prio, inst)
ps_background(file, prio, inst);
}
FOR_INST_PRIOS_UP(prio) {
FOR_PKG_INSTS(pkgs, prio, inst)
ps_foreground(file, prio, inst);
FOR_PKG_INSTS(pkg, prio, inst)
ps_foreground(file, prio, inst);
}
fprintf(file, "grestore\n");
}
@ -368,7 +372,24 @@ static void ps_header(FILE *file, const struct pkg *pkg)
}
static void ps_package(FILE *file, const struct pkg *pkg)
static void ps_page(FILE *file, int page)
{
fprintf(file, "%%%%Page: %d %d\n", page, page);
fprintf(file, "%%%%BeginPageSetup\n");
fprintf(file,
"currentpagedevice /PageSize get\n"
" aload pop\n"
" 2 div exch 2 div exch\n"
" translate\n"
" 72 %d div 1000 div dup scale\n",
(int) MIL_UNITS);
fprintf(file, "%%%%EndPageSetup\n");
}
static void ps_package(FILE *file, const struct pkg *pkg, int page)
{
struct bbox bbox;
unit_type x, y;
@ -376,6 +397,7 @@ static void ps_package(FILE *file, const struct pkg *pkg)
double f;
unit_type c, d;
ps_page(file, page);
ps_header(file, pkg);
x = 2*PAGE_HALF_WIDTH-2*PS_DIVIDER_BORDER;
@ -465,17 +487,17 @@ static void ps_package(FILE *file, const struct pkg *pkg)
/* ----- File level -------------------------------------------------------- */
static void prologue(FILE *file)
static void prologue(FILE *file, int pages)
{
fprintf(file, "%%!PS\n");
fprintf(file, "%%!PS-Adobe-3.0\n");
fprintf(file, "%%%%Pages: %d\n", pages);
fprintf(file, "%%%%EndComments\n");
fprintf(file,
"currentpagedevice /PageSize get\n"
" aload pop\n"
" 2 div exch 2 div exch\n"
" translate\n"
" 72 %d div 1000 div dup scale\n",
(int) MIL_UNITS);
fprintf(file, "%%%%BeginDefaults\n");
fprintf(file, "%%%%PageResources: font Helvetica Helvetica-Bold\n");
fprintf(file, "%%%%EndDefaults\n");
fprintf(file, "%%%%BeginProlog\n");
fprintf(file,
"/dotpath {\n"
@ -581,6 +603,8 @@ fprintf(file,
"/realsize {\n"
" 254 div 72 mul 1000 div 0 matrix currentmatrix idtransform pop\n"
" } def\n");
fprintf(file, "%%%%EndProlog\n");
}
@ -592,8 +616,17 @@ static void epilogue(FILE *file)
int postscript(FILE *file)
{
prologue(file);
ps_package(file, active_pkg);
struct pkg *pkg;
int pages;
for (pkg = pkgs; pkg; pkg = pkg->next)
if (pkg->name)
pages++;
prologue(file, pages);
pages = 0;
for (pkg = pkgs; pkg; pkg = pkg->next)
if (pkg->name)
ps_package(file, pkg, ++pages);
epilogue(file);
fflush(file);