main.dfm 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. object Mainform: TMainform
  2. Left = 0
  3. Top = 0
  4. ActiveControl = PaintBox
  5. Caption = 'Mainform'
  6. ClientHeight = 493
  7. ClientWidth = 753
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object PaintBox: TPaintBox32
  18. Left = 0
  19. Top = 0
  20. Width = 753
  21. Height = 493
  22. Align = alClient
  23. Options = [pboWantArrowKeys, pboAutoFocus]
  24. RepaintMode = rmOptimizer
  25. TabOrder = 0
  26. OnMouseDown = PaintBoxMouseDown
  27. OnMouseMove = PaintBoxMouseMove
  28. OnMouseUp = PaintBoxMouseUp
  29. OnMouseWheel = PaintBoxMouseWheel
  30. OnResize = PaintBoxResize
  31. end
  32. object chrmosr: TChromiumOSR
  33. DefaultUrl = 'http://www.google.com'
  34. OnGetRootScreenRect = chrmosrGetRootScreenRect
  35. OnGetViewRect = chrmosrGetRootScreenRect
  36. OnCursorChange = chrmosrCursorChange
  37. Left = 16
  38. Top = 8
  39. end
  40. object AppEvents: TApplicationEvents
  41. OnMessage = AppEventsMessage
  42. Left = 24
  43. Top = 64
  44. end
  45. end