home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 January / Chip_2000-01_cd.bin / oddech / hry / click / click.exe / 0 / RCDATA / TFRMGAME / TFRMGAME.txt
Encoding:
Text File  |  1999-03-07  |  3.6 KB  |  183 lines

  1. object frmGame: TfrmGame
  2.   Left = 10
  3.   Top = 10
  4.   HelpContext = 1000
  5.   HorzScrollBar.Visible = False
  6.   ActiveControl = panelTop
  7.   BorderIcons = [biSystemMenu, biMinimize]
  8.   BorderStyle = bsSingle
  9.   Caption = 'Clickomania!'
  10.   ClientHeight = 242
  11.   ClientWidth = 172
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   KeyPreview = True
  18.   OnActivate = FormActivate
  19.   OnCreate = FormCreate
  20.   OnDestroy = Reset
  21.   OnKeyDown = FormKeyDown
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object panelTop: TPanel
  25.     Left = 0
  26.     Top = 0
  27.     Width = 172
  28.     Height = 33
  29.     Align = alTop
  30.     BevelOuter = bvNone
  31.     TabOrder = 0
  32.     object bttNew: TSpeedButton
  33.       Left = 4
  34.       Top = 2
  35.       Width = 27
  36.       Height = 27
  37.       NumGlyphs = 3
  38.       ParentShowHint = False
  39.       ShowHint = True
  40.       OnClick = bttStartClick
  41.     end
  42.     object bttInfo: TSpeedButton
  43.       Left = 64
  44.       Top = 2
  45.       Width = 27
  46.       Height = 27
  47.       NumGlyphs = 3
  48.       ParentShowHint = False
  49.       ShowHint = True
  50.       OnClick = bttInfoClick
  51.     end
  52.     object bttCfg: TSpeedButton
  53.       Left = 94
  54.       Top = 2
  55.       Width = 27
  56.       Height = 27
  57.       NumGlyphs = 3
  58.       ParentShowHint = False
  59.       ShowHint = True
  60.       OnClick = bttCfgClick
  61.     end
  62.     object bttHelp: TSpeedButton
  63.       Left = 154
  64.       Top = 2
  65.       Width = 27
  66.       Height = 27
  67.       NumGlyphs = 3
  68.       ParentShowHint = False
  69.       ShowHint = True
  70.       OnClick = bttHelpClick
  71.     end
  72.     object bttAbout: TSpeedButton
  73.       Left = 124
  74.       Top = 2
  75.       Width = 27
  76.       Height = 27
  77.       NumGlyphs = 3
  78.       ParentShowHint = False
  79.       ShowHint = True
  80.       OnClick = bttAboutClick
  81.     end
  82.     object bttUndo: TSpeedButton
  83.       Left = 36
  84.       Top = 2
  85.       Width = 25
  86.       Height = 27
  87.       Enabled = False
  88.       NumGlyphs = 3
  89.       ParentShowHint = False
  90.       ShowHint = True
  91.       OnClick = PlayHistory
  92.     end
  93.   end
  94.   object statusMain: TStatusBar
  95.     Left = 0
  96.     Top = 223
  97.     Width = 172
  98.     Height = 19
  99.     Font.Charset = DEFAULT_CHARSET
  100.     Font.Color = clWindowText
  101.     Font.Height = -11
  102.     Font.Name = 'MS Sans Serif'
  103.     Font.Style = []
  104.     Panels = <
  105.       item
  106.         Width = 27
  107.       end
  108.       item
  109.         Width = 27
  110.       end
  111.       item
  112.         Width = 27
  113.       end
  114.       item
  115.         Width = 200
  116.       end
  117.       item
  118.         Style = psOwnerDraw
  119.         Width = 15
  120.       end>
  121.     ParentFont = False
  122.     ParentShowHint = False
  123.     ShowHint = True
  124.     SimplePanel = False
  125.     SizeGrip = False
  126.     OnMouseMove = statusMainMouseMove
  127.     OnDrawPanel = DrawPanel
  128.     OnResize = statusMainResize
  129.   end
  130.   object panelBack: TPanel
  131.     Left = 0
  132.     Top = 33
  133.     Width = 172
  134.     Height = 190
  135.     Align = alClient
  136.     BevelInner = bvRaised
  137.     BevelOuter = bvNone
  138.     TabOrder = 2
  139.     object imgMain: TPaintBox
  140.       Left = 1
  141.       Top = 26
  142.       Width = 170
  143.       Height = 163
  144.       Align = alClient
  145.       ParentShowHint = False
  146.       ShowHint = True
  147.       OnMouseUp = imgMainMouseUp
  148.       OnPaint = imgMainPaint
  149.     end
  150.     object imgRamp: TPaintBox
  151.       Left = 1
  152.       Top = 1
  153.       Width = 170
  154.       Height = 25
  155.       Align = alTop
  156.       ParentShowHint = False
  157.       ShowHint = True
  158.       OnMouseDown = DropTheStoneClick
  159.       OnPaint = RampPaint
  160.     end
  161.   end
  162.   object sysComp: TSysComp
  163.     Hide = False
  164.     ProgRoot = '\SOFTWARE\MSC-Soft\Clickomania'
  165.     Left = 36
  166.     Top = 36
  167.   end
  168.   object TimerAni: TTimer
  169.     Enabled = False
  170.     Interval = 50
  171.     OnTimer = TimerAniTimer
  172.     Left = 4
  173.     Top = 37
  174.   end
  175.   object TimerDrop: TTimer
  176.     Enabled = False
  177.     Interval = 300
  178.     OnTimer = DoDropStones
  179.     Left = 4
  180.     Top = 69
  181.   end
  182. end
  183.