File: AdminServerHealthGraphSettings.dfm

package info (click to toggle)
mysql-gui-tools 5.0r12-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 105,540 kB
  • ctags: 50,897
  • sloc: sql: 348,439; pascal: 285,780; cpp: 94,578; ansic: 90,768; objc: 33,761; sh: 25,629; xml: 10,924; yacc: 10,755; java: 9,986; php: 2,806; python: 2,068; makefile: 1,945; perl: 3
file content (405 lines) | stat: -rw-r--r-- 9,523 bytes parent folder | download | duplicates (3)
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
object AdminServerHealthGraphSettingsForm: TAdminServerHealthGraphSettingsForm
  Left = 461
  Top = 143
  ActiveControl = CaptionEd
  BorderStyle = bsSizeToolWin
  Caption = 'Graph Settings'
  ClientHeight = 686
  ClientWidth = 549
  Color = clBtnFace
  Constraints.MinHeight = 688
  Constraints.MinWidth = 502
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Scaled = False
  OnClose = FormClose
  OnCreate = FormCreate
  DesignSize = (
    549
    686)
  PixelsPerInch = 96
  TextHeight = 13
  object ValueSettingsGBox: TTntGroupBox
    Left = 14
    Top = 190
    Width = 521
    Height = 188
    Anchors = [akLeft, akTop, akRight, akBottom]
    Caption = 'Value Settings'
    TabOrder = 1
    DesignSize = (
      521
      188)
    object Label3: TTntLabel
      Left = 14
      Top = 125
      Width = 52
      Height = 13
      Anchors = [akLeft, akBottom]
      Caption = 'Value Unit:'
    end
    object Label6: TTntLabel
      Left = 14
      Top = 20
      Width = 70
      Height = 13
      Caption = 'Value Formula:'
    end
    object Label8: TTntLabel
      Left = 14
      Top = 157
      Width = 69
      Height = 13
      Anchors = [akLeft, akBottom]
      Caption = 'Value Caption:'
    end
    object Label15: TTntLabel
      Left = 120
      Top = 73
      Width = 389
      Height = 42
      Anchors = [akLeft, akRight, akBottom]
      AutoSize = False
      Caption = 
        'Formula to calculate the value. Use [variable] to get values fro' +
        'm variables, ^[variable] to get relative values (relative to las' +
        't evaluation).'
      WordWrap = True
    end
    object Label16: TTntLabel
      Left = 298
      Top = 125
      Width = 211
      Height = 13
      Anchors = [akLeft, akRight, akBottom]
      AutoSize = False
      Caption = 'The unit of the value.'
    end
    object Label17: TTntLabel
      Left = 298
      Top = 157
      Width = 213
      Height = 13
      Anchors = [akLeft, akRight, akBottom]
      AutoSize = False
      Caption = 'A caption for the value.'
    end
    object ValueUnitCBox: TTntComboBox
      Left = 120
      Top = 121
      Width = 161
      Height = 21
      Style = csDropDownList
      Anchors = [akLeft, akBottom]
      ItemHeight = 13
      ItemIndex = 0
      TabOrder = 1
      Text = 'Percentage'
      Items.Strings = (
        'Percentage'
        'Count'
        'Byte'
        'Seconds')
    end
    object ValueFormulaMemo: TTntMemo
      Left = 120
      Top = 18
      Width = 391
      Height = 50
      Anchors = [akLeft, akTop, akRight, akBottom]
      TabOrder = 0
      OnDragDrop = ValueFormulaMemoDragDrop
      OnDragOver = ValueFormulaMemoDragOver
      OnKeyDown = ValueFormulaMemoKeyDown
    end
    object ValueCaptionEd: TTntEdit
      Left = 120
      Top = 153
      Width = 161
      Height = 21
      Anchors = [akLeft, akBottom]
      TabOrder = 2
    end
  end
  object CancelBtn: TTntButton
    Left = 455
    Top = 639
    Width = 75
    Height = 23
    Anchors = [akRight, akBottom]
    Cancel = True
    Caption = 'Cancel'
    TabOrder = 3
    OnClick = CancelBtnClick
  end
  object ApplyBtn: TTntButton
    Left = 360
    Top = 639
    Width = 75
    Height = 23
    Anchors = [akRight, akBottom]
    Caption = 'Apply'
    Default = True
    TabOrder = 4
    OnClick = ApplyBtnClick
  end
  object GeneralGBox: TTntGroupBox
    Left = 14
    Top = 10
    Width = 521
    Height = 171
    Anchors = [akLeft, akTop, akRight]
    Caption = 'General'
    TabOrder = 0
    DesignSize = (
      521
      171)
    object CaptionLbl: TTntLabel
      Left = 14
      Top = 66
      Width = 39
      Height = 13
      Caption = 'Caption:'
    end
    object Label2: TTntLabel
      Left = 14
      Top = 25
      Width = 59
      Height = 13
      Caption = 'Graph Type:'
    end
    object Label10: TTntLabel
      Left = 14
      Top = 138
      Width = 66
      Height = 13
      Caption = 'Refresh Time:'
      Enabled = False
    end
    object CaptionDescLbl: TTntLabel
      Left = 296
      Top = 66
      Width = 213
      Height = 13
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'The graph'#39's caption.'
    end
    object DisplayCaptionDescLbl: TTntLabel
      Left = 296
      Top = 93
      Width = 213
      Height = 32
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'Whether the captions should be displayed or not.'
      WordWrap = True
    end
    object GraphTypeDescLbl: TTntLabel
      Left = 296
      Top = 18
      Width = 213
      Height = 39
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'The type of visual representation of the values over time.'
      WordWrap = True
    end
    object Label14: TTntLabel
      Left = 296
      Top = 138
      Width = 213
      Height = 13
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'Time to next refresh of the value.'
    end
    object DisplayCaptionCBox: TTntCheckBox
      Left = 120
      Top = 98
      Width = 159
      Height = 17
      Caption = 'Display Caption'
      Enabled = False
      TabOrder = 2
    end
    object CaptionEd: TTntEdit
      Left = 120
      Top = 62
      Width = 161
      Height = 21
      TabOrder = 1
    end
    object GraphTypeCBox: TTntComboBox
      Left = 120
      Top = 21
      Width = 161
      Height = 21
      Style = csDropDownList
      ItemHeight = 13
      ItemIndex = 0
      TabOrder = 0
      Text = 'Line-Graph'
      OnCloseUp = GraphTypeCBoxCloseUp
      Items.Strings = (
        'Line-Graph'
        'Bar-Graph')
    end
    object RefreshTimeCBox: TTntComboBox
      Left = 120
      Top = 134
      Width = 161
      Height = 21
      Style = csDropDownList
      Enabled = False
      ItemHeight = 13
      ItemIndex = 2
      TabOrder = 3
      Text = '1 sec'
      Items.Strings = (
        '0,2 sec'
        '0,5 sec'
        '1 sec'
        '2 sec'
        '5 sec'
        '10 sec'
        '15 sec'
        '30 sec'
        '1 min')
    end
  end
  object MinMaxGBox: TTntGroupBox
    Left = 14
    Top = 387
    Width = 521
    Height = 237
    Anchors = [akLeft, akRight, akBottom]
    Caption = 'Min. / Max. Values'
    TabOrder = 2
    DesignSize = (
      521
      237)
    object Label4: TTntLabel
      Left = 14
      Top = 24
      Width = 53
      Height = 13
      Caption = 'Min. Value:'
    end
    object Label5: TTntLabel
      Left = 14
      Top = 66
      Width = 56
      Height = 13
      Caption = 'Max. Value:'
    end
    object Label7: TTntLabel
      Left = 16
      Top = 154
      Width = 66
      Height = 13
      Caption = 'Max. Formula:'
    end
    object MaxCaptionLbl: TTntLabel
      Left = 16
      Top = 200
      Width = 65
      Height = 13
      Caption = 'Max. Caption:'
    end
    object Label18: TTntLabel
      Left = 296
      Top = 19
      Width = 215
      Height = 38
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'Lowest possible value. Lower values will be set to this value.'
      WordWrap = True
    end
    object Label19: TTntLabel
      Left = 296
      Top = 61
      Width = 213
      Height = 36
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'Highest possible value. Higher values will be set to this value.'
      WordWrap = True
    end
    object Label20: TTntLabel
      Left = 296
      Top = 97
      Width = 213
      Height = 44
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 
        'The max. value will be overwritten by greater values. This will ' +
        'scale the graph dynamically.'
      WordWrap = True
    end
    object Label21: TTntLabel
      Left = 296
      Top = 147
      Width = 213
      Height = 40
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'The max. value is calculated by this formula. See value formula.'
      WordWrap = True
    end
    object MaxCaptionDescLbl: TTntLabel
      Left = 296
      Top = 197
      Width = 213
      Height = 24
      Anchors = [akLeft, akTop, akRight]
      AutoSize = False
      Caption = 'The caption of the max. value.'
      WordWrap = True
    end
    object MinValueEd: TTntEdit
      Left = 120
      Top = 22
      Width = 161
      Height = 21
      TabOrder = 0
    end
    object MaxValueEd: TTntEdit
      Left = 120
      Top = 64
      Width = 161
      Height = 21
      TabOrder = 1
    end
    object AutoextendValueCBox: TTntCheckBox
      Left = 122
      Top = 108
      Width = 161
      Height = 17
      Caption = 'Autoextend Max. Value'
      TabOrder = 2
    end
    object MaxFormularEd: TTntEdit
      Left = 122
      Top = 150
      Width = 161
      Height = 21
      TabOrder = 3
      OnDragDrop = ValueFormulaMemoDragDrop
      OnDragOver = ValueFormulaMemoDragOver
    end
    object MaxCaptionEd: TTntEdit
      Left = 122
      Top = 196
      Width = 161
      Height = 21
      TabOrder = 4
    end
  end
end