Files
test/intern/ghost/intern/GHOST_Buttons.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.7 KiB
C++
Raw Normal View History

2011-02-25 11:28:33 +00:00
/*
2002-10-12 11:37:38 +00:00
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
2002-10-12 11:37:38 +00:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
2010-02-12 13:34:04 +00:00
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2002-10-12 11:37:38 +00:00
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
*/
/** \file
* \ingroup GHOST
2011-02-25 11:28:33 +00:00
*/
2002-10-12 11:37:38 +00:00
#include "GHOST_Buttons.h"
GHOST_Buttons::GHOST_Buttons()
{
clear();
}
bool GHOST_Buttons::get(GHOST_TButtonMask mask) const
{
2012-05-19 09:57:55 +00:00
switch (mask) {
case GHOST_kButtonMaskLeft:
return m_ButtonLeft;
case GHOST_kButtonMaskMiddle:
return m_ButtonMiddle;
case GHOST_kButtonMaskRight:
return m_ButtonRight;
default:
return false;
}
2002-10-12 11:37:38 +00:00
}
void GHOST_Buttons::set(GHOST_TButtonMask mask, bool down)
{
2012-05-19 09:57:55 +00:00
switch (mask) {
case GHOST_kButtonMaskLeft:
m_ButtonLeft = down;
break;
case GHOST_kButtonMaskMiddle:
m_ButtonMiddle = down;
break;
case GHOST_kButtonMaskRight:
m_ButtonRight = down;
break;
default:
break;
}
2002-10-12 11:37:38 +00:00
}
void GHOST_Buttons::clear()
{
2012-05-19 09:57:55 +00:00
m_ButtonLeft = false;
m_ButtonMiddle = false;
m_ButtonRight = false;
2002-10-12 11:37:38 +00:00
}
2012-05-19 09:57:55 +00:00
GHOST_Buttons::~GHOST_Buttons()
{
}