uresample.lfm 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. object FResample: TFResample
  2. Left = 709
  3. Height = 161
  4. Top = 181
  5. Width = 462
  6. BorderIcons = [biSystemMenu]
  7. BorderStyle = bsDialog
  8. Caption = 'Resample'
  9. ClientHeight = 161
  10. ClientWidth = 462
  11. Font.Height = -12
  12. OnCreate = FormCreate
  13. OnShow = FormShow
  14. Position = poOwnerFormCenter
  15. LCLVersion = '1.4.0.4'
  16. object Label_Quality: TLabel
  17. Left = 10
  18. Height = 15
  19. Top = 13
  20. Width = 44
  21. Caption = 'Quality :'
  22. ParentColor = False
  23. end
  24. object Label_Width: TLabel
  25. Left = 38
  26. Height = 15
  27. Top = 73
  28. Width = 38
  29. Caption = 'Width :'
  30. ParentColor = False
  31. end
  32. object Label_Height: TLabel
  33. Left = 38
  34. Height = 15
  35. Top = 100
  36. Width = 42
  37. Caption = 'Height :'
  38. ParentColor = False
  39. end
  40. object ComboBox_Quality: TComboBox
  41. Left = 66
  42. Height = 23
  43. Top = 10
  44. Width = 134
  45. ItemHeight = 15
  46. Style = csDropDownList
  47. TabOrder = 0
  48. end
  49. object CheckBox_Ratio: TCheckBox
  50. Left = 38
  51. Height = 19
  52. Top = 48
  53. Width = 110
  54. Caption = 'Keep aspect ratio'
  55. Checked = True
  56. OnChange = CheckBox_RatioChange
  57. State = cbChecked
  58. TabOrder = 1
  59. end
  60. object Button_OK: TButton
  61. Left = 120
  62. Height = 22
  63. Top = 134
  64. Width = 59
  65. Caption = 'OK'
  66. Default = True
  67. OnClick = Button_OKClick
  68. TabOrder = 4
  69. end
  70. object Button_Cancel: TButton
  71. Left = 184
  72. Height = 22
  73. Top = 134
  74. Width = 72
  75. Cancel = True
  76. Caption = 'Cancel'
  77. ModalResult = 2
  78. TabOrder = 5
  79. end
  80. object SpinEdit_Width: TSpinEdit
  81. Left = 104
  82. Height = 23
  83. Top = 70
  84. Width = 79
  85. Increment = 10
  86. MaxValue = 10000
  87. MinValue = 1
  88. OnChange = SpinEdit_WidthChange
  89. TabOrder = 2
  90. Value = 1
  91. end
  92. object SpinEdit_Height: TSpinEdit
  93. Left = 104
  94. Height = 23
  95. Top = 97
  96. Width = 79
  97. Increment = 10
  98. MaxValue = 10000
  99. MinValue = 1
  100. OnChange = SpinEdit_HeightChange
  101. TabOrder = 3
  102. Value = 1
  103. end
  104. object ToolBar8: TToolBar
  105. Left = 190
  106. Height = 24
  107. Top = 97
  108. Width = 24
  109. Align = alNone
  110. EdgeBorders = []
  111. Images = FMain.ImageList16
  112. TabOrder = 6
  113. object ToolButton23: TToolButton
  114. Left = 1
  115. Top = 0
  116. ImageIndex = 43
  117. OnClick = ToolButton23Click
  118. end
  119. end
  120. object vsPreview: TBGRAVirtualScreen
  121. Left = 270
  122. Height = 112
  123. Top = 8
  124. Width = 185
  125. OnRedraw = vsPreviewRedraw
  126. Alignment = taLeftJustify
  127. Color = clForm
  128. ParentColor = False
  129. TabOrder = 7
  130. end
  131. object ComboBox_MUnit: TComboBox
  132. Left = 190
  133. Height = 23
  134. Top = 70
  135. Width = 52
  136. ItemHeight = 15
  137. OnChange = ComboBox_MUnitChange
  138. Style = csDropDownList
  139. TabOrder = 8
  140. end
  141. end