home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / feelx11a.zip / FEELX.GO < prev    next >
Text File  |  1994-06-04  |  3KB  |  72 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. /* Uncomment the following (Startup) line to have the default actionbar */
  31. /* visible on startup of FeelX.                                         */
  32. //Startup := chain [ items=Default_Actionbar;hideactionbar ]
  33. Startup := chain [ items=hideactionbar;Default_Actionbar ]
  34.  
  35. /* The FeelX menu: (defined in toolbox.inc)                          */
  36. FeelX:= Default_FeelX
  37.  
  38. /* The shell menu: (defined in toolbox.inc)                          */
  39. /* To disable this menu delete the following line                    */
  40. Shell:= Default_Shell.
  41.  
  42. /* Hotkeys: Per default only PgUp, PgDn (in toolbox.inc) defined:    */
  43. Hotkeys:=Default_Hotkeys
  44.  
  45.  
  46. /* Uncomment the following line to have the user documentation in    */
  47. /* the lower left corner                                             */
  48.  
  49. /* MenuLL:= User_Documentation */
  50.  
  51. /* Uncomment the following line to have the window list in the lower */
  52. /* right corner                                                      */
  53. /* MenuLR:= winlist */
  54.  
  55. /* The extended Desktop menu is similar to the actionbar             */
  56. /* (not everyone likes actionbars). If you have a 3-button mouse     */
  57. /* I would recommend to comment out the B1Desktop-line out           */
  58. B3Desktop:=B1Desktop                    /* same as B1Desktop!        */
  59. B1Desktop:=Default_Desktop
  60.  
  61.  
  62. QuitFeelX := quit
  63.  
  64. /* You can simply extend other objects by redefinig/extending them   */
  65. /*
  66. ** Tools := item= program[ entry="Tool~1", name="tool1.exe", window=minimized ]
  67. **          item= program[ entry="Tool~2", name="tool2.exe"]
  68. */
  69.  
  70. // The following line was added by the installation prg. instwps.exe
  71. FeelXObject:=object [ handle=178469, entry="FeelX object", open="SETTINGS" ]
  72.