[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: CVS update: globals.c



  User: cnieves 
  Date: 05/02/19 18:27:42

  Modified:    .        globals.c gschlas.c
  Log:
  Added support for pictures within schematics and symbols.
  
  
  
  
  
  
  Revision  Changes    Path
  1.5       +1 -0      eda/geda/devel/utils/gschlas/globals.c
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: globals.c
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/utils/gschlas/globals.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- globals.c	11 Feb 2005 18:28:02 -0000	1.4
  +++ globals.c	19 Feb 2005 23:27:41 -0000	1.5
  @@ -49,6 +49,7 @@
   /* these are required by libgeda */
   void (*arc_draw_func)() = o_arc_recalc;
   void (*box_draw_func)() = o_box_recalc;
  +void (*picture_draw_func)() = o_picture_recalc;
   void (*circle_draw_func)() = o_circle_recalc;
   void (*complex_draw_func)() = o_complex_recalc;
   void (*line_draw_func)() = o_line_recalc;
  
  
  
  1.11      +3 -0      eda/geda/devel/utils/gschlas/gschlas.c
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: gschlas.c
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/utils/gschlas/gschlas.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- gschlas.c	11 Feb 2005 18:28:02 -0000	1.10
  +++ gschlas.c	19 Feb 2005 23:27:41 -0000	1.11
  @@ -29,6 +29,7 @@
   #endif
   
   #include <libgeda/libgeda.h>
  +#include <gtk/gtk.h>
   
   #include "../include/globals.h"
   #include "../include/prototype.h"
  @@ -58,6 +59,8 @@
     
     TOPLEVEL *pr_current;
   
  +  gtk_init(&argc, &argv);
  +
     argv_index = parse_commandline(argc, argv);
     cwd = getcwd(NULL, 1024);
   #ifdef __MINGW32__