1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
object GraphicPropertyEditorForm: TGraphicPropertyEditorForm
Left = 389
Height = 381
Top = 166
Width = 436
ActiveControl = LoadButton
Caption = 'Load Image Dialog'
ClientHeight = 381
ClientWidth = 436
Constraints.MinHeight = 180
Constraints.MinWidth = 200
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnClose = FormClose
OnCreate = FormCreate
object GroupBox1: TGroupBox
Left = 6
Height = 337
Top = 6
Width = 424
Align = alClient
BorderSpacing.Around = 6
Caption = 'Picture'
ClientHeight = 317
ClientWidth = 420
TabOrder = 0
object ScrollBox: TScrollBox
AnchorSideRight.Control = GroupBox1
AnchorSideBottom.Control = GroupBox1
Left = 6
Height = 305
Top = 6
Width = 322
HorzScrollBar.Page = 100
HorzScrollBar.Tracking = True
VertScrollBar.Page = 100
VertScrollBar.Tracking = True
Align = alClient
BorderSpacing.Around = 6
ClientHeight = 301
ClientWidth = 318
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnResize = ScrollBoxResize
object ImagePreview: TImage
Left = 0
Height = 100
Top = 0
Width = 100
AutoSize = True
Center = True
OnPaintBackground = ImagePreviewPaintBackground
end
end
object LoadSaveBtnPanel: TPanel
Left = 334
Height = 317
Top = 0
Width = 86
Align = alRight
BevelOuter = bvNone
ClientHeight = 317
ClientWidth = 86
TabOrder = 1
object LoadButton: TButton
Left = 6
Height = 25
Top = 6
Width = 74
Action = FileOpenAction
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
TabOrder = 0
end
object SaveButton: TButton
AnchorSideLeft.Control = LoadButton
AnchorSideTop.Control = LoadButton
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LoadButton
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 37
Width = 74
Action = FileSaveAction
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
TabOrder = 1
end
object ClearButton: TButton
AnchorSideLeft.Control = LoadButton
AnchorSideTop.Control = SaveButton
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LoadButton
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 68
Width = 74
Action = ClearAction
Align = alTop
AutoSize = True
BorderSpacing.Around = 6
TabOrder = 2
end
object CopyButton: TButton
AnchorSideLeft.Control = LoadButton
AnchorSideTop.Control = ClearButton
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LoadButton
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 99
Width = 74
Action = CopyAction
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 6
TabOrder = 3
end
object PasteButton: TButton
AnchorSideLeft.Control = LoadButton
AnchorSideTop.Control = CopyButton
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = LoadButton
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 130
Width = 74
Action = PasteAction
Anchors = [akTop, akLeft, akRight]
AutoSize = True
BorderSpacing.Top = 6
TabOrder = 4
end
end
end
object OkCancelButtonPanel: TButtonPanel
Left = 6
Height = 26
Top = 349
Width = 424
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 1
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
object OpenDialog: TOpenPictureDialog
Left = 138
Top = 182
end
object SaveDialog: TSavePictureDialog
Left = 186
Top = 182
end
object ActionList: TActionList
Left = 355
Top = 244
object CopyAction: TEditCopy
Category = 'Edit'
Caption = '&Copy'
Hint = 'Copy'
ShortCut = 16451
OnExecute = CopyActionExecute
OnUpdate = CopyActionUpdate
end
object PasteAction: TEditPaste
Category = 'Edit'
Caption = '&Paste'
Hint = 'Paste'
ShortCut = 16470
OnExecute = PasteActionExecute
OnUpdate = PasteActionUpdate
end
object FileOpenAction: TAction
Category = 'File'
Caption = 'Load'
ShortCut = 16463
OnExecute = FileOpenActionExecute
end
object FileSaveAction: TAction
Category = 'File'
Caption = 'Save'
ShortCut = 16467
OnExecute = FileSaveActionExecute
OnUpdate = FileSaveActionUpdate
end
object ClearAction: TEditDelete
Category = 'Edit'
Caption = 'Clear'
Hint = 'Delete'
ShortCut = 46
OnExecute = ClearActionExecute
OnUpdate = ClearActionUpdate
end
end
end
|