home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / SWATMAIN.DFM / SWATMAIN.txt < prev   
Encoding:
Text File  |  1996-08-28  |  2.8 KB  |  140 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.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu1
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   OnMouseDown = MouseDown
  17.   OnMouseUp = MouseUp
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Image1: TImage
  21.     Left = 11
  22.     Top = 256
  23.     Width = 260
  24.     Height = 156
  25.     AutoSize = True
  26.     Picture.Data = {<image000.bmp>}
  27.   end
  28.   object GameOverImage: TImage
  29.     Left = 10
  30.     Top = 72
  31.     Width = 262
  32.     Height = 145
  33.     AutoSize = True
  34.     Picture.Data = {<image001.bmp>}
  35.   end
  36.   object TimeLabel: TLabel
  37.     Left = 122
  38.     Top = 296
  39.     Width = 18
  40.     Height = 19
  41.     Caption = '00'
  42.     Font.Color = clBlack
  43.     Font.Height = -16
  44.     Font.Name = 'Arial'
  45.     Font.Style = [fsBold]
  46.     ParentFont = False
  47.     Transparent = True
  48.   end
  49.   object MissLabel: TLabel
  50.     Left = 78
  51.     Top = 351
  52.     Width = 9
  53.     Height = 19
  54.     Caption = '0'
  55.     Font.Color = clBlack
  56.     Font.Height = -16
  57.     Font.Name = 'Arial'
  58.     Font.Style = [fsBold]
  59.     ParentFont = False
  60.     Transparent = True
  61.   end
  62.   object HitsLabel: TLabel
  63.     Left = 41
  64.     Top = 351
  65.     Width = 9
  66.     Height = 19
  67.     Caption = '0'
  68.     Font.Color = clBlack
  69.     Font.Height = -16
  70.     Font.Name = 'Arial'
  71.     Font.Style = [fsBold]
  72.     ParentFont = False
  73.     Transparent = True
  74.   end
  75.   object EscapedLabel: TLabel
  76.     Left = 134
  77.     Top = 351
  78.     Width = 9
  79.     Height = 19
  80.     Caption = '0'
  81.     Font.Color = clBlack
  82.     Font.Height = -16
  83.     Font.Name = 'Arial'
  84.     Font.Style = [fsBold]
  85.     ParentFont = False
  86.     Transparent = True
  87.   end
  88.   object ScoreLabel: TLabel
  89.     Left = 205
  90.     Top = 351
  91.     Width = 9
  92.     Height = 19
  93.     Caption = '0'
  94.     Font.Color = clBlack
  95.     Font.Height = -16
  96.     Font.Name = 'Arial'
  97.     Font.Style = [fsBold]
  98.     ParentFont = False
  99.     Transparent = True
  100.   end
  101.   object MainMenu1: TMainMenu
  102.     object Gamr1: TMenuItem
  103.       Caption = '&Game'
  104.       ShortCut = 0
  105.       object New1: TMenuItem
  106.         Caption = '&New'
  107.         ShortCut = 0
  108.         OnClick = New1Click
  109.       end
  110.       object Options1: TMenuItem
  111.         Caption = '&Options...'
  112.         ShortCut = 0
  113.         OnClick = Options1Click
  114.       end
  115.       object Stop1: TMenuItem
  116.         Caption = '&Stop'
  117.         Enabled = False
  118.         ShortCut = 0
  119.         OnClick = Stop1Click
  120.       end
  121.     end
  122.     object Pause1: TMenuItem
  123.       Caption = '&Pause'
  124.       ShortCut = 0
  125.       OnClick = Pause1Click
  126.     end
  127.     object About1: TMenuItem
  128.       Caption = '&About'
  129.       ShortCut = 0
  130.       OnClick = DisplayAbout
  131.     end
  132.   end
  133.   object Timer1: TTimer
  134.     Enabled = False
  135.     Interval = 100
  136.     OnTimer = TimerTick
  137.     Left = 32
  138.   end
  139. end
  140.