StuBS
|
Handles mouse movements and clicks. More...
#include <device/mouse.h>
Public Member Functions | |
Mouse (unsigned max_x, unsigned max_y) | |
Constructor. More... | |
void | getPos (unsigned &x, unsigned &y) const |
Retrieve the current mouse position. More... | |
bool | isPressed (MouseButton btn) const |
Check if a given mouse button is pressed. More... | |
void | plugin () |
Initialization of the mouse. More... | |
void | trigger () |
Handling of mouse interrupts. More... | |
Public Member Functions inherited from Gate | |
Gate () | |
Constructor. | |
virtual | ~Gate () |
Destructor. More... | |
virtual void | trigger ()=0 |
Device-specific interrupt handler. More... | |
Public Attributes | |
const unsigned | MAX_X |
Maximum X position of the mouse. | |
const unsigned | MAX_Y |
Maximum Y position of the mouse. | |
Handles mouse movements and clicks.
This class ensures correct initialization of the mouse and, above all, its interrupt handling.
|
inlineexplicit |
Constructor.
Defines a virtual window for the mouse.
max_x | Maximum X position (excluding) for the mouse |
max_y | Maximum Y position (excluding) for the mouse |
|
inline |
|
inline |
Check if a given mouse button is pressed.
btn | Button to check for press |
true
if button is currently pressedvoid Mouse::plugin | ( | ) |
Initialization of the mouse.
Initialization of the mouse and activation of the specific interrupt handling: The object will register itself at the Plugbox and configure the IOAPIC to receive the corresponding interrupts.
|
virtual |