home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / hra.exe / swatmain.dfm / swatmain.txt < prev   
Text File  |  1998-02-09  |  3KB  |  141 lines

  1. object SwatForm: TSwatForm
  2.   Left = 212
  3.   Top = 128
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Swat!'
  7.   ClientHeight = 413
  8.   ClientWidth = 282
  9.   Color = clSilver
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'Default'
  14.   Font.Style = []
  15.   Menu = MainMenu1
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   OnMouseDown = FormMouseDown
  19.   OnMouseUp = FormMouseUp
  20.   PixelsPerInch = 96
  21.   object Image1: TImage
  22.     Left = 11
  23.     Top = 256
  24.     Width = 260
  25.     Height = 156
  26.     AutoSize = True
  27.     Picture.Data = {<image000.bmp>}
  28.   end
  29.   object GameOverImage: TImage
  30.     Left = 10
  31.     Top = 72
  32.     Width = 262
  33.     Height = 145
  34.     AutoSize = True
  35.     Picture.Data = {<image001.bmp>}
  36.   end
  37.   object TimeLabel: TLabel
  38.     Left = 122
  39.     Top = 296
  40.     Width = 18
  41.     Height = 19
  42.     Caption = '00'
  43.     Font.Color = clBlack
  44.     Font.Height = -16
  45.     Font.Name = 'Arial'
  46.     Font.Style = [fsBold]
  47.     ParentFont = False
  48.     Transparent = True
  49.   end
  50.   object MissLabel: TLabel
  51.     Left = 78
  52.     Top = 351
  53.     Width = 9
  54.     Height = 19
  55.     Caption = '0'
  56.     Font.Color = clBlack
  57.     Font.Height = -16
  58.     Font.Name = 'Arial'
  59.     Font.Style = [fsBold]
  60.     ParentFont = False
  61.     Transparent = True
  62.   end
  63.   object HitsLabel: TLabel
  64.     Left = 41
  65.     Top = 351
  66.     Width = 9
  67.     Height = 19
  68.     Caption = '0'
  69.     Font.Color = clBlack
  70.     Font.Height = -16
  71.     Font.Name = 'Arial'
  72.     Font.Style = [fsBold]
  73.     ParentFont = False
  74.     Transparent = True
  75.   end
  76.   object EscapedLabel: TLabel
  77.     Left = 134
  78.     Top = 351
  79.     Width = 9
  80.     Height = 19
  81.     Caption = '0'
  82.     Font.Color = clBlack
  83.     Font.Height = -16
  84.     Font.Name = 'Arial'
  85.     Font.Style = [fsBold]
  86.     ParentFont = False
  87.     Transparent = True
  88.   end
  89.   object ScoreLabel: TLabel
  90.     Left = 205
  91.     Top = 351
  92.     Width = 9
  93.     Height = 19
  94.     Caption = '0'
  95.     Font.Color = clBlack
  96.     Font.Height = -16
  97.     Font.Name = 'Arial'
  98.     Font.Style = [fsBold]
  99.     ParentFont = False
  100.     Transparent = True
  101.   end
  102.   object MainMenu1: TMainMenu
  103.     object Gamr1: TMenuItem
  104.       Caption = '&Game'
  105.       ShortCut = 0
  106.       object New1: TMenuItem
  107.         Caption = '&New'
  108.         ShortCut = 0
  109.         OnClick = New1Click
  110.       end
  111.       object Options1: TMenuItem
  112.         Caption = '&Options...'
  113.         ShortCut = 0
  114.         OnClick = Options1Click
  115.       end
  116.       object Stop1: TMenuItem
  117.         Caption = '&Stop'
  118.         Enabled = False
  119.         ShortCut = 0
  120.         OnClick = Stop1Click
  121.       end
  122.     end
  123.     object Pause1: TMenuItem
  124.       Caption = '&Pause'
  125.       ShortCut = 0
  126.       OnClick = Pause1Click
  127.     end
  128.     object About1: TMenuItem
  129.       Caption = '&About'
  130.       ShortCut = 0
  131.       OnClick = DisplayAbout
  132.     end
  133.   end
  134.   object Timer1: TTimer
  135.     Enabled = False
  136.     Interval = 100
  137.     OnTimer = TimerTick
  138.     Left = 32
  139.   end
  140. end
  141.