Otclient  14/8/2020
mouse.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #include <framework/global.h>
24 
25 class Mouse
26 {
27 public:
28  void init();
29  void terminate();
30 
31  void loadCursors(std::string filename);
32  void addCursor(const std::string& name, const std::string& file, const Point& hotSpot);
33  bool pushCursor(const std::string& name);
34  void popCursor(const std::string& name);
35  bool isCursorChanged();
36  bool isPressed(Fw::MouseButton mouseButton);
37 
38 private:
39  void checkStackSize();
40 
41  std::map<std::string, int> m_cursors;
42  std::deque<int> m_cursorStack;
43 };
44 
45 extern Mouse g_mouse;
Mouse::popCursor
void popCursor(const std::string &name)
Definition: mouse.cpp:76
Mouse::pushCursor
bool pushCursor(const std::string &name)
Definition: mouse.cpp:64
Mouse
Definition: mouse.h:25
g_mouse
Mouse g_mouse
Definition: mouse.cpp:28
Mouse::addCursor
void addCursor(const std::string &name, const std::string &file, const Point &hotSpot)
Definition: mouse.cpp:55
Mouse::isCursorChanged
bool isCursorChanged()
Definition: mouse.cpp:102
Mouse::terminate
void terminate()
Definition: mouse.cpp:34
Mouse::init
void init()
Definition: mouse.cpp:30
Mouse::isPressed
bool isPressed(Fw::MouseButton mouseButton)
Definition: mouse.cpp:107
TPoint< int >
global.h
Mouse::loadCursors
void loadCursors(std::string filename)
Definition: mouse.cpp:39
Fw::MouseButton
MouseButton
Definition: const.h:246