~ubuntu-branches/ubuntu/trusty/libavg/trusty

« back to all changes in this revision

Viewing changes to src/player/SDLDisplayEngine.h

  • Committer: Package Import Robot
  • Author(s): OXullo Intersecans
  • Date: 2012-01-29 19:26:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120129192637-ck9os7t5x3adl92x
Tags: 1.7.1-0ubuntu1
New upstream release (LP: #923302)

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
namespace avg {
42
42
 
43
 
class XInput21MTInputDevice;
 
43
class XInputMTInputDevice;
44
44
class MouseEvent;
45
45
typedef boost::shared_ptr<class MouseEvent> MouseEventPtr;
46
46
class GLContext;
67
67
 
68
68
        // From IInputDevice
69
69
        virtual std::vector<EventPtr> pollEvents();
70
 
        void setXIMTInputDevice(XInput21MTInputDevice* pInputDevice);
 
70
        void setXIMTInputDevice(XInputMTInputDevice* pInputDevice);
71
71
 
72
72
        const IntPoint& getWindowSize() const;
73
73
        bool isFullscreen() const;
114
114
        MouseEventPtr m_pLastMouseEvent;
115
115
        int m_NumMouseButtonsDown;
116
116
        static std::vector<long> KeyCodeTranslationTable;
117
 
        XInput21MTInputDevice * m_pXIMTInputDevice;
 
117
        XInputMTInputDevice * m_pXIMTInputDevice;
118
118
 
119
119
        GLContextPtr m_pGLContext;
120
120