home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / DELPHIX.ZIP / Samples / d3drm / Basic / Main.dfm / Main.txt
Encoding:
Text File  |  1998-10-06  |  1.3 KB  |  57 lines

  1. object MainForm: TMainForm
  2.   Left = 202
  3.   Top = 113
  4.   Width = 328
  5.   Height = 267
  6.   Caption = 'Direct3D Sample'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -12
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   KeyPreview = True
  13.   Position = poDefaultPosOnly
  14.   Scaled = False
  15.   OnKeyDown = FormKeyDown
  16.   PixelsPerInch = 96
  17.   TextHeight = 12
  18.   object DXDraw: TDXDraw
  19.     Left = 0
  20.     Top = 0
  21.     Width = 320
  22.     Height = 240
  23.     AutoInitialize = True
  24.     AutoSize = True
  25.     Color = clBtnFace
  26.     Display.BitCount = 16
  27.     Display.FixedBitCount = False
  28.     Display.FixedRatio = True
  29.     Display.FixedSize = False
  30.     Options = [doAllowReboot, doWaitVBlank, doCenter, doFlip, do3D, doHardware, doRetainedMode, doSelectDriver, doRGB, doMono, doDither]
  31.     SurfaceHeight = 240
  32.     SurfaceWidth = 320
  33.     OnFinalize = DXDrawFinalize
  34.     OnInitialize = DXDrawInitialize
  35.     OnInitializeSurface = DXDrawInitializeSurface
  36.     Align = alClient
  37.     TabOrder = 0
  38.     OnClick = DXDrawClick
  39.   end
  40.   object DXTimer: TDXTimer
  41.     ActiveOnly = True
  42.     Enabled = False
  43.     Interval = 0
  44.     MaxLag = 10
  45.     OnTimer = DXTimerTimer
  46.     Left = 16
  47.     Top = 16
  48.   end
  49.   object OpenDialog: TOpenDialog
  50.     DefaultExt = 'x'
  51.     Filter = 'Direct3D file(*.x)|*.x'
  52.     Options = [ofPathMustExist, ofFileMustExist]
  53.     Left = 48
  54.     Top = 16
  55.   end
  56. end
  57.