MainUnit.dfm 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. object FrmGammaCorrection: TFrmGammaCorrection
  2. Left = 0
  3. Top = 0
  4. Caption = 'Gamma Test'
  5. ClientHeight = 389
  6. ClientWidth = 492
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnShow = FormShow
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object PaintBox32: TPaintBox32
  18. Left = 0
  19. Top = 0
  20. Width = 492
  21. Height = 317
  22. Align = alClient
  23. TabOrder = 0
  24. OnPaintBuffer = PaintBox32PaintBuffer
  25. end
  26. object PnControl: TPanel
  27. Left = 0
  28. Top = 317
  29. Width = 492
  30. Height = 72
  31. Align = alBottom
  32. BevelOuter = bvNone
  33. ShowCaption = False
  34. TabOrder = 1
  35. object LblContrast: TLabel
  36. Left = 8
  37. Top = 8
  38. Width = 42
  39. Height = 13
  40. Caption = 'Contrast'
  41. end
  42. object LblGamma: TLabel
  43. Left = 8
  44. Top = 30
  45. Width = 35
  46. Height = 13
  47. Caption = 'Gamma'
  48. end
  49. object LblThickness: TLabel
  50. Left = 8
  51. Top = 52
  52. Width = 46
  53. Height = 13
  54. Caption = 'Thickness'
  55. end
  56. object LblContrastValue: TLabel
  57. Left = 439
  58. Top = 8
  59. Width = 3
  60. Height = 13
  61. end
  62. object LblGammaValue: TLabel
  63. Left = 439
  64. Top = 30
  65. Width = 3
  66. Height = 13
  67. end
  68. object LblThicknessValue: TLabel
  69. Left = 439
  70. Top = 51
  71. Width = 3
  72. Height = 13
  73. end
  74. object GbrContrast: TGaugeBar
  75. Left = 56
  76. Top = 6
  77. Width = 377
  78. Height = 16
  79. Backgnd = bgPattern
  80. Max = 255
  81. ShowHandleGrip = True
  82. Position = 255
  83. OnChange = GbrContrastChange
  84. end
  85. object GbrGamma: TGaugeBar
  86. Left = 56
  87. Top = 30
  88. Width = 377
  89. Height = 16
  90. Backgnd = bgPattern
  91. LargeChange = 100
  92. Max = 3000
  93. Min = 300
  94. ShowHandleGrip = True
  95. Position = 1000
  96. OnChange = GbrGammaChange
  97. end
  98. object GbrThickness: TGaugeBar
  99. Left = 56
  100. Top = 50
  101. Width = 377
  102. Height = 16
  103. Backgnd = bgPattern
  104. Max = 300
  105. ShowHandleGrip = True
  106. Position = 200
  107. OnChange = GbrThicknessChange
  108. end
  109. end
  110. end