UMain.dfm
上传用户:zkjn0718
上传日期:2021-01-01
资源大小:776k
文件大小:5k
源码类别:

Delphi/CppBuilder

开发平台:

Delphi

  1. object frmMain: TfrmMain
  2.   Left = 237
  3.   Top = 147
  4.   Width = 615
  5.   Height = 580
  6.   Caption = 'TestBed'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'Tahoma'
  12.   Font.Style = []
  13.   KeyPreview = True
  14.   OldCreateOrder = False
  15.   WindowState = wsMaximized
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   OnKeyDown = FormKeyDown
  19.   OnMouseWheelDown = FormMouseWheelDown
  20.   OnMouseWheelUp = FormMouseWheelUp
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object Panel1: TPanel
  24.     Left = 436
  25.     Top = 0
  26.     Width = 163
  27.     Height = 542
  28.     Align = alRight
  29.     TabOrder = 0
  30.     object Label1: TLabel
  31.       Left = 8
  32.       Top = 5
  33.       Width = 26
  34.       Height = 13
  35.       Caption = 'Tests'
  36.     end
  37.     object Label2: TLabel
  38.       Left = 8
  39.       Top = 102
  40.       Width = 37
  41.       Height = 13
  42.       Caption = 'Visibility'
  43.     end
  44.     object cboTests: TComboBox
  45.       Left = 7
  46.       Top = 24
  47.       Width = 148
  48.       Height = 21
  49.       AutoDropDown = True
  50.       AutoCloseUp = True
  51.       Style = csDropDownList
  52.       DropDownCount = 100
  53.       ItemHeight = 13
  54.       TabOrder = 0
  55.       OnChange = cboTestsChange
  56.       OnCloseUp = cboTestsCloseUp
  57.     end
  58.     object chkPositionCorrection: TCheckBox
  59.       Left = 8
  60.       Top = 51
  61.       Width = 129
  62.       Height = 17
  63.       Caption = 'Position Correction'
  64.       Checked = True
  65.       State = cbChecked
  66.       TabOrder = 1
  67.       OnClick = SimulationOptionsChanged
  68.     end
  69.     object chkWarmStarting: TCheckBox
  70.       Left = 8
  71.       Top = 66
  72.       Width = 97
  73.       Height = 17
  74.       Caption = 'Warm Starting'
  75.       Checked = True
  76.       State = cbChecked
  77.       TabOrder = 2
  78.       OnClick = SimulationOptionsChanged
  79.     end
  80.     object chkTimeOfImpact: TCheckBox
  81.       Left = 8
  82.       Top = 81
  83.       Width = 105
  84.       Height = 17
  85.       Caption = 'Time of Impact'
  86.       Checked = True
  87.       State = cbChecked
  88.       TabOrder = 3
  89.       OnClick = SimulationOptionsChanged
  90.     end
  91.     object chklstVisibility: TCheckListBox
  92.       Left = 8
  93.       Top = 121
  94.       Width = 148
  95.       Height = 177
  96.       OnClickCheck = chklstVisibilityClickCheck
  97.       ItemHeight = 13
  98.       Items.Strings = (
  99.         'Shapes'
  100.         'Joints'
  101.         'Core Shapes'
  102.         'AABBs'
  103.         'OBBs'
  104.         'Pairs'
  105.         'Contact Points'
  106.         'Contact Normals'
  107.         'Contact Forces'
  108.         'Friction Forces'
  109.         'Center of Masses'
  110.         'Statistics'
  111.         'Key Information')
  112.       TabOrder = 4
  113.     end
  114.     object btnPause: TButton
  115.       Left = 7
  116.       Top = 439
  117.       Width = 75
  118.       Height = 25
  119.       Caption = 'Pause'
  120.       TabOrder = 5
  121.       OnClick = btnPauseClick
  122.     end
  123.     object btnSingleStep: TButton
  124.       Left = 82
  125.       Top = 439
  126.       Width = 75
  127.       Height = 25
  128.       Caption = 'Single Step'
  129.       TabOrder = 6
  130.       OnClick = btnSingleStepClick
  131.     end
  132.     object GroupBox1: TGroupBox
  133.       Left = 8
  134.       Top = 304
  135.       Width = 148
  136.       Height = 70
  137.       Caption = 'Gravity'
  138.       TabOrder = 7
  139.       object Label3: TLabel
  140.         Left = 11
  141.         Top = 21
  142.         Width = 6
  143.         Height = 13
  144.         Caption = 'X'
  145.       end
  146.       object Label4: TLabel
  147.         Left = 11
  148.         Top = 45
  149.         Width = 6
  150.         Height = 13
  151.         Caption = 'Y'
  152.       end
  153.       object editGravityX: TEdit
  154.         Left = 20
  155.         Top = 18
  156.         Width = 51
  157.         Height = 21
  158.         TabOrder = 0
  159.       end
  160.       object editGravityY: TEdit
  161.         Left = 20
  162.         Top = 42
  163.         Width = 51
  164.         Height = 21
  165.         TabOrder = 1
  166.       end
  167.       object btnConfirmGravity: TButton
  168.         Left = 80
  169.         Top = 16
  170.         Width = 63
  171.         Height = 25
  172.         Caption = 'Confirm'
  173.         TabOrder = 2
  174.         OnClick = btnConfirmGravityClick
  175.       end
  176.     end
  177.     object btnReset: TButton
  178.       Left = 7
  179.       Top = 464
  180.       Width = 75
  181.       Height = 25
  182.       Caption = 'Reset'
  183.       TabOrder = 8
  184.       OnClick = btnResetClick
  185.     end
  186.     object GroupBox2: TGroupBox
  187.       Left = 8
  188.       Top = 376
  189.       Width = 148
  190.       Height = 57
  191.       Caption = 'Mode'
  192.       TabOrder = 9
  193.       object rdoRealTime: TRadioButton
  194.         Left = 8
  195.         Top = 16
  196.         Width = 113
  197.         Height = 17
  198.         Caption = 'Real Time'
  199.         Checked = True
  200.         TabOrder = 0
  201.         TabStop = True
  202.         OnClick = rdoRealTimeClick
  203.       end
  204.       object rdoFixedStep: TRadioButton
  205.         Left = 8
  206.         Top = 34
  207.         Width = 113
  208.         Height = 17
  209.         Caption = 'Fixed Step(1/60s)'
  210.         TabOrder = 1
  211.         OnClick = rdoFixedStepClick
  212.       end
  213.     end
  214.   end
  215. end