Documentation de SFML 2.5.0

Attention: cette page se réfère à une ancienne version de SFML. Cliquez ici pour passer à la dernière version.
Cursor.hpp
1 //
3 // SFML - Simple and Fast Multimedia Library
4 // Copyright (C) 2007-2018 Laurent Gomila (laurent@sfml-dev.org)
5 //
6 // This software is provided 'as-is', without any express or implied warranty.
7 // In no event will the authors be held liable for any damages arising from the use of this software.
8 //
9 // Permission is granted to anyone to use this software for any purpose,
10 // including commercial applications, and to alter it and redistribute it freely,
11 // subject to the following restrictions:
12 //
13 // 1. The origin of this software must not be misrepresented;
14 // you must not claim that you wrote the original software.
15 // If you use this software in a product, an acknowledgment
16 // in the product documentation would be appreciated but is not required.
17 //
18 // 2. Altered source versions must be plainly marked as such,
19 // and must not be misrepresented as being the original software.
20 //
21 // 3. This notice may not be removed or altered from any source distribution.
22 //
24 
25 #ifndef SFML_CURSOR_HPP
26 #define SFML_CURSOR_HPP
27 
29 // Headers
31 #include <SFML/Window/Export.hpp>
32 #include <SFML/System/NonCopyable.hpp>
33 #include <SFML/System/Vector2.hpp>
34 
35 namespace sf
36 {
37 namespace priv
38 {
39  class CursorImpl;
40 }
41 
46 class SFML_WINDOW_API Cursor : NonCopyable
47 {
48 public:
49 
73  enum Type
74  {
77  Wait,
78  Text,
79  Hand,
86  Help,
87  NotAllowed
88  };
89 
90 public:
91 
101  Cursor();
102 
110  ~Cursor();
111 
141  bool loadFromPixels(const Uint8* pixels, Vector2u size, Vector2u hotspot);
142 
157  bool loadFromSystem(Type type);
158 
159 private:
160 
161  friend class Window;
162 
172  const priv::CursorImpl& getImpl() const;
173 
174 private:
175 
177  // Member data
179  priv::CursorImpl* m_impl;
180 };
181 
182 } // namespace sf
183 
184 
185 #endif // SFML_CURSOR_HPP
186 
187 
Busy cursor.
Definition: Cursor.hpp:77
Double arrow cursor going from top-left to bottom-right.
Definition: Cursor.hpp:82
Combination of SizeHorizontal and SizeVertical.
Definition: Cursor.hpp:84
Cursor defines the appearance of a system cursor.
Definition: Cursor.hpp:46
Vertical double arrow cursor.
Definition: Cursor.hpp:81
Pointing hand cursor.
Definition: Cursor.hpp:79
Type
Enumeration of the native system cursor types.
Definition: Cursor.hpp:73
Arrow cursor (default)
Definition: Cursor.hpp:75
I-beam, cursor when hovering over a field allowing text entry.
Definition: Cursor.hpp:78
Window that serves as a target for OpenGL rendering.
Horizontal double arrow cursor.
Definition: Cursor.hpp:80
Help cursor.
Definition: Cursor.hpp:86
Utility class that makes any derived class non-copyable.
Definition: NonCopyable.hpp:41
Busy arrow cursor.
Definition: Cursor.hpp:76
Crosshair cursor.
Definition: Cursor.hpp:85
Double arrow cursor going from bottom-left to top-right.
Definition: Cursor.hpp:83