/* * Copyright 2005, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. * * Authors: * Axel Dörfler, axeld@pinc-software.de */ #ifndef INPUT_MANAGER_H #define INPUT_MANAGER_H #include #include class EventStream; class InputManager : public BLocker { public: InputManager(); virtual ~InputManager(); void UpdateScreenBounds(BRect bounds); bool AddStream(EventStream* stream); void RemoveStream(EventStream* stream); EventStream* GetStream(); void PutStream(EventStream* stream); private: BObjectList fFreeStreams; BObjectList fUsedStreams; }; extern InputManager* gInputManager; #endif /* INPUT_MANAGER_H */