File: frmfpreportimageedit.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (104 lines) | stat: -rw-r--r-- 2,282 bytes parent folder | download | duplicates (6)
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
object ReportImageEditorForm: TReportImageEditorForm
  Left = 747
  Height = 398
  Top = 416
  Width = 496
  Caption = 'Edit report image'
  ClientHeight = 398
  ClientWidth = 496
  OnCloseQuery = FormCloseQuery
  LCLVersion = '1.9.0.0'
  object BPImage: TButtonPanel
    Left = 6
    Height = 42
    Top = 350
    Width = 484
    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 = 0
    ShowButtons = [pbOK, pbCancel]
  end
  object IImage: TImage
    Left = 8
    Height = 246
    Top = 96
    Width = 376
    Anchors = [akTop, akLeft, akRight, akBottom]
  end
  object BLoad: TButton
    Left = 390
    Height = 25
    Top = 96
    Width = 94
    Anchors = [akTop, akRight]
    Caption = 'Load...'
    OnClick = BLoadClick
    TabOrder = 1
  end
  object BSave: TButton
    Left = 390
    Height = 25
    Top = 128
    Width = 94
    Anchors = [akTop, akRight]
    Caption = 'Save...'
    OnClick = BSaveClick
    TabOrder = 2
  end
  object RBFieldName: TRadioButton
    Left = 14
    Height = 22
    Top = 7
    Width = 76
    Caption = 'Use field:'
    Checked = True
    OnChange = RBFixedImageChange
    TabOrder = 3
    TabStop = True
  end
  object RBFixedImage: TRadioButton
    Left = 14
    Height = 22
    Top = 64
    Width = 110
    Caption = 'Use this image:'
    OnChange = RBFixedImageChange
    TabOrder = 4
  end
  object CBStretched: TCheckBox
    Left = 385
    Height = 22
    Top = 325
    Width = 64
    Anchors = [akRight, akBottom]
    Caption = 'Stretch'
    OnChange = CBStretchedChange
    TabOrder = 5
  end
  object CBFieldName: TComboBox
    Left = 40
    Height = 31
    Top = 32
    Width = 344
    Anchors = [akTop, akLeft, akRight]
    ItemHeight = 0
    Style = csDropDownList
    TabOrder = 6
  end
  object ODPimage: TOpenPictureDialog
    Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
    left = 242
    top = 80
  end
  object SDPImage: TSavePictureDialog
    Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing, ofViewDetail]
    left = 256
    top = 131
  end
end