
; 
; Init file for gsymcheck
;

;  ;'s are comments
;  keywords are case sensitive (guile feature)
;  mode strings are case sensitive
;  colors are not case sensitive 
;  

; gsymcheck-version string
;
; Specifies the version of this file.  This number is used to make sure 
; that the rc file is compatible with the version of gschem that is 
; being run. The end user should *not* change this value.
;
(gsymcheck-version "19990327")


;  default-series-name string
;  Specify the default series name (of new schematics)
;  Will probably be changed a runtime
;
(default-series-name "untitled")

; untitled-name string
; Specify the default untitled basename (usually only used a startup time)
; And typically not changed at runtime
;
(untitled-name "untitled")

;
; End of mode related keywords
;


;
; Start of path related keywords
;

; component-library
; Specify where components exist.
; The string after this keyword should be a valid directory name.
; You should have read access to this directory and all the files inside
; the directory.
; The component library which is in the user's local project directory is
; added automatically and doesn't need to be specified here (*TBD later *)
; The order of the component-library keywords determines the order they
; are displayed, but they are searched *backwards*, ie last one in this list
; is searched *first*.
; All environment variables *MUST* be in the form ${variable_name}
;
(component-library "/usr/share/gEDA/sym/local")
(component-library "/usr/share/gEDA/sym/74")
(component-library "/usr/share/gEDA/sym/4000")
(component-library "/usr/share/gEDA/sym/IEC417")
(component-library "/usr/share/gEDA/sym/analog")
(component-library "/usr/share/gEDA/sym/idt")
(component-library "/usr/share/gEDA/sym/misc")
(component-library "/usr/share/gEDA/sym/micro")
(component-library "/usr/share/gEDA/sym/memory")
(component-library "/usr/share/gEDA/sym/radio")
(component-library "/usr/share/gEDA/sym/tube")

; source-library string
; Specify where source entities exist.
; The string after this keyword should be a valid directory name.
; You should have read access to this directory and all the files inside
; the directory.
; The source library which is in the user's local project directory is
; added automatically and doesn't need to be specified here (*TBD later *)
; The order of the source-library keywords determines the order they
; are displayed, but they are searched *backwards*, ie last one in this list
; is searched *first*.
; All environment variables *MUST* be in the form ${variable_name}
;
(source-library "/usr/share/gEDA/sym/local")
(source-library "/usr/share/gEDA/sym/analog")
(source-library "/usr/share/gEDA/sym/idt")
(source-library "/usr/share/gEDA/sym/74")
(source-library "/usr/share/gEDA/sym/4000")
(source-library "/usr/share/gEDA/sym/misc")
(source-library "/usr/share/gEDA/sym/micro")
(source-library "/usr/share/gEDA/sym/memory")
(source-library "/usr/share/gEDA/sym/radio")
(source-library "/usr/share/gEDA/sym/tube")

; font-directory string
; Specifies where the vector font definitions are stored.
; You should have read access to this directory and all the files inside
; the directory.
; All environment variables *MUST* be in the form ${variable_name}
;
(font-directory "/usr/share/gEDA/sym/font")

; scheme-directory string
; Specifies where the supporting scheme lives
; You should have read access to this directory and all the files inside
; the directory.
; All environment variables *MUST* be in the form ${variable_name}
;
(scheme-directory "/usr/share/gEDA/scheme")

;
; End of path related keywords
;


; paper-size width height border
; Specifies the size of the paper and a border around the page
; Be sure all inputs are reals (floats/doubles) and don't try to reverse
; the values: to get a portrait mode.  Code to support that needs to be added
; The code that implements this automatically transforms the dimensions into
; the proper aspect ratio.  All units are in inches.
;
;(paper-size 11.0 8.5 1.0)    ; A size sheet
;(paper-size 17.0 11.0 1.0)   ; B size sheet
(paper-size 22.0 17.0 1.0)   ; C size sheet
;(paper-size 34.0 22.0 1.0)   ; D size sheet
;(paper-size 44.0 34.0 1.0)   ; E size shee

