| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- object FResample: TFResample
- Left = 709
- Height = 161
- Top = 181
- Width = 462
- BorderIcons = [biSystemMenu]
- BorderStyle = bsDialog
- Caption = 'Resample'
- ClientHeight = 161
- ClientWidth = 462
- Font.Height = -12
- OnCreate = FormCreate
- OnShow = FormShow
- Position = poOwnerFormCenter
- LCLVersion = '1.4.0.4'
- object Label_Quality: TLabel
- Left = 10
- Height = 15
- Top = 13
- Width = 44
- Caption = 'Quality :'
- ParentColor = False
- end
- object Label_Width: TLabel
- Left = 38
- Height = 15
- Top = 73
- Width = 38
- Caption = 'Width :'
- ParentColor = False
- end
- object Label_Height: TLabel
- Left = 38
- Height = 15
- Top = 100
- Width = 42
- Caption = 'Height :'
- ParentColor = False
- end
- object ComboBox_Quality: TComboBox
- Left = 66
- Height = 23
- Top = 10
- Width = 134
- ItemHeight = 15
- Style = csDropDownList
- TabOrder = 0
- end
- object CheckBox_Ratio: TCheckBox
- Left = 38
- Height = 19
- Top = 48
- Width = 110
- Caption = 'Keep aspect ratio'
- Checked = True
- OnChange = CheckBox_RatioChange
- State = cbChecked
- TabOrder = 1
- end
- object Button_OK: TButton
- Left = 120
- Height = 22
- Top = 134
- Width = 59
- Caption = 'OK'
- Default = True
- OnClick = Button_OKClick
- TabOrder = 4
- end
- object Button_Cancel: TButton
- Left = 184
- Height = 22
- Top = 134
- Width = 72
- Cancel = True
- Caption = 'Cancel'
- ModalResult = 2
- TabOrder = 5
- end
- object SpinEdit_Width: TSpinEdit
- Left = 104
- Height = 23
- Top = 70
- Width = 79
- Increment = 10
- MaxValue = 10000
- MinValue = 1
- OnChange = SpinEdit_WidthChange
- TabOrder = 2
- Value = 1
- end
- object SpinEdit_Height: TSpinEdit
- Left = 104
- Height = 23
- Top = 97
- Width = 79
- Increment = 10
- MaxValue = 10000
- MinValue = 1
- OnChange = SpinEdit_HeightChange
- TabOrder = 3
- Value = 1
- end
- object ToolBar8: TToolBar
- Left = 190
- Height = 24
- Top = 97
- Width = 24
- Align = alNone
- EdgeBorders = []
- Images = FMain.ImageList16
- TabOrder = 6
- object ToolButton23: TToolButton
- Left = 1
- Top = 0
- ImageIndex = 43
- OnClick = ToolButton23Click
- end
- end
- object vsPreview: TBGRAVirtualScreen
- Left = 270
- Height = 112
- Top = 8
- Width = 185
- OnRedraw = vsPreviewRedraw
- Alignment = taLeftJustify
- Color = clForm
- ParentColor = False
- TabOrder = 7
- end
- object ComboBox_MUnit: TComboBox
- Left = 190
- Height = 23
- Top = 70
- Width = 52
- ItemHeight = 15
- OnChange = ComboBox_MUnitChange
- Style = csDropDownList
- TabOrder = 8
- end
- end
|