1 /*****************************************************************************
2  * evt_input.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id: 80d299f071d586844a76dc3465a2b63fed8f0d32 $
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24 
25 #include "evt_input.hpp"
26 #include "vlc_actions.h"
27 
28 const int
29     EvtInput::kModNone=0,
30     EvtInput::kModAlt=KEY_MODIFIER_ALT,
31     EvtInput::kModShift=KEY_MODIFIER_SHIFT,
32     EvtInput::kModCtrl=KEY_MODIFIER_CTRL,
33     EvtInput::kModMeta=KEY_MODIFIER_META,
34     EvtInput::kModCmd=KEY_MODIFIER_COMMAND;
35 
EvtInput(intf_thread_t * pIntf,int mod)36 EvtInput::EvtInput( intf_thread_t *pIntf, int mod )
37     : EvtGeneric( pIntf), m_mod( mod ) { }
38 
39 
addModifier(std::string & rEvtString) const40 void EvtInput::addModifier( std::string &rEvtString ) const
41 {
42     if( m_mod == kModNone )
43     {
44         rEvtString += ":none";
45     }
46     else
47     {
48         std::string m = ":";
49         if( m_mod & kModAlt )
50             m += "alt,";
51         if( m_mod & kModCtrl )
52             m += "ctrl,";
53         if( m_mod & kModShift )
54             m += "shift,";
55         if( m_mod & kModMeta )
56             m += "meta,";
57         if( m_mod & kModCmd )
58             m += "cmd,";
59         // Append the result except the last ','
60         rEvtString.insert( rEvtString.end(), m.begin(), m.end()-1 );
61     }
62 }
63