Main Page   Namespace List   Class Hierarchy   Compound List   File List   Header Files   Namespace Members   Compound Members   File Members   Related Pages  

/msg/src/other/mousedragevent.h

This is the verbatim text of the mousedragevent.h include file.
/* -*- C++ -*-
 * mousedragevent.h
 * $Id: mousedragevent.h,v 1.1.1.1 2000/07/20 20:54:14 ghali Exp $
 */

#ifndef MOUSEDRAGEVENT_H
#define MOUSEDRAGEVENT_H

#include "event.h"
namespace MSG {

  class MouseDragEvent : public Event {
  protected:

    int Xdrag, Ydrag;

  public:

    MouseDragEvent(int _Xdrag, int _Ydrag);

    virtual ~MouseDragEvent();

    virtual EventType getEventType();

    int getXdrag() const;
    int getYdrag() const;

  };
}
#endif

Generated at Sat Jul 22 00:32:16 2000 for MSG by doxygen 1.0.0 written by Dimitri van Heesch, © 1997-1999