home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / feelx11a.zip / NOWPS.GO < prev    next >
Text File  |  1994-04-23  |  3KB  |  76 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=hideactionbar
  39.                    items=program [ type=os2win ]
  40.                  ]
  41.  
  42. /* The FeelX menu: (defined in toolbox.inc)                          */
  43. FeelX:= Default_FeelX
  44.  
  45. /* The shell menu: (defined in toolbox.inc)                          */
  46. /* To disable this menu delete the following line                    */
  47. Shell:= Default_Shell.
  48.  
  49. /* Hotkeys: Per default only PgUp, PgDn (in toolbox.inc) defined:    */
  50. Hotkeys:=Default_Hotkeys
  51.  
  52.  
  53. /* Uncomment the following line to have the user documentation in    */
  54. /* the lower left corner                                             */
  55.  
  56. /* MenuLL:= User_Documentation */
  57.  
  58. /* Uncomment the following line to have the window list in the lower */
  59. /* right corner                                                      */
  60. /* MenuLR:= winlist */
  61.  
  62. /* The extended Desktop menu is similar to the actionbar             */
  63. /* (not everyone likes actionbars). If you have a 3-button mouse     */
  64. /* I would recommend to comment out the B1Desktop-line out           */
  65. B3Desktop:=B1Desktop                    /* same as B1Desktop!        */
  66. B1Desktop:=Default_Desktop
  67.  
  68. // PmShell := program [ entry="Workplace Shell", name="pmshell.exe", child=false ]
  69.  
  70. /* You can simply extend other objects by redefining/extending them  */
  71. /*
  72. ** Tools := item= program[ entry="Tool~1", name="tool1.exe", window=minimized ]
  73. **          item= program[ entry="Tool~2", name="tool2.exe"]
  74. */
  75.  
  76.