lyx_mirror/src/frontends/mouse_state.h
André Pönitz 6c300f72a2 move everything into namespace lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-21 00:16:43 +00:00

43 lines
762 B
C++

// -*- C++ -*-
/**
* \file mouse_state.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* GUII representation of mouse presses and
* mouse button states
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#ifndef MOUSE_STATE_H
#define MOUSE_STATE_H
namespace lyx {
/// used both for presses and held during motion
namespace mouse_button {
enum state {
none = 0, //< no buttons held
button1 = 1, //< mouse button 1 pressed
button2 = 2,
button3 = 4,
button4 = 8,
button5 = 16
};
inline void operator|=(state & s1, state s2)
{
s1 = static_cast<state>(s1 | s2);
}
} // namespace mouse_button
} // namespace lyx
#endif // MOUSE_STATE_H