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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
object TimePopupForm: TTimePopupForm
Left = 376
Height = 185
Top = 246
Width = 294
AutoSize = True
BorderIcons = []
BorderStyle = bsNone
Caption = 'TimePopupForm'
ClientHeight = 185
ClientWidth = 294
OnClose = FormClose
OnCreate = FormCreate
OnDeactivate = FormDeactivate
PopupMode = pmAuto
LCLVersion = '1.7'
Scaled = True
object MainPanel: TPanel
Left = 0
Height = 185
Top = 0
Width = 294
Align = alClient
AutoSize = True
BevelOuter = bvNone
BorderWidth = 1
BorderStyle = bsSingle
ClientHeight = 181
ClientWidth = 290
Color = clWindow
ParentColor = False
TabOrder = 0
UseDockManager = False
object HoursGrid: TStringGrid
Left = 1
Height = 43
Top = 1
Width = 288
Align = alTop
AutoFillColumns = True
BorderStyle = bsNone
Color = clBtnFace
ColCount = 12
Constraints.MinHeight = 42
Constraints.MinWidth = 280
ExtendedSelect = False
FixedCols = 0
FixedRows = 0
GridLineWidth = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goSmoothScroll, goSelectionActive]
RowCount = 2
ScrollBars = ssNone
TabOrder = 0
UseXORFeatures = True
OnDblClick = GridsDblClick
OnKeyDown = GridsKeyDown
OnPrepareCanvas = GridPrepareCanvas
ColWidths = (
24
24
24
24
24
24
24
24
24
24
24
24
)
Cells = (
24
0
0
'00'
0
1
'12'
1
0
'01'
1
1
'13'
2
0
'02'
2
1
'14'
3
0
'03'
3
1
'15'
4
0
'04'
4
1
'16'
5
0
'05'
5
1
'17'
6
0
'06'
6
1
'18'
7
0
'07'
7
1
'19'
8
0
'08'
8
1
'20'
9
0
'09'
9
1
'21'
10
0
'10'
10
1
'22'
11
0
'11'
11
1
'23'
)
end
object MinutesGrid: TStringGrid
Left = 1
Height = 59
Top = 61
Width = 288
Align = alTop
AutoFillColumns = True
BorderStyle = bsNone
ColCount = 6
Constraints.MinWidth = 280
FixedCols = 0
FixedRows = 0
Flat = True
GridLineWidth = 0
Options = [goFixedVertLine, goDrawFocusSelected, goSmoothScroll]
RowCount = 2
ScrollBars = ssNone
TabOrder = 1
UseXORFeatures = True
OnDblClick = GridsDblClick
OnKeyDown = GridsKeyDown
OnPrepareCanvas = GridPrepareCanvas
ColWidths = (
48
48
48
48
48
48
)
Cells = (
12
0
0
'00'
0
1
'30'
1
0
'05'
1
1
'35'
2
0
'10'
2
1
'40'
3
0
'15'
3
1
'45'
4
0
'20'
4
1
'50'
5
0
'25'
5
1
'55'
)
end
object Bevel1: TBevel
Left = 1
Height = 10
Top = 51
Width = 288
Align = alTop
BorderSpacing.Top = 7
Shape = bsTopLine
end
object MoreLessBtn: TBitBtn
AnchorSideTop.Control = MinutesGrid
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = MainPanel
AnchorSideRight.Side = asrBottom
Left = 155
Height = 22
Hint = 'Ctrl + >'
Top = 125
Width = 134
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 5
Caption = '>>'
OnClick = MoreLessBtnClick
TabOrder = 2
end
end
end
|