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
|
## rc-version: 8 ##
# RCS-ID: $Id: prefs.mac.rc.py,v 1.2 2003/08/11 20:34:34 riaan Exp $
# Style of the Error/Output window's notebook. GTK is text only
eoErrOutNotebookStyle = 'text'
#-Explorer----------------------------------------------------------------------
# Should sorting in the explorer be case insensitive
exCaseInsensitiveSorting = false
#-Editor------------------------------------------------------------------------
# Should there be submenu with all the items from the New palete under the
# Editor's File menu. Causes warnings under wxGTK.
edShowFileNewMenu = false
# Should a custom wxSTC paint handler he installed which minimizes refresing?
edUseCustomSTCPaintEvtHandler = false
# There is a problem with folding on GTK
edSTCFolding = false
#-Window settings---------------------------------------------------------------
# Height of the Palette window. Adjust if you use big fonts
paletteHeights = {'tabs': 120, 'menu': 76}
# Used my Mac toplevel main menu
topMenuHeight = 44
# The amount of space Boa should leave on the right for a vertical OS Taskbar.
verticalTaskbarWidth = 0
# The amount of space Boa should leave from the bottom for a horizontal OS Taskbar.
horizontalTaskbarHeight = 100
# Percentage of the with that the Editor window should occupy
editorScreenWidthPerc = 3.0/4.0
# Window manager dependent values useful for mostly for GTK
windowManagerTop = 16
windowManagerBottom = 7
windowManagerSide = 5
# Font size of the text in the Inspector's statusbar
inspStatBarFontSize = 13
# Match braces in code
braceHighLight = false
# Minimize the IDE while running applications
minimizeOnRun = false
# Minimize the IDE when using Debug/Continue while debugging
minimizeOnDebug = false
explorerFileSysRootDefault = ('/', '/')
#-Designer----------------------------------------------------------------------
# Draw grid in designer
drawDesignerGrid = false
# Also draw grid for child container controls in the frame
drawDesignerGridForSubWindows = false
# Grid draw method: 'lines', 'dots', 'grid', NYI: 'bitmap'
## options: 'lines', 'dots', 'grid'
drawGridMethod = 'grid'
# Grayout (blueout actually) source while designer is open
grayoutSource = false
#-Code completion---------------------------------------------------------------
# With these flags you can set which wxPython libraries are available to code completion.
# Import wxPython.utils for Code Completion
ccImportWxPyUtils = true
# Import wxPython.html for Code Completion
ccImportWxPyHtml = true
# Import wxPython.htmlhelp for Code Completion
ccImportWxPyHtmlHelp = true
# Import wxPython.help for Code Completion
ccImportWxPyHelp = true
# Import wxPython.calendar for Code Completion
ccImportWxPyCalendar = true
# Import wxPython.grid for Code Completion
ccImportWxPyGrid = true
# Import wxPython.ogl for Code Completion
ccImportWxPyOgl = true
# Import wxPython.stc for Code Completion
ccImportWxPyStc = true
# Import wxPython.gizmos for Code Completion
ccImportWxPyGizmos = true
# Import wxPython.wizard for Code Completion
ccImportWxPyWizard = false
# With these filters the names available to code completion can be narrowed down further.
# Filter out all wxPython names
ccFilterWxAll = false
# Filter out all classes ending in Ptr
ccFilterWxPtrNames = true
# Filters out integer constant values
ccFilterWxConstants = true
# Filter out functions
ccFilterWxFunctions = false
# Filter out classes
ccFilterWxClasses = false
# Filter out instances
ccFilterWxInstances = false
# Editable preferences
exportedProperties2 = ['exCaseInsensitiveSorting', 'edShowFileNewMenu',
'edUseCustomSTCPaintEvtHandler', 'edSTCFolding', 'verticalTaskbarWidth',
'horizontalTaskbarHeight', 'editorScreenWidthPerc',
'windowManagerTop', 'windowManagerBottom', 'windowManagerSide',
'braceHighLight', 'minimizeOnRun', 'minimizeOnDebug', 'inspStatBarFontSize',
'drawDesignerGrid', 'drawDesignerGridForSubWindows', 'drawGridMethod',
'grayoutSource',
'ccImportWxPyUtils', 'ccImportWxPyHtml', 'ccImportWxPyHtmlHelp',
'ccImportWxPyHelp', 'ccImportWxPyCalendar', 'ccImportWxPyGrid',
'ccImportWxPyOgl', 'ccImportWxPyStc', 'ccImportWxPyGizmos',
'ccFilterWxAll', 'ccFilterWxPtrNames', 'ccFilterWxConstants',
'ccFilterWxFunctions', 'ccFilterWxClasses', 'ccFilterWxInstances',
]
|