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 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
*double_buffered: on
// with above at least there will not be flickering if InterViews
// resource file is missing
*Scene_background: #ffffff
*Scene_foreground: #000000
*FieldEditor*background: #ffffff
*background: #cfffff
*foreground: #000000
*default_brush: 0
*view_margin: .25
*err_dialog: off
*dismiss_button: Close
*use_transient_windows: yes
*mswin_scale: 1.2
// above only applies to the mswin version. If the width of the screen in pixels
// is pw, then the default scale is 1 if pw>1100 otherwise scale is 1200/pw
// if above is uncommented then the value will take precedence.
// scale can also be set at any time with PWManager[0].scale(factor)
*nrn_library: $(NEURONHOME)/lib
*view_pick_epsilon: 2
*pwm_dismiss_button: Iconify
*pwm_help: on
*pwm_canvas_height: 120
*pwm_paper_height: 11
*pwm_paper_width: 8.5
*pwm_paper_resolution: .5
*pwm_screen_outline_color: red
*pwm_window_outline_color: blue
// windows on screen snap to grid
*pwm_pixel_resolution: 0
// nonzero value above will not work unless offsets are set correctly
// for your window manager. I know of no portable way of determining
// them automatically.
*window_manager_offset_x: 5.
*window_manager_offset_y: 26.
*section_select_color: red
*section_adjacent_color: green
*show_adjacent_selection: off
*disable_color: #808080
// how many items in a panel before switching to scroll style
*panel_scroll: 12
// suffix for filenames to appear in browsers
*pwm_print_file_filter: *.ps
*pwm_idraw_file_filter: *.id
*pwm_ascii_file_filter: *
*pwm_save_file_filter: *.ses
*pwm_idraw_prologue: $(NEURONHOME)/lib/prologue.id
//setlinejoin is to prevent noisy looking wide lines when points are
//very close together
*pwm_postscript_filter: sed '/%%EndProlog/a\\\n2 setlinejoin\ns;/Adobe-;/;\ns;-Oblique;;'
//following for mswin
@nrndef_mswin@*pwm_postscript_filter: sed -f ${N}/lib/psfilt.sed
@nrndef_mswin@*printer_command: Windows
*SlowSlider*autorepeatStart: 0.
//draw a box around a printed window
*scene_print_border: 1
*radioScale: 1.2
*stepper_size: 20.
*xvalue_field_size_increase: 10.
// following is historical standard for unix.
@nrndef_unix@*font: *helvetica-medium-r-normal*--14*
@nrndef_unix@*MenuBar*font: *-helvetica-bold-o-normal--14*
@nrndef_unix@*MenuItem*font: *-helvetica-bold-o-normal--14*
// Mac and mswin internal default is
@nrndef_mac@*font: *helvetica-medium-r-normal*--14*
@nrndef_mac@*MenuBar*font: *-helvetica-bold-o-normal--14*
@nrndef_mac@*MenuItem*font: *-helvetica-bold-o-normal--14*
@nrndef_mswin@*font: *Arial*bold*--12*
//*MenuBar*font: *Arial*bold*--12*
//*MenuItem*font: *Arial*bold*--12*
*xvalue_format: %.5g
# according to xaxis(mode), 0 means view axis, 3 means nothing
*graph_axis_default: 0
//the color map for pseudocolor plotting for 3-D cells
*shape_scale_file: $(NEURONHOME)/lib/shape.cm2
// 1 means slower but more pleasing join
*shape_beveljoin: 1
// number of colors and brushes selectable in the graph ColorBrushWidget
*CBWidget_ncolor: 10
*CBWidget_nbrush: 10
// most people do not like the "first instance" messages when loading
// hoc files
*first_instance_message: off
// Value editor buttons show units if available
*units_on_flag: on
// Following useful for one button mouse. Mac has this as 10 by default
*scene_menu_box_size: 10.
// The full pathname for the Java VM dynamically loadable
// library is specified here
// two examples for mswin on my machines are
//*jvmdll: c:\Java\jre1.5.0_01\bin\client\jvm.dll
//*jvmdll: c:\jdk1.3.1\jre\bin\classic\jvm.dll
// for gnu-linux it should be set as below and the LD_LIBRARY_PATH set
// so that libjvm.so can itself find other libraries. For example
// export LD_LIBRARY_PATH=/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server
@nrndef_unix@*jvmdll: libjvm.so
@nrndef_mac@*jvmdll: libjvm.dylib
// The default stack size is 1000 and the frame (recursion depth) size is 100 unless explicitly set nonzero below
// One may also use the -NSTACK stacksize -NFRAME framesize options at launch.
*NSTACK: 0
*NFRAME: 0
// To ensure that all statements in this file take effect, do not remove this line.
// It prevents the absence of a trailing newline for the last substantive
// property for mswin.
|