home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-05-08 | 41.0 KB | 1,612 lines |
- object EnvDialog: TEnvDialog
- Left = 556
- Top = 190
- BorderIcons = [biSystemMenu]
- BorderStyle = bsDialog
- Caption = 'Environment Options'
- ClientHeight = 417
- ClientWidth = 421
- ParentFont = True
- PopupMenu = PopupMenu1
- Position = poScreenCenter
- OnCreate = DialogCreate
- OnDestroy = DialogDestroy
- PixelsPerInch = 96
- TextHeight = 13
- object Panel1: TPanel
- Left = 0
- Top = 382
- Width = 421
- Height = 35
- Align = alBottom
- BevelOuter = bvNone
- TabOrder = 1
- object HelpButton: TButton
- Left = 339
- Top = 2
- Width = 75
- Height = 25
- Caption = '&Help'
- TabOrder = 2
- OnClick = HelpButtonClick
- end
- object OKButton: TButton
- Left = 177
- Top = 2
- Width = 75
- Height = 25
- Caption = 'OK'
- Default = True
- ModalResult = 1
- TabOrder = 0
- OnClick = OKButtonClick
- end
- object Button2: TButton
- Left = 258
- Top = 2
- Width = 75
- Height = 25
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 1
- end
- end
- object Panel2: TPanel
- Left = 0
- Top = 0
- Width = 421
- Height = 382
- Align = alClient
- BevelOuter = bvNone
- BorderWidth = 5
- TabOrder = 0
- object PageControl: TPageControl
- Left = 5
- Top = 5
- Width = 411
- Height = 372
- ActivePage = CodeStyleSheet
- Align = alClient
- TabOrder = 0
- OnChange = TabControlClick
- OnChanging = TabControlChange
- object PrefPage: TTabSheet
- HelpContext = 1800
- Caption = 'Preferences'
- end
- object PathsPage: TTabSheet
- HelpContext = 24948
- Caption = 'Paths'
- object Label19: TLabel
- Left = 8
- Top = 136
- Width = 64
- Height = 13
- Caption = 'Java libraries:'
- end
- object Label20: TLabel
- Left = 8
- Top = 88
- Width = 99
- Height = 13
- Caption = '&Output root directory:'
- FocusControl = EditOutputPath
- end
- object Label23: TLabel
- Left = 8
- Top = 48
- Width = 101
- Height = 13
- Caption = '&Source root directory:'
- FocusControl = EditSourcePath
- end
- object Label24: TLabel
- Left = 8
- Top = 8
- Width = 94
- Height = 13
- Caption = 'Target &JDK version:'
- FocusControl = ComboBoxJDK
- end
- object ListBox: TListBox
- Left = 8
- Top = 152
- Width = 305
- Height = 177
- DragMode = dmAutomatic
- ItemHeight = 13
- Style = lbOwnerDrawFixed
- TabOrder = 6
- OnClick = ListBoxClick
- OnDblClick = ButtonDefineLibraryClick
- OnDragDrop = ListBoxDragDrop
- OnDragOver = ListBoxDragOver
- OnDrawItem = ListBoxDrawItem
- end
- object EditOutputPath: TEdit
- Left = 8
- Top = 104
- Width = 305
- Height = 21
- TabOrder = 4
- end
- object EditSourcePath: TEdit
- Left = 8
- Top = 64
- Width = 305
- Height = 21
- TabOrder = 2
- end
- object ComboBoxJDK: TComboBox
- Left = 8
- Top = 24
- Width = 305
- Height = 21
- Style = csDropDownList
- ItemHeight = 0
- TabOrder = 0
- end
- object ButtonDefineJDK: TButton
- Left = 320
- Top = 22
- Width = 73
- Height = 25
- Caption = '&Define...'
- TabOrder = 1
- OnClick = ButtonDefineJDKClick
- end
- object ButtonBrowseSource: TButton
- Left = 320
- Top = 62
- Width = 73
- Height = 25
- Caption = 'Browse...'
- TabOrder = 3
- OnClick = ButtonBrowseSourceClick
- end
- object ButtonBrowseOutput: TButton
- Left = 320
- Top = 102
- Width = 73
- Height = 25
- Caption = 'Browse...'
- TabOrder = 5
- OnClick = ButtonBrowseOutputClick
- end
- object ButtonAddLibrary: TButton
- Left = 320
- Top = 152
- Width = 75
- Height = 25
- Caption = '&Add...'
- TabOrder = 7
- OnClick = ButtonAddLibraryClick
- end
- object ButtonRemoveLibrary: TButton
- Left = 320
- Top = 184
- Width = 75
- Height = 25
- Caption = '&Remove'
- TabOrder = 8
- OnClick = ButtonRemoveLibraryClick
- end
- object ButtonDefineLibrary: TButton
- Left = 320
- Top = 304
- Width = 73
- Height = 25
- Caption = '&Libraries...'
- TabOrder = 9
- OnClick = ButtonDefineLibraryClick
- end
- end
- object CompilerPage: TTabSheet
- HelpContext = 24949
- Caption = 'Compiler'
- object GroupBox2: TGroupBox
- Left = 8
- Top = 11
- Width = 385
- Height = 139
- Caption = 'Default Compiler Options'
- TabOrder = 0
- object Label12: TLabel
- Left = 33
- Top = 112
- Width = 48
- Height = 13
- Alignment = taRightJustify
- Caption = '&Encoding:'
- end
- object Label13: TLabel
- Left = 12
- Top = 84
- Width = 69
- Height = 13
- Alignment = taRightJustify
- Caption = 'E&xclude Class:'
- end
- object cbxDebugInfo: TCheckBox
- Left = 8
- Top = 16
- Width = 177
- Height = 17
- Caption = '&Include Debug Information'
- State = cbChecked
- TabOrder = 0
- end
- object cbxShowWarnings: TCheckBox
- Left = 8
- Top = 36
- Width = 113
- Height = 17
- Caption = '&Show Warnings'
- State = cbChecked
- TabOrder = 1
- end
- object cEncoding: TComboBox
- Left = 88
- Top = 108
- Width = 144
- Height = 21
- Style = csDropDownList
- ItemHeight = 13
- Items.Strings = (
- 'Default'
- 'None')
- TabOrder = 7
- end
- object eExcludeClass: TComboBox
- Left = 88
- Top = 80
- Width = 274
- Height = 21
- ItemHeight = 0
- TabOrder = 6
- end
- object cbxCheckStable: TCheckBox
- Left = 184
- Top = 16
- Width = 173
- Height = 17
- Caption = 'C&heck Stable Packages'
- TabOrder = 3
- end
- object cbxDeprecations: TCheckBox
- Left = 8
- Top = 56
- Width = 169
- Height = 17
- Caption = 'Show &Deprecations'
- TabOrder = 2
- end
- object cbxMakeStable: TCheckBox
- Left = 184
- Top = 36
- Width = 175
- Height = 17
- Caption = '&Make Packages Stable'
- TabOrder = 4
- end
- object cbxObfuscate: TCheckBox
- Left = 184
- Top = 56
- Width = 97
- Height = 17
- Caption = '&Obfuscate'
- TabOrder = 5
- end
- end
- object CheckBoxAutosave: TCheckBox
- Left = 8
- Top = 160
- Width = 241
- Height = 17
- Caption = '&Autosave all files before compiling'
- TabOrder = 1
- end
- end
- object LibPage: TTabSheet
- HelpContext = 1875
- Caption = 'Library'
- object GroupBox13: TGroupBox
- Left = 8
- Top = 180
- Width = 369
- Height = 48
- Caption = 'Path'
- TabOrder = 3
- object Label17: TLabel
- Left = 8
- Top = 20
- Width = 59
- Height = 13
- Caption = '&Library Path:'
- FocusControl = ecLibraryPath
- end
- object ecLibraryPath: TComboBox
- Left = 96
- Top = 16
- Width = 257
- Height = 21
- ItemHeight = 0
- TabOrder = 0
- end
- end
- object GroupBox14: TGroupBox
- Left = 8
- Top = 112
- Width = 369
- Height = 65
- Caption = 'Options'
- TabOrder = 2
- object cbLibDebugInfo: TCheckBox
- Left = 8
- Top = 20
- Width = 221
- Height = 17
- Caption = '&Compile with debug info'
- TabOrder = 0
- end
- object cbLibSaveSource: TCheckBox
- Left = 8
- Top = 40
- Width = 213
- Height = 17
- TabStop = False
- Caption = 'Sa&ve library source code'
- TabOrder = 1
- end
- end
- object GroupBox18: TGroupBox
- Left = 8
- Top = 8
- Width = 185
- Height = 101
- Caption = 'Map file'
- TabOrder = 0
- object rbMapFileOff: TRadioButton
- Left = 8
- Top = 16
- Width = 121
- Height = 17
- Caption = '&Off'
- TabOrder = 0
- TabStop = True
- end
- object rbMapSegOnly: TRadioButton
- Left = 8
- Top = 36
- Width = 121
- Height = 17
- Caption = '&Segments'
- TabOrder = 1
- end
- object rbMapSegPubs: TRadioButton
- Left = 8
- Top = 56
- Width = 121
- Height = 17
- Caption = '&Publics'
- TabOrder = 2
- end
- object rbMapDetailed: TRadioButton
- Left = 8
- Top = 76
- Width = 121
- Height = 17
- Caption = '&Detailed'
- TabOrder = 3
- end
- end
- object GroupBox19: TGroupBox
- Left = 196
- Top = 8
- Width = 181
- Height = 101
- Caption = 'Messages'
- TabOrder = 1
- object cbShowHints: TCheckBox
- Left = 8
- Top = 16
- Width = 121
- Height = 17
- Caption = 'Show hi&nts'
- TabOrder = 0
- end
- object cbShowWarnings: TCheckBox
- Left = 8
- Top = 36
- Width = 121
- Height = 17
- TabStop = False
- Caption = 'Show &warnings'
- TabOrder = 1
- end
- end
- object GroupBox20: TGroupBox
- Left = 8
- Top = 232
- Width = 369
- Height = 48
- Caption = 'Aliases'
- TabOrder = 4
- object Label1: TLabel
- Left = 8
- Top = 20
- Width = 57
- Height = 13
- Caption = '&Unit aliases:'
- FocusControl = ecUnitAliases
- end
- object ecUnitAliases: TComboBox
- Left = 96
- Top = 16
- Width = 257
- Height = 21
- ItemHeight = 0
- TabOrder = 0
- end
- end
- end
- object EditorPage: TTabSheet
- HelpContext = 25052
- Caption = 'Editor'
- object lbUndo: TLabel
- Left = 265
- Top = 218
- Width = 49
- Height = 13
- Alignment = taRightJustify
- Caption = 'Undo &limit:'
- FocusControl = eoUndoLimit
- end
- object Label5: TLabel
- Left = 97
- Top = 246
- Width = 50
- Height = 13
- Alignment = taRightJustify
- Caption = '&Tab stops:'
- FocusControl = eoTabRack
- end
- object lbBlockInd: TLabel
- Left = 85
- Top = 218
- Width = 62
- Height = 13
- Alignment = taRightJustify
- Caption = 'Block i&ndent:'
- FocusControl = eoBlockIndent
- end
- object Label6: TLabel
- Left = 59
- Top = 274
- Width = 88
- Height = 13
- Alignment = taRightJustify
- Caption = 'S&yntax extensions:'
- FocusControl = eoHighlightExts
- end
- object Label21: TLabel
- Left = 8
- Top = 10
- Width = 129
- Height = 13
- Alignment = taRightJustify
- AutoSize = False
- Caption = 'Editor SpeedSetting:'
- FocusControl = SpeedSetting
- end
- object GroupBox5: TGroupBox
- Left = 8
- Top = 33
- Width = 385
- Height = 174
- Caption = 'Editor options:'
- TabOrder = 1
- object eoIndent: TCheckBox
- Left = 7
- Top = 17
- Width = 150
- Height = 17
- Caption = '&Auto indent mode'
- TabOrder = 0
- end
- object eoInsert: TCheckBox
- Left = 7
- Top = 34
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Insert mode'
- TabOrder = 1
- end
- object eoUseTabChar: TCheckBox
- Left = 7
- Top = 51
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'Use tab cha&racter'
- TabOrder = 2
- OnClick = eoUseTabCharClick
- end
- object eoOptimalFill: TCheckBox
- Left = 7
- Top = 85
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Optimal fill'
- TabOrder = 4
- end
- object eoOutdent: TCheckBox
- Left = 7
- Top = 102
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'Backspace &unindents'
- TabOrder = 5
- end
- object eoCursorInTabs: TCheckBox
- Left = 7
- Top = 119
- Width = 150
- Height = 18
- TabStop = False
- Caption = '&Cursor through tabs'
- TabOrder = 6
- end
- object eoGroupUndo: TCheckBox
- Left = 7
- Top = 137
- Width = 150
- Height = 16
- TabStop = False
- Caption = '&Group undo'
- TabOrder = 7
- end
- object eoCursorBeyondEOF: TCheckBox
- Left = 7
- Top = 153
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'Cursor beyond &EOF'
- TabOrder = 8
- end
- object eoUndoAfterSave: TCheckBox
- Left = 177
- Top = 17
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'Undo after sa&ve'
- TabOrder = 9
- end
- object eoKeepTrailingBlanks: TCheckBox
- Left = 177
- Top = 34
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Keep trailing blanks'
- TabOrder = 10
- end
- object eoBriefRegExp: TCheckBox
- Left = 177
- Top = 51
- Width = 174
- Height = 17
- TabStop = False
- Caption = '&BRIEF regular expressions'
- TabOrder = 11
- end
- object eoPersistentBlocks: TCheckBox
- Left = 177
- Top = 68
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Persistent blocks'
- TabOrder = 12
- end
- object eoOverwriteBlocks: TCheckBox
- Left = 177
- Top = 85
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'Over&write blocks'
- TabOrder = 13
- end
- object eoDoubleClickLine: TCheckBox
- Left = 177
- Top = 102
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Double click line'
- TabOrder = 14
- end
- object eoFindTextAtCursor: TCheckBox
- Left = 177
- Top = 119
- Width = 150
- Height = 18
- TabStop = False
- Caption = 'Find te&xt at cursor'
- TabOrder = 15
- end
- object eoHighlight: TCheckBox
- Left = 177
- Top = 153
- Width = 178
- Height = 17
- TabStop = False
- Caption = 'Use &syntax highlight'
- TabOrder = 17
- end
- object eoForceCutCopyEnabled: TCheckBox
- Left = 177
- Top = 137
- Width = 182
- Height = 16
- TabStop = False
- Caption = '&Force cut and copy enabled'
- TabOrder = 16
- end
- object eoSmartTab: TCheckBox
- Left = 7
- Top = 68
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'S&mart tab'
- TabOrder = 3
- OnClick = eoSmartTabClick
- end
- end
- object eoBlockIndent: TComboBox
- Left = 153
- Top = 215
- Width = 71
- Height = 21
- ItemHeight = 0
- TabOrder = 2
- OnKeyPress = NumbersOnly
- end
- object eoUndoLimit: TComboBox
- Left = 319
- Top = 215
- Width = 72
- Height = 21
- ItemHeight = 0
- TabOrder = 3
- OnKeyPress = NumbersOnly
- end
- object eoTabRack: TComboBox
- Left = 153
- Top = 242
- Width = 239
- Height = 21
- ItemHeight = 0
- TabOrder = 4
- OnKeyPress = NumsAndDelims
- end
- object eoHighlightExts: TComboBox
- Left = 153
- Top = 270
- Width = 239
- Height = 21
- ItemHeight = 0
- TabOrder = 5
- end
- object SpeedSetting: TComboBox
- Left = 145
- Top = 7
- Width = 248
- Height = 21
- Style = csDropDownList
- ItemHeight = 13
- Items.Strings = (
- 'Default keymapping'
- 'IDE classic'
- 'BRIEF emulation'
- 'Epsilon emulation')
- TabOrder = 0
- OnChange = EditorSpeedClick
- OnClick = EditorSpeedClick
- end
- end
- object EdDispPage: TTabSheet
- HelpContext = 25053
- Caption = 'Display'
- object Label4: TLabel
- Left = 16
- Top = 189
- Width = 51
- Height = 13
- Caption = 'Editor &font:'
- FocusControl = FontName
- end
- object Label7: TLabel
- Left = 294
- Top = 189
- Width = 23
- Height = 13
- Caption = '&Size:'
- FocusControl = FontSize
- end
- object Label11: TLabel
- Left = 204
- Top = 8
- Width = 150
- Height = 17
- AutoSize = False
- Caption = '&Keystroke mapping:'
- FocusControl = eoBindingList
- end
- object Label16: TLabel
- Left = 16
- Top = 210
- Width = 38
- Height = 13
- Caption = 'Sample:'
- end
- object GroupBox11: TGroupBox
- Left = 16
- Top = 105
- Width = 377
- Height = 72
- TabOrder = 2
- object lbRightMargin: TLabel
- Left = 7
- Top = 43
- Width = 62
- Height = 13
- Caption = 'Right &margin:'
- FocusControl = eoRightMargin
- end
- object lbGutterWidth: TLabel
- Left = 185
- Top = 43
- Width = 60
- Height = 13
- Caption = 'Gutter &width:'
- FocusControl = eoGutterWidth
- Visible = False
- end
- object eoLineOnMargin: TCheckBox
- Left = 7
- Top = 14
- Width = 138
- Height = 20
- Caption = '&Visible right margin'
- TabOrder = 0
- OnClick = LineOnMarginClick
- end
- object eoRightMargin: TComboBox
- Left = 90
- Top = 40
- Width = 65
- Height = 21
- ItemHeight = 0
- TabOrder = 1
- end
- object eoGutterWidth: TComboBox
- Left = 269
- Top = 40
- Width = 65
- Height = 21
- ItemHeight = 0
- TabOrder = 3
- Visible = False
- end
- object eoVisibleGutter: TCheckBox
- Left = 185
- Top = 16
- Width = 97
- Height = 17
- Caption = 'Visible &gutter'
- TabOrder = 2
- Visible = False
- OnClick = VisibleGutterClick
- end
- end
- object GroupBox10: TGroupBox
- Left = 16
- Top = 8
- Width = 181
- Height = 92
- Caption = 'Display and file options:'
- TabOrder = 0
- object eoBriefCursors: TCheckBox
- Left = 7
- Top = 16
- Width = 150
- Height = 17
- Caption = 'BRIEF &cursor shapes'
- TabOrder = 0
- end
- object eoCreateBackup: TCheckBox
- Left = 7
- Top = 34
- Width = 150
- Height = 17
- TabStop = False
- Caption = 'Create &backup file'
- TabOrder = 1
- end
- object eoPreserveLineEnds: TCheckBox
- Left = 7
- Top = 52
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Preserve line ends'
- TabOrder = 2
- end
- object eoFullZoom: TCheckBox
- Left = 7
- Top = 70
- Width = 150
- Height = 17
- TabStop = False
- Caption = '&Zoom to full screen'
- TabOrder = 3
- end
- end
- object FontName: TComboBox
- Left = 86
- Top = 185
- Width = 186
- Height = 21
- HelpContext = 25201
- Style = csDropDownList
- ItemHeight = 0
- TabOrder = 3
- OnClick = FontNameClicked
- end
- object FontSize: TComboBox
- Left = 328
- Top = 185
- Width = 63
- Height = 21
- ItemHeight = 0
- TabOrder = 4
- OnClick = FontSizeClicked
- end
- object eoBindingList: TListBox
- Left = 204
- Top = 26
- Width = 189
- Height = 74
- ItemHeight = 13
- Items.Strings = (
- 'Default'
- 'Classic'
- 'Brief'
- 'Epsilon')
- TabOrder = 1
- end
- object FontSample: TPanel
- Left = 16
- Top = 225
- Width = 377
- Height = 64
- BevelOuter = bvLowered
- Caption = 'AbBbXxZz'
- TabOrder = 5
- end
- end
- object EdColorPage: TTabSheet
- HelpContext = 25054
- Caption = 'Colors'
- object Label8: TLabel
- Left = 16
- Top = 33
- Width = 41
- Height = 13
- Caption = '&Element:'
- FocusControl = ElementList
- end
- object Label9: TLabel
- Left = 146
- Top = 33
- Width = 27
- Height = 13
- Caption = '&Color:'
- FocusControl = ColorGrid
- end
- object EditControlHere: TLabel
- Left = 16
- Top = 176
- Width = 369
- Height = 117
- AutoSize = False
- OnClick = SampleClick
- end
- object Label22: TLabel
- Left = 24
- Top = 10
- Width = 94
- Height = 13
- Caption = 'Color &SpeedSetting:'
- FocusControl = ColorSpeedSetting
- end
- object ElementList: TListBox
- Left = 16
- Top = 47
- Width = 120
- Height = 108
- IntegralHeight = True
- ItemHeight = 13
- Items.Strings = (
- 'Whitespace'
- 'Comment'
- 'Reserved word'
- 'Identifier'
- 'Symbol'
- 'String'
- 'Number'
- 'Plain text'
- 'Marked block'
- 'Search match'
- 'Execution point'
- 'Enabled break'
- 'Disabled break'
- 'Invalid break'
- 'Error line'
- 'Right margin'
- 'Illegal')
- TabOrder = 1
- OnClick = ElementListClick
- end
- object GroupBox6: TGroupBox
- Left = 271
- Top = 31
- Width = 114
- Height = 72
- Caption = 'Text attributes:'
- TabOrder = 2
- object Bold: TCheckBox
- Left = 8
- Top = 16
- Width = 100
- Height = 17
- Caption = '&Bold'
- TabOrder = 0
- OnClick = FontClick
- end
- object Italic: TCheckBox
- Left = 8
- Top = 34
- Width = 100
- Height = 17
- TabStop = False
- Caption = '&Italic'
- TabOrder = 1
- OnClick = FontClick
- end
- object Underline: TCheckBox
- Left = 8
- Top = 51
- Width = 100
- Height = 17
- TabStop = False
- Caption = '&Underline'
- TabOrder = 2
- OnClick = FontClick
- end
- end
- object GroupBox7: TGroupBox
- Left = 271
- Top = 108
- Width = 114
- Height = 60
- Caption = 'Use defaults for:'
- TabOrder = 3
- object DefaultFore: TCheckBox
- Left = 8
- Top = 15
- Width = 90
- Height = 18
- Caption = '&Foreground'
- TabOrder = 0
- OnClick = DefaultClick
- end
- object DefaultBack: TCheckBox
- Left = 8
- Top = 35
- Width = 90
- Height = 17
- TabStop = False
- Caption = 'Back&ground'
- TabOrder = 1
- OnClick = DefaultClick
- end
- end
- object ColorSpeedSetting: TComboBox
- Left = 140
- Top = 7
- Width = 245
- Height = 21
- Style = csDropDownList
- ItemHeight = 13
- Items.Strings = (
- 'Defaults'
- 'Classic'
- 'Twilight'
- 'Ocean')
- TabOrder = 0
- OnClick = ColorSpeedClick
- end
- object ColorGrid: TColorGrid
- Left = 145
- Top = 48
- Width = 104
- Height = 120
- ClickEnablesColor = True
- TabOrder = 4
- OnChange = ColorClick
- end
- end
- object PalPage: TTabSheet
- HelpContext = 2000
- Caption = 'Palette'
- object PageLabel: TLabel
- Left = 18
- Top = 12
- Width = 50
- Height = 17
- AutoSize = False
- Caption = '&Pages:'
- FocusControl = PageListBox
- end
- object ToolLabel: TLabel
- Left = 230
- Top = 12
- Width = 105
- Height = 17
- AutoSize = False
- Caption = '&Components:'
- FocusControl = ToolListBox
- end
- object PageListBox: TListBox
- Left = 18
- Top = 29
- Width = 114
- Height = 199
- IntegralHeight = True
- ItemHeight = 13
- Style = lbOwnerDrawFixed
- TabOrder = 0
- OnClick = PageClick
- OnDragDrop = PageDragDrop
- OnDragOver = PageDragOver
- OnDrawItem = PageListBoxDrawItem
- OnEnter = PagesGotFocus
- OnKeyDown = ListKeyDown
- OnMouseDown = PageMouseDown
- end
- object MoveUp: TBitBtn
- Left = 152
- Top = 36
- Width = 23
- Height = 23
- TabOrder = 1
- OnClick = MoveClick
- Glyph.Data = {
- F6000000424DF600000000000000760000002800000010000000100000000100
- 0400000000008000000000000000000000001000000010000000000000000000
- 80000080000000808000800000008000800080800000C0C0C000808080000000
- FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
- 333333333333333333333333338888833333333334444483333333333CCCC483
- 333333333CCCC483333333333CCCC483333333333CCCC483333333333CCCC488
- 8333333CCCCCCCCC33333333CCCCCCC3333333333CCCCC333333333333CCC333
- 33333333333C3333333333333333333333333333333333333333}
- end
- object MoveDn: TBitBtn
- Left = 184
- Top = 36
- Width = 23
- Height = 23
- TabOrder = 2
- OnClick = MoveClick
- Glyph.Data = {
- F6000000424DF600000000000000760000002800000010000000100000000100
- 0400000000008000000000000000000000001000000010000000000000000000
- 80000080000000808000800000008000800080800000C0C0C000808080000000
- FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
- 333333333333833333333333333488333333333333CC4883333333333CCCC488
- 33333333CCCCCC488333333CCCCCC444333333333CCCC483333333333CCCC483
- 333333333CCCC483333333333CCCC483333333333CCCC483333333333CCCC433
- 3333333333333333333333333333333333333333333333333333}
- end
- object ToolListBox: TListBox
- Left = 230
- Top = 28
- Width = 152
- Height = 184
- IntegralHeight = True
- ItemHeight = 30
- Style = lbOwnerDrawFixed
- TabOrder = 3
- OnDragDrop = ToolDragDrop
- OnDragOver = ToolDragOver
- OnDrawItem = ToolDrawItem
- OnEnter = ToolsGotFocus
- OnKeyDown = ListKeyDown
- OnMouseDown = ToolMouseDown
- end
- object AddButton: TButton
- Left = 143
- Top = 76
- Width = 75
- Height = 25
- Caption = '?'
- TabOrder = 4
- OnClick = AddClick
- end
- object DeleteButton: TButton
- Left = 143
- Top = 108
- Width = 75
- Height = 25
- Caption = '&Delete'
- TabOrder = 5
- OnClick = DeleteClick
- end
- object RenameButton: TButton
- Left = 143
- Top = 140
- Width = 75
- Height = 25
- Caption = '&Rename...'
- TabOrder = 6
- OnClick = RenameClick
- end
- object ResetPaletteBtn: TButton
- Left = 120
- Top = 255
- Width = 125
- Height = 25
- Caption = 'Re&set Defaults'
- TabOrder = 7
- OnClick = ResetPalette
- end
- end
- object BrowPage: TTabSheet
- HelpContext = 25055
- Caption = 'AppBrowser'
- object GroupBox3: TGroupBox
- Left = 8
- Top = 32
- Width = 385
- Height = 62
- Caption = '&Grouping'
- TabOrder = 1
- object cbxGroupByAccessability: TCheckBox
- Left = 9
- Top = 36
- Width = 315
- Height = 17
- Caption = 'Group by Accessibility (Private/Protected/Public/Package)'
- TabOrder = 1
- end
- object cbxSepMembers: TCheckBox
- Left = 9
- Top = 15
- Width = 271
- Height = 18
- Caption = 'Separate Data Members and Methods'
- TabOrder = 0
- end
- end
- object GroupBox4: TGroupBox
- Left = 8
- Top = 104
- Width = 194
- Height = 90
- Caption = '&Accessor Sorting'
- TabOrder = 2
- object ListBox1: TListBox
- Left = 8
- Top = 16
- Width = 110
- Height = 66
- ItemHeight = 13
- Items.Strings = (
- 'Private'
- 'Protected'
- 'Public'
- 'Package Local')
- TabOrder = 0
- end
- object Button1: TButton
- Left = 126
- Top = 16
- Width = 51
- Height = 25
- Caption = '&Up'
- TabOrder = 1
- OnClick = Button1Click
- end
- object Button3: TButton
- Left = 126
- Top = 46
- Width = 51
- Height = 27
- Caption = '&Down'
- TabOrder = 2
- OnClick = Button3Click
- end
- end
- object GroupBox8: TGroupBox
- Left = 208
- Top = 104
- Width = 185
- Height = 90
- Caption = '&Structure Sorting'
- TabOrder = 3
- object ListBox2: TListBox
- Left = 8
- Top = 16
- Width = 110
- Height = 66
- ItemHeight = 13
- Items.Strings = (
- 'Properties'
- 'Methods'
- 'Events'
- 'Data Members')
- TabOrder = 0
- end
- object Button4: TButton
- Left = 124
- Top = 15
- Width = 53
- Height = 26
- Caption = 'U&p'
- TabOrder = 1
- OnClick = Button4Click
- end
- object Button5: TButton
- Left = 124
- Top = 46
- Width = 53
- Height = 27
- Caption = 'D&own'
- TabOrder = 2
- OnClick = Button5Click
- end
- end
- object cbxReloadLast: TCheckBox
- Left = 9
- Top = 8
- Width = 209
- Height = 17
- Caption = 'Reload last opened project upon startup'
- TabOrder = 0
- end
- object radioInspector: TRadioGroup
- Left = 8
- Top = 208
- Width = 385
- Height = 59
- Caption = '&Inspector'
- Items.Strings = (
- 'Floating'
- 'Embedded in AppBrowser')
- TabOrder = 4
- end
- end
- object Applets: TTabSheet
- Caption = 'Applets'
- object GroupBox1: TGroupBox
- Left = 15
- Top = 4
- Width = 132
- Height = 65
- Caption = 'Applet Viewer'
- TabOrder = 0
- object RadioButton1: TRadioButton
- Left = 9
- Top = 17
- Width = 113
- Height = 17
- Caption = 'Use AppletViewer'
- TabOrder = 0
- end
- object RadioButton2: TRadioButton
- Left = 9
- Top = 37
- Width = 113
- Height = 17
- Caption = 'Use HTML browser'
- Checked = True
- TabOrder = 1
- TabStop = True
- end
- end
- end
- object CodeStyleSheet: TTabSheet
- HelpContext = 24950
- Caption = 'Code Style'
- object Label15: TLabel
- Left = 152
- Top = 8
- Width = 43
- Height = 13
- Caption = 'Example:'
- end
- object Label18: TLabel
- Left = 152
- Top = 104
- Width = 43
- Height = 13
- Caption = 'Example:'
- end
- object BraceGroup: TGroupBox
- Left = 8
- Top = 8
- Width = 137
- Height = 89
- Caption = 'Braces'
- TabOrder = 0
- object RadioBraceEndOfLine: TRadioButton
- Left = 8
- Top = 16
- Width = 81
- Height = 17
- Caption = 'End of line'
- TabOrder = 0
- OnClick = BraceClick
- end
- object RadioBraceNextLine: TRadioButton
- Tag = 1
- Left = 8
- Top = 36
- Width = 73
- Height = 17
- Caption = 'Next line'
- TabOrder = 1
- OnClick = BraceClick
- end
- end
- object EventGroup: TGroupBox
- Left = 8
- Top = 104
- Width = 137
- Height = 145
- Caption = 'Event Handling'
- TabOrder = 1
- object RadioEventAdapter: TRadioButton
- Left = 8
- Top = 36
- Width = 105
- Height = 17
- Caption = 'Standard adapter'
- TabOrder = 0
- OnClick = EventClick
- end
- object RadioEventAnonymousAdapter: TRadioButton
- Tag = 1
- Left = 8
- Top = 16
- Width = 121
- Height = 17
- Caption = 'Anonymous adapter'
- TabOrder = 1
- OnClick = EventClick
- end
- object CheckBoxEventMatch: TCheckBox
- Left = 8
- Top = 64
- Width = 121
- Height = 17
- Caption = 'Match existing code'
- TabOrder = 2
- end
- end
- object BraceExample: TMemo
- Left = 152
- Top = 24
- Width = 241
- Height = 73
- TabStop = False
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -12
- Font.Name = 'Courier New'
- Font.Style = []
- ParentFont = False
- ReadOnly = True
- TabOrder = 2
- end
- object EventExample: TMemo
- Left = 152
- Top = 120
- Width = 241
- Height = 129
- TabStop = False
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -12
- Font.Name = 'Courier New'
- Font.Style = []
- ParentFont = False
- ReadOnly = True
- TabOrder = 3
- end
- object CheckBoxBeansInstantiate: TCheckBox
- Left = 8
- Top = 256
- Width = 129
- Height = 17
- Caption = 'Use Beans.instantiate'
- TabOrder = 4
- end
- end
- object CodeInsightSheet: TTabSheet
- HelpContext = 25059
- Caption = 'Code Insight'
- object Label2: TLabel
- Left = 16
- Top = 75
- Width = 60
- Height = 13
- Caption = 'Parse Delay:'
- end
- object Label3: TLabel
- Left = 16
- Top = 117
- Width = 80
- Height = 13
- Caption = 'Auto Completion:'
- end
- object Label10: TLabel
- Left = 16
- Top = 140
- Width = 91
- Height = 13
- Caption = 'Auto Parameter-list:'
- end
- object ParseDelayTime: TLabel
- Left = 251
- Top = 76
- Width = 41
- Height = 13
- AutoSize = False
- end
- object DropDownTime: TLabel
- Left = 255
- Top = 194
- Width = 41
- Height = 13
- AutoSize = False
- Visible = False
- end
- object ParamTime: TLabel
- Left = 255
- Top = 228
- Width = 41
- Height = 13
- AutoSize = False
- Visible = False
- end
- object cbxHighlightErrors: TCheckBox
- Left = 15
- Top = 23
- Width = 247
- Height = 14
- Caption = 'Syntax Highlight Declaration Errors'
- TabOrder = 0
- end
- object cbxBackgroundResearch: TCheckBox
- Left = 15
- Top = 44
- Width = 317
- Height = 14
- Caption = 'Background Research'
- TabOrder = 1
- end
- object trackParseDelay: TTrackBar
- Left = 123
- Top = 70
- Width = 127
- Height = 35
- Max = 5000
- Min = 100
- Orientation = trHorizontal
- PageSize = 500
- Frequency = 500
- Position = 100
- SelEnd = 0
- SelStart = 0
- TabOrder = 2
- TickMarks = tmBottomRight
- TickStyle = tsAuto
- OnChange = trackParseDelayChange
- end
- object TrackDropDownDelay: TTrackBar
- Left = 127
- Top = 188
- Width = 127
- Height = 35
- Max = 5000
- Min = 100
- Orientation = trHorizontal
- PageSize = 500
- Frequency = 500
- Position = 100
- SelEnd = 0
- SelStart = 0
- TabOrder = 3
- TickMarks = tmBottomRight
- TickStyle = tsAuto
- Visible = False
- OnChange = TrackDropDownDelayChange
- end
- object TrackParamListDelay: TTrackBar
- Left = 127
- Top = 221
- Width = 127
- Height = 35
- Max = 5000
- Min = 100
- Orientation = trHorizontal
- PageSize = 500
- Frequency = 500
- Position = 100
- SelEnd = 0
- SelStart = 0
- TabOrder = 5
- TickMarks = tmBottomRight
- TickStyle = tsAuto
- Visible = False
- OnChange = TrackParamListDelayChange
- end
- object cbxEnableDropDown: TCheckBox
- Left = 130
- Top = 116
- Width = 79
- Height = 13
- Caption = 'Enabled'
- TabOrder = 4
- OnClick = cbxEnableDropDownClick
- end
- object cbxEnableParamList: TCheckBox
- Left = 130
- Top = 140
- Width = 79
- Height = 14
- Caption = 'Enabled'
- TabOrder = 6
- OnClick = cbxEnableParamListClick
- end
- end
- end
- end
- object PopupMenu1: TPopupMenu
- AutoPopup = False
- Left = 8
- Top = 392
- object dNextPage: TMenuItem
- Caption = 'Next Page'
- Visible = False
- OnClick = NextPageClick
- end
- object dPrevPage: TMenuItem
- Caption = 'Prev Page'
- Visible = False
- OnClick = PreviousPageClick
- end
- end
- end
-