~ubuntu-branches/ubuntu/trusty/geda-utils/trusty

« back to all changes in this revision

Viewing changes to lib/system-gschlasrc.in

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-03-15 23:04:53 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050315230453-x3x6qtw9qv17zbnf
Tags: 20050313-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
3
; Init file for gschlas
 
4
;
 
5
 
 
6
;  ;'s are comments
 
7
;  keywords are case sensitive (guile feature)
 
8
;  mode strings are case sensitive
 
9
;  colors are not case sensitive 
 
10
;  
 
11
 
 
12
; gschlas-version string
 
13
;
 
14
; Specifies the version of this file.  This number is used to make sure 
 
15
; that the rc file is compatible with the version of gschem that is 
 
16
; being run. The end user should *not* change this value.
 
17
;
 
18
(gschlas-version "@VERSION@")
 
19
 
 
20
; Load up gafrc
 
21
;
 
22
; Contains all paths needed for gsymcheck
 
23
(define gedadata (getenv "GEDADATA"))
 
24
(define gedadatarc (getenv "GEDADATARC"))
 
25
(load (string-append gedadatarc "@PATHSEP@system-gafrc"))
 
26
 
 
27
;  default-series-name string
 
28
;  Specify the default series name (of new schematics)
 
29
;  Will probably be changed a runtime
 
30
;
 
31
(default-series-name "untitled")
 
32
 
 
33
; force-boundingbox string
 
34
;
 
35
; Controls if the entire bounding box of a symbol is used when figuring out
 
36
; whichend of the pin is considered the active port.  Enable this when
 
37
; gschlas is guessing incorrectly.
 
38
;
 
39
(force-boundingbox "disabled")
 
40
;(force-boundingbox "enabled")
 
41
 
 
42
;
 
43
; End of mode related keywords
 
44
;
 
45
 
 
46
 
 
47
;
 
48
; Start of path related keywords
 
49
;
 
50
 
 
51
;
 
52
; End of path related keywords
 
53
;
 
54
 
 
55
; world-size width height border
 
56
;
 
57
; Specifies the size of the world and a border 
 
58
; Be sure all inputs are reals (floats/doubles) and don't try to reverse
 
59
; the values: to get a portrait mode.  Code to support that needs to be added
 
60
; The code that implements this automatically transforms the dimensions into
 
61
; the proper aspect ratio.  All units are in inches.
 
62
; This is not the paper size.  That is specified elsewhere.  End users should
 
63
; not change this at all
 
64
;
 
65
(world-size 120.0 90.0 1.0)
 
66
;(world-size 60.0 45.0 1.0)
 
67