SyntaxProgressUnit.dfm 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. object SyntaxProgressForm: TSyntaxProgressForm
  2. Left = 138
  3. Top = 202
  4. Cursor = crAppStart
  5. ActiveControl = CancelButton
  6. BorderIcons = []
  7. BorderStyle = bsNone
  8. Caption = 'Progress'
  9. ClientHeight = 51
  10. ClientWidth = 364
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -11
  15. Font.Name = 'MS Sans Serif'
  16. Font.Style = []
  17. FormStyle = fsStayOnTop
  18. OldCreateOrder = False
  19. OnHide = FormHide
  20. OnShow = FormShow
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object Panel1: TPanel
  24. Left = 0
  25. Top = 0
  26. Width = 364
  27. Height = 51
  28. Align = alClient
  29. BevelWidth = 2
  30. BorderStyle = bsSingle
  31. Ctl3D = False
  32. ParentCtl3D = False
  33. TabOrder = 0
  34. object Label1: TLabel
  35. Left = 8
  36. Top = 8
  37. Width = 99
  38. Height = 13
  39. Caption = 'Highlighting Syntax...'
  40. end
  41. object ProgressBar: TProgressBar
  42. Left = 8
  43. Top = 24
  44. Width = 283
  45. Height = 16
  46. Min = 0
  47. Max = 0
  48. Step = 1
  49. TabOrder = 1
  50. end
  51. object CancelButton: TButton
  52. Left = 296
  53. Top = 16
  54. Width = 57
  55. Height = 25
  56. Cancel = True
  57. Caption = '&Stop'
  58. Default = True
  59. TabOrder = 0
  60. OnClick = CancelButtonClick
  61. end
  62. end
  63. end