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

gEDA-cvs: CVS update: Makefile.am



  User: pcjc2   
  Date: 07/05/29 19:06:05

  Modified:    .        Makefile.am x_compselect.h x_log.h x_multiattrib.h
                        x_pagesel.h x_print.h
  Log:
  Applied patch by Ivan Stankovic making dialogs within gschem save
  
  their position and size on exit and restore it on opening.
  
  Geometry is saved to {$HOME}/.gEDA/gschem-dialog-geometry
  
  
  
  Dialogs inherit this functionality by using, or deriving from the
  
  new GschemDialog class (A GtkDialog subclass).
  
  
  
  
  Revision  Changes    Path
  1.13                 eda/geda/gaf/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/gaf/gschem/include/Makefile.am,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- Makefile.am	23 Sep 2006 09:00:52 -0000	1.12
  +++ Makefile.am	29 May 2007 23:06:05 -0000	1.13
  @@ -1,4 +1,4 @@
  -## $Id: Makefile.am,v 1.12 2006-09-23 09:00:52 pbernaud Exp $
  +## $Id: Makefile.am,v 1.13 2007-05-29 23:06:05 pcjc2 Exp $
   ##
   ## Process this file with automake to produce Makefile.in
   
  @@ -6,7 +6,8 @@
   	globals.h i_vars.h prototype.h x_dialog.h x_event.h x_states.h \
   	gettext.h \
   	x_compselect.h \
  -	x_log.h x_multiattrib.h x_pagesel.h x_print.h x_preview.h
  +	x_log.h x_multiattrib.h x_pagesel.h x_print.h x_preview.h \
  +	gschem_dialog.h
   
   MOSTLYCLEANFILES = *.log core FILE *~
   CLEANFILES = *.log core FILE *~
  
  
  
  1.5                  eda/geda/gaf/gschem/include/x_compselect.h
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: x_compselect.h
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/gschem/include/x_compselect.h,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- x_compselect.h	14 Apr 2007 19:47:24 -0000	1.4
  +++ x_compselect.h	29 May 2007 23:06:05 -0000	1.5
  @@ -52,16 +52,14 @@
   
   
   struct _CompselectClass {
  -  GtkDialogClass parent_class;
  +  GschemDialogClass parent_class;
   
     guint behavior_changed_signal_id;
   
   };
   
   struct _Compselect {
  -  GtkDialog parent_instance;
  -
  -  TOPLEVEL *toplevel;
  +  GschemDialog parent_instance;
     
     GtkTreeView *treeview;
     Preview     *preview;
  
  
  
  1.3                  eda/geda/gaf/gschem/include/x_log.h
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: x_log.h
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/gschem/include/x_log.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- x_log.h	15 Jul 2006 18:51:40 -0000	1.2
  +++ x_log.h	29 May 2007 23:06:05 -0000	1.3
  @@ -35,11 +35,11 @@
   
   
   struct _LogClass {
  -  GtkDialogClass parent_class;
  +  GschemDialogClass parent_class;
   };
   
   struct _Log {
  -  GtkDialog parent_instance;
  +  GschemDialog parent_instance;
   
     GtkTextView *textview;
   
  
  
  
  1.4                  eda/geda/gaf/gschem/include/x_multiattrib.h
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: x_multiattrib.h
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/gschem/include/x_multiattrib.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- x_multiattrib.h	27 Feb 2005 18:14:22 -0000	1.3
  +++ x_multiattrib.h	29 May 2007 23:06:05 -0000	1.4
  @@ -42,14 +42,13 @@
   
   
   struct _MultiattribClass {
  -  GtkDialogClass parent_class;
  +  GschemDialogClass parent_class;
     
   };
   
   struct _Multiattrib {
  -  GtkDialog parent_instance;
  +  GschemDialog parent_instance;
   
  -  TOPLEVEL *toplevel;
     OBJECT *object;
   
     GtkTreeView    *treeview;
  
  
  
  1.3                  eda/geda/gaf/gschem/include/x_pagesel.h
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: x_pagesel.h
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/gschem/include/x_pagesel.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- x_pagesel.h	10 Feb 2007 21:25:29 -0000	1.2
  +++ x_pagesel.h	29 May 2007 23:06:05 -0000	1.3
  @@ -36,16 +36,13 @@
   
   
   struct _PageselClass {
  -  GtkDialogClass parent_class;
  +  GschemDialogClass parent_class;
   };
   
   struct _Pagesel {
  -  GtkDialog parent_instance;
  -
  -  TOPLEVEL *toplevel;
  +  GschemDialog parent_instance;
   
     GtkTreeView *treeview;
  -  
   };
   
   
  
  
  
  1.2                  eda/geda/gaf/gschem/include/x_print.h
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: x_print.h
  ===================================================================
  RCS file: /home/cvspsrv/cvsroot/eda/geda/gaf/gschem/include/x_print.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- x_print.h	30 Aug 2006 11:06:16 -0000	1.1
  +++ x_print.h	29 May 2007 23:06:05 -0000	1.2
  @@ -35,12 +35,12 @@
   
   struct _PrintDialogClass
   {
  -  GtkDialogClass parent_class;
  +  GschemDialogClass parent_class;
   };
   
   struct _PrintDialog
   {
  -  GtkDialog parent_instance;
  +  GschemDialog parent_instance;
   
     GtkEntry *fnfield, *cmdfield;
     GtkRadioButton *fileradio, *cmdradio;
  
  
  


_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs