File: opkman_createjsonforupdatesfrm.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (102 lines) | stat: -rw-r--r-- 2,083 bytes parent folder | download | duplicates (4)
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
object CreateJSONForUpdatesFrm: TCreateJSONForUpdatesFrm
  Left = 524
  Height = 304
  Top = 275
  Width = 580
  BorderIcons = [biSystemMenu]
  Caption = 'CreateJSONForUpdatesFrm'
  ClientHeight = 304
  ClientWidth = 580
  Constraints.MinHeight = 200
  Constraints.MinWidth = 300
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PopupMode = pmExplicit
  Position = poOwnerFormCenter
  LCLVersion = '2.1.0.0'
  object pnButtons: TPanel
    Left = 0
    Height = 41
    Top = 263
    Width = 580
    Align = alBottom
    BevelOuter = bvNone
    ClientHeight = 41
    ClientWidth = 580
    TabOrder = 1
    object bCreate: TButton
      Left = 415
      Height = 26
      Top = 8
      Width = 75
      Anchors = [akTop, akRight]
      Caption = 'Create'
      OnClick = bCreateClick
      TabOrder = 0
    end
    object bClose: TButton
      Left = 491
      Height = 26
      Top = 8
      Width = 75
      Anchors = [akTop, akRight]
      Caption = 'Close'
      ModalResult = 2
      TabOrder = 1
    end
    object bHelp: TButton
      Left = 339
      Height = 26
      Top = 8
      Width = 75
      Anchors = [akTop, akRight]
      Caption = 'Help'
      OnClick = bHelpClick
      TabOrder = 2
    end
  end
  object pnTop: TPanel
    Left = 0
    Height = 72
    Top = 0
    Width = 580
    Align = alTop
    BevelOuter = bvNone
    ClientHeight = 72
    ClientWidth = 580
    TabOrder = 0
    Visible = False
    object lbLinkToZip: TLabel
      Left = 15
      Height = 15
      Top = 16
      Width = 104
      Caption = 'Link to package zip:'
      ParentColor = False
    end
    object edLinkToZip: TEdit
      Left = 15
      Height = 23
      Top = 32
      Width = 498
      Anchors = [akTop, akLeft, akRight]
      TabOrder = 0
    end
    object bTest: TButton
      Left = 516
      Height = 25
      Top = 31
      Width = 50
      Anchors = [akTop, akRight]
      Caption = 'Test'
      OnClick = bTestClick
      TabOrder = 1
    end
  end
  object SD: TSaveDialog
    DefaultExt = '.json'
    Filter = '*.json|*.json'
    left = 75
    top = 145
  end
end