mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-14 00:14:18 +00:00
This commit is contained in:
parent
e6c663e3b0
commit
f360457470
7 changed files with 60 additions and 63 deletions
|
|
@ -2543,18 +2543,18 @@ void juce_updateMultiMonitorInfo (Array <Rectangle>& monitorCoords, const bool c
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
bool Desktop::canUseSemiTransparentWindows()
|
||||
bool Desktop::canUseSemiTransparentWindows() throw()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void Desktop::getMousePosition (int& x, int& y)
|
||||
void Desktop::getMousePosition (int& x, int& y) throw()
|
||||
{
|
||||
int mouseMods;
|
||||
getMousePos (x, y, mouseMods);
|
||||
}
|
||||
|
||||
void Desktop::setMousePosition (int x, int y)
|
||||
void Desktop::setMousePosition (int x, int y) throw()
|
||||
{
|
||||
Window root = RootWindow (display, DefaultScreen (display));
|
||||
XWarpPointer (display, None, root, 0, 0, 0, 0, x, y);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue