[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: defines.h
User: ahvezda
Date: 05/08/14 21:26:51
Modified: . defines.h struct.h
Log:
Commited Carlos Azevedo gnetlist rename patch, also his chdir and rc expand
patch. Added grid-mode and grid-fixed-threshold keywords and implementation.
Added add-attribute-offset (but not the implementation; still under devel)
Revision Changes Path
1.49 +4 -0 eda/geda/devel/libgeda/include/defines.h
(In the diff below, changes in quantity of whitespace are not shown.)
Index: defines.h
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/libgeda/include/defines.h,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -b -r1.48 -r1.49
--- defines.h 14 Jul 2005 17:31:03 -0000 1.48
+++ defines.h 15 Aug 2005 01:26:51 -0000 1.49
@@ -277,6 +277,10 @@
#define VECTOR_FONTS 0
#define PS_FONTS 1
+/* for grid_mode */
+#define GRID_VARIABLE_MODE 0
+#define GRID_FIXED_MODE 1
+
/* for print dialog box */
#define EXTENTS 0
#define WINDOW 1
1.74 +13 -0 eda/geda/devel/libgeda/include/struct.h
(In the diff below, changes in quantity of whitespace are not shown.)
Index: struct.h
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/libgeda/include/struct.h,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -b -r1.73 -r1.74
--- struct.h 19 Feb 2005 23:27:30 -0000 1.73
+++ struct.h 15 Aug 2005 01:26:51 -0000 1.74
@@ -841,10 +841,23 @@
/* controls the grid dot size */
int grid_dot_size;
+ /* controls the mode of the grid (either variable or fixed) */
+ int grid_mode;
+
+ /* controls the mininum number of pixels necessary for the grid to be */
+ /* displayed */
+ int grid_fixed_threshold;
+
/* controls the threshold (in lines of text) when the multi-line text */
/* output font is forced to vector */
int print_vector_threshold;
+ /* controls the offset (in world coordinates) that are added to netname */
+ /* attributes when they are attached to vertical or horizontal nets */
+ int add_attribute_offset;
+
+
+
/* gnetlist specific */
int net_naming_priority;
int hierarchy_traversal;