FormMain.dfm 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. object MainForm: TMainForm
  2. Left = 289
  3. Top = 115
  4. AutoSize = True
  5. BorderIcons = [biSystemMenu, biMinimize]
  6. BorderStyle = bsSingle
  7. Caption = 'HqResampler Demo'
  8. ClientHeight = 281
  9. ClientWidth = 556
  10. Color = clBtnFace
  11. Font.Charset = DEFAULT_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -11
  14. Font.Name = 'Tahoma'
  15. Font.Style = []
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnCreate = FormCreate
  19. OnDestroy = FormDestroy
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Image: TImage
  23. AlignWithMargins = True
  24. Left = 288
  25. Top = 13
  26. Width = 256
  27. Height = 256
  28. Margins.Left = 12
  29. Margins.Top = 12
  30. Margins.Right = 12
  31. Margins.Bottom = 12
  32. Proportional = True
  33. Stretch = True
  34. end
  35. object Panel1: TPanel
  36. Left = 0
  37. Top = 0
  38. Width = 281
  39. Height = 281
  40. Align = alCustom
  41. TabOrder = 0
  42. object Label1: TLabel
  43. Left = 8
  44. Top = 13
  45. Width = 53
  46. Height = 13
  47. Caption = 'Image File:'
  48. end
  49. object EdFileName: TEdit
  50. Left = 8
  51. Top = 32
  52. Width = 201
  53. Height = 21
  54. ReadOnly = True
  55. TabOrder = 0
  56. end
  57. object Button1: TButton
  58. Left = 215
  59. Top = 30
  60. Width = 58
  61. Height = 25
  62. Caption = 'Browse'
  63. TabOrder = 1
  64. OnClick = Button1Click
  65. end
  66. object Btn2x: TButton
  67. Left = 8
  68. Top = 72
  69. Width = 105
  70. Height = 25
  71. Align = alCustom
  72. Caption = 'hq2x Resample'
  73. Enabled = False
  74. TabOrder = 2
  75. OnClick = Btn2xClick
  76. end
  77. object Btn3x: TButton
  78. Left = 8
  79. Top = 103
  80. Width = 105
  81. Height = 25
  82. Caption = 'hq3x Resample'
  83. Enabled = False
  84. TabOrder = 3
  85. OnClick = Btn3xClick
  86. end
  87. object Btn4x: TButton
  88. Left = 8
  89. Top = 134
  90. Width = 105
  91. Height = 25
  92. Caption = 'hq4x Resample'
  93. Enabled = False
  94. TabOrder = 4
  95. OnClick = Btn4xClick
  96. end
  97. object Button2: TButton
  98. Left = 8
  99. Top = 244
  100. Width = 75
  101. Height = 25
  102. Caption = 'About'
  103. TabOrder = 5
  104. OnClick = Button2Click
  105. end
  106. end
  107. object DlgOpen: TOpenPictureDialog
  108. Left = 216
  109. Top = 72
  110. end
  111. end