home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / chip / tvgencpp / demo3cpp.exe / ODF / TVIEW.ODF < prev   
Encoding:
Text File  |  1994-10-31  |  1.7 KB  |  55 lines

  1. **************************************************************
  2. ****  Object Definition File for the type  TVIEW          ****
  3. ****                                                      ****
  4. ****  Definion files for TVGen 3.0                        ****
  5. ****                                                      ****
  6. ****  Copyright (c) 1994 Bocian Software, Czech Republic  ****
  7. **************************************************************
  8.  
  9. OBJECT TView
  10. ABSTRACT
  11. STANDARD
  12.  
  13. FIELD DragMode CB TITLE ~D~ragMode
  14. FIELD EventMask CB TITLE ~E~ventMask
  15. FIELD GrowMode CB TITLE ~G~rowMode
  16. FIELD Options CB TITLE ~O~ptions
  17. FIELD Template I12
  18.  
  19. SNIPPET Beginning_of_template FILE obj_bot
  20. SNIPPET End_of_template FILE obj_eot
  21.  
  22. VALUE dmDragMove  OF DragMode
  23. VALUE dmDragGrow  OF DragMode
  24. VALUE dmLimitLoX  OF DragMode
  25. VALUE dmLimitLoY  OF DragMode CHECKED
  26. VALUE dmLimitHiX  OF DragMode
  27. VALUE dmLimitHiY  OF DragMode
  28.  
  29. VALUE evMouseDown OF EventMask CHECKED
  30. VALUE evMouseUp   OF EventMask
  31. VALUE evMouseMove OF EventMask
  32. VALUE evMouseAuto OF EventMask
  33. VALUE evKeyDown   OF EventMask CHECKED
  34. VALUE evCommand   OF EventMask CHECKED
  35. VALUE evBroadcast OF EventMask
  36.  
  37. VALUE gfGrowLoX   OF GrowMode
  38. VALUE gfGrowLoY   OF GrowMode
  39. VALUE gfGrowHiX   OF GrowMode
  40. VALUE gfGrowHiY   OF GrowMode
  41. VALUE gfGrowRel   OF GrowMode
  42.  
  43. VALUE ofSelectable  OF Options 
  44. VALUE ofTopSelect   OF Options
  45. VALUE ofFirstClick  OF Options
  46. VALUE ofFramed      OF Options
  47. VALUE ofPreProcess  OF Options
  48. VALUE ofPostProcess OF Options
  49. VALUE ofBuffered    OF Options
  50. VALUE ofTileable    OF Options
  51. VALUE ofCenterX     OF Options
  52. VALUE ofCenterY     OF Options
  53. VALUE ofValidate    OF Options
  54.  
  55. ******* TView Definition File Ends ********