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

gEDA-cvs: CVS update: Makefile.am



  User: danmc   
  Date: 06/05/16 18:31:01

  Modified:    .        Makefile.am prototype.h
  Log:
  Add a (gschem-filesel) guile function which gives a generic file open
  
  and save as dialog box.  Add some placeholder code to the pcb major
  
  mode showing how this routine is used.  While here update the pcb
  
  major mode TODO list a bit.
  
  
  
  
  Revision  Changes    Path
  1.9       +3 -1      eda/geda/devel/gschem/include/Makefile.am
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gschem/include/Makefile.am,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- Makefile.am	22 Feb 2005 17:59:58 -0000	1.8
  +++ Makefile.am	16 May 2006 22:31:01 -0000	1.9
  @@ -1,7 +1,9 @@
  +## $Id: Makefile.am,v 1.9 2006/05/16 22:31:01 danmc Exp $
  +##
   ## Process this file with automake to produce Makefile.in
   
   noinst_HEADERS = \
  -	globals.h i_vars.h prototype.h x_event.h x_states.h \
  +	globals.h i_vars.h prototype.h x_dialog.h x_event.h x_states.h \
   	gettext.h \
   	x_log.h x_multiattrib.h x_pagesel.h
   
  
  
  
  1.129     +3 -1      eda/geda/devel/gschem/include/prototype.h
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: prototype.h
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/gschem/include/prototype.h,v
  retrieving revision 1.128
  retrieving revision 1.129
  diff -u -b -r1.128 -r1.129
  --- prototype.h	25 Apr 2006 22:26:56 -0000	1.128
  +++ prototype.h	16 May 2006 22:31:01 -0000	1.129
  @@ -1,4 +1,4 @@
  -/* $Id: prototype.h,v 1.128 2006/04/25 22:26:56 danmc Exp $ */
  +/* $Id: prototype.h,v 1.129 2006/05/16 22:31:01 danmc Exp $ */
   
   /* a_pan.c */
   void a_pan_general(TOPLEVEL *w_current, double world_cx, double world_cy, double relativ_zoom_factor, int flags);
  @@ -20,6 +20,7 @@
   SCM g_funcs_log(SCM msg);
   SCM g_funcs_msg(SCM msg);
   SCM g_funcs_confirm(SCM msg);
  +SCM g_funcs_filesel(SCM msg, SCM templ, SCM flags);
   SCM g_funcs_use_rc_values(void);
   SCM g_funcs_key_name(SCM keystring);
   SCM g_funcs_key_value(SCM keystring);
  @@ -808,6 +809,7 @@
   
   void generic_msg_dialog(const char *);
   int generic_confirm_dialog(const char *);
  +char * generic_filesel_dialog(const char *, const char *, gint);
   
   void generic_text_input_ok(GtkWidget *w, TOPLEVEL *w_current);
   void generic_text_input_dialog(TOPLEVEL *w_current);