home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / myfeelx.zip / feelx.go next >
Text File  |  1994-11-17  |  3KB  |  81 lines

  1. /******************************************************************************
  2.  
  3.  FeelX.go is the main definition file of FeelX. We use some definitions
  4.  from toolbox.inc - therefore we include this file first:
  5.  
  6. *******************************************************************************/
  7.  
  8.  ^toolbox.inc
  9.  
  10. /******************************************************************************
  11.  
  12.  You may define Menus, actions etc. for any entry point. The following
  13.  entry points may currently be used: (Those that defined by this
  14.  default configuration are marked with an asterisk)
  15.  
  16.    Startup   -  execute object on startup
  17.  * FeelX     -  2nd (right) mouse button on a titlebar
  18.  * Shell     -  2nd (right) mouse button on a shell
  19.    Shell3    -  3rd (middle) mouse button on a shell
  20.  * Hotkeys   -  Hotkeys
  21.    MenuLL    -  lower left menu
  22.    MenuUL    -  upper left menu
  23.    MenuLR    -  lower right menu
  24.    MenuUR    -  upper right menu
  25.    B1Desktop -  double-click (left button) on the desktop
  26.    B3Desktop -  single-click (middle button) on the desktop
  27.  
  28. *******************************************************************************/
  29.  
  30. /* It is recommended to have an Actionbar visible on startup when no WPS */
  31. /* is used. Therefore first an actionbar is created. That it is made     */
  32. /* visible by the hideactionbar command. This might be contra-intuitive. */
  33. /* Imagine that the actionbar is invisible on startup and you click on   */
  34. /* a hideactionbar item to make it visible. At last a shell is created.  */
  35. /* This is necessary on my system. maybe it's not on yours.              */
  36.  
  37. Startup := chain [ items=Default_Actionbar
  38.                    items=program[entry="PMP 2.13",name="e:\pmp\pmpatrol.exe",
  39.                    path="e:\pmp",child=false]
  40.                    items=program[entry="Blanker",name="e:\blanker\blanker.exe",
  41.                    path="e:\blanker",child=false]
  42.                  ] 
  43.  
  44. /* The FeelX menu: (defined in toolbox.inc)                          */
  45. FeelX:= Default_FeelX
  46.  
  47. /* The shell menu: (defined in toolbox.inc)                          */
  48. /* To disable this menu delete the following line                    */
  49. Shell:= Default_Shell.
  50.  
  51. /* Hotkeys: Per default only PgUp, PgDn (in toolbox.inc) defined:    */
  52. Hotkeys:=Default_Hotkeys
  53.  
  54.  
  55. /* Uncomment the following line to have the user documentation in    */
  56. /* the lower left corner                                             */
  57.  
  58. /* MenuLL:= User_Documentation */
  59.  
  60. /* Uncomment the following line to have the window list in the lower */
  61. /* right corner                                                      */
  62. /* MenuLR:= winlist */
  63.  
  64. /* The extended Desktop menu is similar to the actionbar             */
  65. /* (not everyone likes actionbars). If you have a 3-button mouse     */
  66. /* I would recommend to comment out the B1Desktop-line out           */
  67. B3Desktop:=Default_Desktop                    /* same as B1Desktop!        */
  68. /*B1Desktop:=Default_Desktop */
  69.  
  70. QuitFeelX := quit
  71.  
  72. // PmShell := program [ entry="Workplace Shell", name="pmshell.exe", child=false ]
  73.  
  74. /* You can simply extend other objects by redefining/extending them  */
  75. /*
  76. ** Tools := item= program[ entry="Tool~1", name="tool1.exe", window=minimized ]
  77. **          item= program[ entry="Tool~2", name="tool2.exe"]
  78. */
  79.  
  80. 
  81.