File: opkman_progressfrm.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 (177 lines) | stat: -rw-r--r-- 3,944 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
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
object ProgressFrm: TProgressFrm
  Left = 513
  Height = 320
  Top = 288
  Width = 502
  BorderIcons = []
  Caption = 'Downloading packages'
  ClientHeight = 320
  ClientWidth = 502
  Constraints.MinHeight = 240
  Constraints.MinWidth = 450
  KeyPreview = True
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyPress = FormKeyPress
  OnShow = FormShow
  PopupMode = pmExplicit
  Position = poOwnerFormCenter
  LCLVersion = '2.1.0.0'
  object pnLabels: TPanel
    Left = 0
    Height = 249
    Top = 0
    Width = 497
    Align = alClient
    BorderSpacing.Right = 5
    BevelOuter = bvNone
    ClientHeight = 249
    ClientWidth = 497
    TabOrder = 0
    object lbPackageData: TLabel
      Left = 116
      Height = 1
      Top = 12
      Width = 373
      Anchors = [akTop, akLeft, akRight]
      ParentColor = False
    end
    object lbSpeedData: TLabel
      Left = 116
      Height = 15
      Top = 34
      Width = 373
      Anchors = [akTop, akLeft, akRight]
      Caption = 'Calculating. Please wait...'
      ParentColor = False
    end
    object lbRemainingData: TLabel
      Left = 116
      Height = 1
      Top = 78
      Width = 373
      Anchors = [akTop, akLeft, akRight]
      ParentColor = False
    end
    object lbElapsedData: TLabel
      Left = 116
      Height = 1
      Top = 56
      Width = 373
      Anchors = [akTop, akLeft, akRight]
      ParentColor = False
    end
    object lbPackage: TLabel
      Left = 8
      Height = 15
      Top = 12
      Width = 47
      Caption = 'Package:'
      ParentColor = False
    end
    object lbSpeed: TLabel
      Left = 8
      Height = 15
      Top = 34
      Width = 35
      Caption = 'Speed:'
      ParentColor = False
    end
    object lbElapsed: TLabel
      Left = 8
      Height = 15
      Top = 56
      Width = 43
      Caption = 'Elapsed:'
      ParentColor = False
    end
    object lbRemaining: TLabel
      Left = 8
      Height = 15
      Top = 78
      Width = 60
      Caption = 'Remaining:'
      ParentColor = False
    end
    object pb: TProgressBar
      AnchorSideTop.Control = lbReceived
      AnchorSideTop.Side = asrBottom
      Left = 8
      Height = 19
      Top = 171
      Width = 481
      Anchors = [akTop, akLeft, akRight]
      BorderSpacing.Top = 6
      TabOrder = 0
    end
    object pbTotal: TProgressBar
      AnchorSideTop.Control = lbReceivedTotal
      AnchorSideTop.Side = asrBottom
      Left = 8
      Height = 20
      Top = 217
      Width = 481
      Anchors = [akTop, akLeft, akRight]
      BorderSpacing.Top = 6
      TabOrder = 1
    end
    object lbReceived: TLabel
      Left = 8
      Height = 15
      Top = 150
      Width = 50
      Anchors = [akLeft, akBottom]
      Caption = 'Received:'
      ParentColor = False
    end
    object lbReceivedTotal: TLabel
      AnchorSideTop.Control = pb
      AnchorSideTop.Side = asrBottom
      Left = 8
      Height = 15
      Top = 196
      Width = 74
      BorderSpacing.Top = 6
      Caption = 'Received total'
      ParentColor = False
    end
  end
  object bpCancel: TButtonPanel
    AnchorSideTop.Side = asrCenter
    Left = 6
    Height = 34
    Top = 280
    Width = 490
    OKButton.Name = 'OKButton'
    OKButton.DefaultCaption = True
    HelpButton.Name = 'HelpButton'
    HelpButton.DefaultCaption = True
    CloseButton.Name = 'CloseButton'
    CloseButton.DefaultCaption = True
    CancelButton.Name = 'CancelButton'
    CancelButton.DefaultCaption = True
    CancelButton.OnClick = bCancelClick
    TabOrder = 2
    ShowButtons = [pbCancel]
  end
  object cbExtractOpen: TCheckBox
    Left = 6
    Height = 19
    Top = 255
    Width = 490
    Align = alBottom
    BorderSpacing.Around = 6
    Caption = 'Extract after download'
    Checked = True
    State = cbChecked
    TabOrder = 1
  end
  object tmWait: TTimer
    Enabled = False
    Interval = 100
    OnTimer = tmWaitTimer
    left = 904
    top = 544
  end
end