LogSettings.dfm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. object LoggingFrame: TLoggingFrame
  2. Left = 0
  3. Top = 0
  4. Width = 314
  5. Height = 212
  6. TabOrder = 0
  7. DesignSize = (
  8. 314
  9. 212)
  10. object LoggingCheck: TCheckBox
  11. Left = 14
  12. Top = 8
  13. Width = 203
  14. Height = 17
  15. Caption = '&Enable logging'
  16. TabOrder = 0
  17. OnClick = DataChange
  18. end
  19. object LoggingGroup: TXPGroupBox
  20. Left = 3
  21. Top = 32
  22. Width = 309
  23. Height = 177
  24. Anchors = [akLeft, akTop, akRight]
  25. Caption = 'Logging options'
  26. TabOrder = 1
  27. DesignSize = (
  28. 309
  29. 177)
  30. object LogWindowLinesText: TLabel
  31. Left = 256
  32. Top = 145
  33. Width = 21
  34. Height = 13
  35. Caption = 'lines'
  36. end
  37. object LogToFileCheck: TCheckBox
  38. Left = 16
  39. Top = 24
  40. Width = 193
  41. Height = 17
  42. Caption = 'Log to &file:'
  43. TabOrder = 0
  44. OnClick = LogToFileCheckChange
  45. end
  46. object LogFileNameEdit: TFilenameEdit
  47. Left = 40
  48. Top = 47
  49. Width = 255
  50. Height = 21
  51. AcceptFiles = True
  52. DefaultExt = 'log'
  53. Filter = 'Log files (*.log)|*.log|All files (*.*)|*.*'
  54. DialogOptions = [ofHideReadOnly, ofPathMustExist]
  55. DialogTitle = 'Select file for session log.'
  56. ClickKey = 16397
  57. Anchors = [akLeft, akTop, akRight]
  58. TabOrder = 1
  59. Text = 'LogFileNameEdit'
  60. OnChange = DataChange
  61. end
  62. object LogShowWindowCheck: TCheckBox
  63. Left = 16
  64. Top = 100
  65. Width = 129
  66. Height = 17
  67. Caption = 'Show log &window:'
  68. TabOrder = 3
  69. OnClick = DataChange
  70. end
  71. object LogWindowCompleteButton: TRadioButton
  72. Left = 40
  73. Top = 121
  74. Width = 233
  75. Height = 17
  76. Caption = 'Display &complete session'
  77. TabOrder = 4
  78. OnClick = DataChange
  79. end
  80. object LogWindowLinesButton: TRadioButton
  81. Left = 40
  82. Top = 145
  83. Width = 136
  84. Height = 17
  85. Caption = 'Display only &last '
  86. TabOrder = 5
  87. OnClick = DataChange
  88. end
  89. object LogWindowLinesEdit: TUpDownEdit
  90. Left = 176
  91. Top = 141
  92. Width = 73
  93. Height = 21
  94. Alignment = taRightJustify
  95. Increment = 50
  96. MaxValue = 10000
  97. MinValue = 50
  98. TabOrder = 6
  99. OnChange = DataChange
  100. end
  101. object LogFilePanel: TPanel
  102. Left = 40
  103. Top = 72
  104. Width = 255
  105. Height = 25
  106. Anchors = [akLeft, akTop, akRight]
  107. BevelOuter = bvNone
  108. TabOrder = 2
  109. object LogFileAppendButton: TRadioButton
  110. Left = 0
  111. Top = 4
  112. Width = 129
  113. Height = 17
  114. Caption = '&Append'
  115. TabOrder = 0
  116. OnClick = DataChange
  117. end
  118. object LogFileOverwriteButton: TRadioButton
  119. Left = 136
  120. Top = 4
  121. Width = 113
  122. Height = 17
  123. Caption = '&Overwrite'
  124. TabOrder = 1
  125. OnClick = DataChange
  126. end
  127. end
  128. end
  129. end