Subversion Repositories plumbers

Rev

Rev 21 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
object MainForm: TMainForm
2
  Left = 0
3
  Top = 0
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
16 daniel-mar 6
  ClientHeight = 107
7
  ClientWidth = 280
2 daniel-mar 8
  Color = clBlack
9
  Font.Charset = DEFAULT_CHARSET
10
  Font.Color = clWindowText
11
  Font.Height = -11
12
  Font.Name = 'Tahoma'
13
  Font.Style = []
14
  KeyPreview = True
15
  OldCreateOrder = False
16
  Position = poScreenCenter
17
  OnCreate = FormCreate
18
  OnDestroy = FormDestroy
19
  OnKeyDown = FormKeyDown
20
  PixelsPerInch = 96
21
  TextHeight = 13
22
  object Image1: TImage
23
    Left = 159
24
    Top = 8
25
    Width = 41
26
    Height = 33
27
    OnMouseUp = ControlClick
28
  end
29
  object Panel1: TPanel
30
    Left = 24
31
    Top = 32
32
    Width = 176
33
    Height = 25
34
    BevelOuter = bvSpace
35
    Color = clWhite
36
    Ctl3D = False
37
    ParentBackground = False
38
    ParentCtl3D = False
39
    TabOrder = 0
40
    Visible = False
41
    OnMouseUp = ControlClick
42
  end
16 daniel-mar 43
  object MediaPlayer1: TMediaPlayer
17 daniel-mar 44
    Left = 191
45
    Top = 51
16 daniel-mar 46
    Width = 57
47
    Height = 30
48
    VisibleButtons = [btPlay, btStop]
49
    Display = Panel2
50
    Visible = False
51
    TabOrder = 1
52
  end
53
  object Panel2: TPanel
54
    Left = 24
55
    Top = 63
56
    Width = 137
57
    Height = 18
17 daniel-mar 58
    BevelOuter = bvNone
59
    ParentColor = True
16 daniel-mar 60
    TabOrder = 2
61
    Visible = False
62
  end
2 daniel-mar 63
  object StartupTimer: TTimer
64
    Enabled = False
65
    Interval = 10
66
    OnTimer = StartupTimerTimer
67
    Left = 216
68
    Top = 16
69
  end
70
end