1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Internal refactoring of mouse-event classes, as the first step towards multi-touch support.

This commit is contained in:
Julian Storer 2010-02-24 13:19:10 +00:00
parent 80afd8aee7
commit 9657241c10
35 changed files with 2785 additions and 2684 deletions

View file

@ -47,11 +47,11 @@ ModifierKeys& ModifierKeys::operator= (const ModifierKeys& other) throw()
return *this;
}
int ModifierKeys::currentModifierFlags = 0;
ModifierKeys ModifierKeys::currentModifiers;
const ModifierKeys ModifierKeys::getCurrentModifiers() throw()
{
return ModifierKeys (currentModifierFlags);
return currentModifiers;
}
int ModifierKeys::getNumMouseButtonsDown() const throw()