~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to modules/gui/skins2/events/evt_scroll.hpp

Tags: upstream-0.7.2.final
Import upstream version 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * evt_scroll.hpp
 
3
 *****************************************************************************
 
4
 * Copyright (C) 2003 VideoLAN
 
5
 * $Id: evt_scroll.hpp 6961 2004-03-05 17:34:23Z sam $
 
6
 *
 
7
 * Authors: Cyril Deguet     <asmax@via.ecp.fr>
 
8
 *          Olivier Teuli�re <ipkiss@via.ecp.fr>
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2 of the License, or
 
13
 * (at your option) any later version.
 
14
 *
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
 
23
 *****************************************************************************/
 
24
 
 
25
#ifndef EVT_SCROLL_HPP
 
26
#define EVT_SCROLL_HPP
 
27
 
 
28
#include "evt_input.hpp"
 
29
 
 
30
 
 
31
/// Class for mouse scroll events
 
32
class EvtScroll: public EvtInput
 
33
{
 
34
    public:
 
35
        typedef enum
 
36
        {
 
37
            kUp,
 
38
            kDown
 
39
        } Direction_t;
 
40
 
 
41
        EvtScroll( intf_thread_t *pIntf, int xPos, int yPos,
 
42
                   Direction_t direction, int mod = kModNone ):
 
43
            EvtInput( pIntf, mod ), m_xPos( xPos ), m_yPos( yPos ),
 
44
            m_direction( direction ) {}
 
45
        virtual ~EvtScroll() {}
 
46
 
 
47
        // Return the event coordinates
 
48
        int getXPos() const { return m_xPos; }
 
49
        int getYPos() const { return m_yPos; }
 
50
 
 
51
        // Return the direction
 
52
        Direction_t getDirection() const { return m_direction; }
 
53
 
 
54
        virtual const string getAsString() const;
 
55
 
 
56
    private:
 
57
        /// Coordinates of the mouse relative to the window
 
58
        int m_xPos, m_yPos;
 
59
        /// Scroll direction
 
60
        Direction_t m_direction;
 
61
};
 
62
 
 
63
 
 
64
#endif