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
|
object LogDlg: TLogDlg
Left = 256
Top = 187
BorderIcons = [biSystemMenu]
Caption = 'Log'
ClientHeight = 280
ClientWidth = 339
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnKeyUp = FormKeyUp
PixelsPerInch = 96
Scaled = False
object List: TMemo
Left = 0
Top = 0
Width = 339
Height = 280
Align = alClient
ReadOnly = True
ScrollBars = ssVertical
TabOrder = 0
WordWrap = False
OnMouseDown = ListMouseDown
end
object LogPopup: TPopupMenu
AutoPopup = False
Left = 8
Top = 8
object mInvalid: TMenuItem
Caption = 'Invalid Server Calls'
OnClick = Toggle
end
object mNegotiation: TMenuItem
Caption = 'Negotiation'
OnClick = Toggle
end
object mTime: TMenuItem
Caption = 'Client Handover'
OnClick = Toggle
end
object N2: TMenuItem
Caption = '-'
end
object mLog0: TMenuItem
Caption = 'AI Messages Off'
Checked = True
RadioItem = True
OnClick = mLogClick
end
object mLog1: TMenuItem
Tag = 1
Caption = 'AI Messages Level 1'
RadioItem = True
OnClick = mLogClick
end
object mLog2: TMenuItem
Tag = 2
Caption = 'AI Messages Level 1+2'
RadioItem = True
OnClick = mLogClick
end
object mLog3: TMenuItem
Tag = 999
Caption = 'All AI Messages'
RadioItem = True
OnClick = mLogClick
end
object N1: TMenuItem
Caption = '-'
end
object mSlot: TMenuItem
Caption = 'Nation <-> Slot'
OnClick = mSlotClick
end
object mClear: TMenuItem
Caption = 'Clear'
OnClick = mClearClick
end
end
end
|