home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xmoushdl.h < prev    next >
Text File  |  1997-08-12  |  990b  |  27 lines

  1. #ifndef __OOL_XMOUSEHANDLER_H__
  2. #define __OOL_XMOUSEHANDLER_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XMouseHandler                         */
  8. /*                       derived from: XHandler                              */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13. #include "xhandler.h"
  14.  
  15.  
  16. class XMouseEvent;
  17.  
  18. class _export_ XMouseHandler: public XHandler
  19. {
  20.    public:
  21.       XMouseHandler( const XWindow * w): XHandler( OOL_MOUSEHANDLER, w ) { ;}
  22.       virtual BOOL HandleEvent( XMouseEvent *) { return FALSE;}
  23. };
  24.  
  25.  
  26. #endif
  27.