summaryrefslogtreecommitdiff
path: root/support/xtexshell/setup.orig
blob: 064ddaa98f825169f6cf49345a24d1e42c2b9cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#***********************************************************************
#*** XTEXShell Setup file **********************************************
#***********************************************************************
#***
#*** 'setup.orig' is the original setup file. Please never change this file. 
#*** Copy 'setup.orig' to 'setup' and make changes there !
#***

#*** X 11 Stuff

set normal_font         "-*-New Century Schoolbook-Medium-R-Normal-*-120-*"
set normall_font        "-*-New Century Schoolbook-Medium-R-Normal-*-140-*"
set italicl_font        "-*-New Century Schoolbook-Medium-I-Normal-*-120-*"
set bold_font           "-*-New Century Schoolbook-Bold-R-Normal-*-120-*"
set boldl_font          "-*-New Century Schoolbook-Bold-R-Normal-*-140-*"
set helvbold_font       "-*-Helvetica-Bold-R-Normal-*-120-*"
set courier_font        "-*-Courier-Medium-R-Normal-*-120-*"
set courierl_font       "-*-Courier-Medium-R-Normal-*-140-*"
set courierboldl_font   "-*-Courier-Bold-R-Normal-*-140-*"
set terml_font          "-*-Terminal-Medium-R-Normal-*-140-*"
set fixbold_font        "-*-Fixed-Bold-R-Normal-*-120-*"
set edit_font           "-*-Courier-Medium-R-Normal-*-120-*"

#*** Names and Geometries of windows

set  mainwin_name       ".";                    #*** Main-Window
set  mainwin_geo        "640x480"

set  hyphelp_name       ".hyphelpwin";          #*** Geometry of windows is relative to main window !
set  hyphelp_geo        "+140+140"
set  hyphelp_min        "10 10"

set  manhelp_geo        "+200+100"

set  bmphelp_name       ".bmphelpwin"
set  bmphelp_geo        "600x500+300+100" 
set  bmphelp_min        "10 10"

set  execwin_name       ".execwin"
set  execwin_geo        "+140+120"
set  execwin_min        "10 10"

set  fsbwin_name        ".fileselbox"
set  fsbwin_geo         "+220+100"

set  dialog_name        ".dialogwin"
set  dialog_geo         "+150+150"
set  diahelp_min        "10 10"

set  msg_name           ".msgwin"
set  msg_geo            "+190+190"
set  msg_min            "10 10"

set  search_name        ".srchwin"
set  search_geo         "+100+150"
set  search_min         "50 50"

#*** File Selector Box. The following options set the format for the files
#*** displayed in the File Selector Box. Each click on the button 'format'
#*** in the file selector box rotates the list by one word to the left. The
#*** first word is used and has the same format as 'ls'

set  fsboptions "-a -la";               

#*** Editors

set editname  ""        
set editmode  "TURBO"                   

set mainname  ""                                
set mainflag  0;                                #*** No Main File so far

set editor    "xtex";                           #*** values: xtex, 2nd column of editorlist 
set editwrap  1;                                #*** Word Wrapping ?
set editwrapcol 78;                             #*** Column for Word wrapping
set edittab   8;                                #*** Width for Tabs

#*** List of editors. You can customize this table to your system
#*** The command may include the macro :fname and :fnamewoext, see below
#*** for explanation. Use xterm -e, if your program needs a window.
#*** 	(Name of editor in Configure menu, name for variable editor (must
#***    be a single word wo spaces), command to execute)        

set editorlist [list \
	[ list "Emacs" "emacs"  "emacs :fname" ]        \
	[ list "Joe"   "joe"    "xterm -e joe :fname" ] \
	[ list "Jed"   "jed"    "xterm -e jed :fname"]    	\
	[ list "Xedit" "xedit"  "xedit :fname" ]        ]

#*** Character translation list

set edittrans 1;                                #*** Character translation mode ?

set edittrlist [list "_\xF6_" "\"o" \
                     "_\xD6_" "\"O" \
                     "_\xFC_" "\"u" \
                     "_\xDC_" "\"U" \
                     "_\xE4_" "\"a" \
                     "_\xC4_" "\"A" \
                     "_\xDF_" "\"s" ]
                                         
#*** Commands for unix programs. You can modify the following table if you like
#*** Use :fname for filename, :fnamewoext for filename without extension.
#*** Use :save to save file in editor first, :reload to reload file after processing

#*** (Name of widget, command)

set commandlist [list                                             \
        [list "TeX"    ":save tex :fname"]                        \
        [list "LaTeX"  ":save latex :fname"]                      \
        [list "XDVI"   "xdvi :fnamewoext.dvi"]                    \
        [list "DVIPS"  "dvips :fnamewoext.dvi -o :fnamewoext.ps"] \
        [list "GV"     "ghostview :fnamewoext.ps"]                \
        [list "XFig"   "xfig"]                                    \
        [list "Spell"  ":save :reload xterm -e ispell :fname"]    \
        [list "Print"  "lpr :fnamewoext.ps"]                      ]