MyGL
Loading...
Searching...
No Matches
Cursor.hpp
1#ifndef MYGL_CURSOR
2#define MYGL_CURSOR
3
4#include "mygl_export.h"
5
6#define GLFW_INCLUDE_NONE
7#include <GLFW/glfw3.h>
8
9#include "Image.hpp"
10#include <memory>
11#include <string>
12
13namespace my
14{
18 class Cursor
19 {
20 private:
21 std::shared_ptr<GLFWcursor> p_cursor;
22
27 Cursor(GLFWcursor* cursor);
28
29 public:
33 static const Cursor arrow;
37 static const Cursor IBeam;
41 static const Cursor crosshair;
45 static const Cursor hand;
53 static const Cursor verticalResize;
54
58 MYGL_EXPORT Cursor() noexcept;
59
72 MYGL_EXPORT Cursor(const Image& image, int xhot, int yhot);
73
74 MYGL_EXPORT ~Cursor() = default;
75
83 MYGL_EXPORT bool load(const Image& image, int xhot, int yhot);
84
89 MYGL_EXPORT bool isUsable() const noexcept;
90
91 friend class Window;
92 };
93} // namespace my
94
95#endif // MYGL_CURSOR
A class for storing custom cursors.
Definition Cursor.hpp:19
static const Cursor arrow
The standard arrow cursor, this is the default.
Definition Cursor.hpp:33
static const Cursor verticalResize
The vertical resize arrow cursor.
Definition Cursor.hpp:53
static const Cursor horizontalResize
The horizontal resize arrow cursor.
Definition Cursor.hpp:49
static const Cursor IBeam
The I-beam shaped cursor (or text cursor)
Definition Cursor.hpp:37
MYGL_EXPORT bool load(const Image &image, int xhot, int yhot)
Loads a cursor fron an image file.
static const Cursor crosshair
The crosshair cursor (cross shape)
Definition Cursor.hpp:41
MYGL_EXPORT Cursor() noexcept
Creates a default arrow cursor.
static const Cursor hand
The pointing hand cursor.
Definition Cursor.hpp:45
MYGL_EXPORT bool isUsable() const noexcept
Tells wether the cursor is usable.
A class for manipulating imges.
Definition Image.hpp:15
Class for creating a window.
Definition Window.hpp:52
Namespace containing every class, function and enum of the library.
Definition Camera.hpp:10