xtd 0.2.0
Loading...
Searching...
No Matches
cursors.h
Go to the documentation of this file.
1
4#pragma once
5#include "cursor.h"
6#include <xtd/static>
7
9namespace xtd {
11 namespace forms {
24 public:
26
35
42 static cursor arrow();
43
51
59
66 static cursor cell();
67
74 static cursor cross();
75
83
91
98 static cursor drag_copy();
99
107
114 static cursor hand();
115
122 static cursor help();
123
130 static cursor hsplit();
131
138 static cursor ibeam();
139
146 static cursor no();
147
154 static cursor no_drag();
155
163
171
179
187
194 static cursor pan_east();
195
202 static cursor pan_ne();
203
211
218 static cursor pan_nw();
219
226 static cursor pan_se();
227
235
242 static cursor pan_sw();
243
250 static cursor pan_west();
251
258 static cursor size_all();
259
267
274 static cursor size_ns();
275
283
290 static cursor size_we();
291
298 static cursor up_arrow();
299
306 static cursor vibeam();
307
314 static cursor vsplit();
315
323
330 static cursor zoom_in();
331
338 static cursor zoom_out();
340
342
348 static cursor from_name(const xtd::ustring& name);
349
352 static const std::vector<cursor>& get_cursors();
354 };
355 }
356}
Represents the image used to paint the mouse pointer.
Definition cursor.h:38
Provides a collection of xtd::forms::cursor objects for use by a Windows Forms application.
Definition cursors.h:23
static cursor size_all()
Gets the four-headed sizing cursor, which consists of four joined arrows that point north,...
static cursor size_nesw()
Gets the two-headed diagonal (northeast/southwest) sizing cursor.
static cursor wait_cursor()
Gets the wait cursor, typically an hourglass shape.
static cursor ibeam()
Gets the I-beam cursor, which is used to show where the text cursor appears when the mouse is clicked...
static cursor no()
Gets the cursor that indicates that a particular region is invalid for the current operation.
static const std::vector< cursor > & get_cursors()
Gets all cursors.
static cursor size_ns()
Gets the two-headed vertical (north/south) sizing cursor.
static cursor pan_sw()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor pan_west()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor hsplit()
Gets the cursor that appears when the mouse is positioned over a horizontal splitter bar.
static cursor no_drag()
Gets the cursor that indicates that a particular region is invalid for the current drag & drop operat...
static cursor contextual_menu()
Gets the contextual menu cursor.
static cursor disappearing_item()
Gets the disappearing item cursor.
static cursor size_we()
Gets the two-headed diagonal (northwest/southeast) sizing cursor.
static cursor cell()
Gets the cell cursor.
static cursor app_starting()
Gets the cursor that appears when an application starts.
static cursor pan_north()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor from_name(const xtd::ustring &name)
Gets cursor from name.
static cursor arrow()
Gets the arrow cursor.
static cursor cross()
Gets the crosshair cursor.
static cursor pan_nw()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor size_nwse()
Gets the two-headed diagonal (northwest/southeast) sizing cursor.
static cursor no_move_vert()
Gets the cursor that appears during wheel operations when the mouse is not moving,...
static cursor up_arrow()
Gets the up arrow cursor, typically used to identify an insertion point.
static cursor drag_copy()
Gets the drag copy cursor.
static cursor open_hand()
Gets the open hand cursor.
static cursor zoom_out()
Gets the zoom out cursor, typically to zoom out an object.
static cursor pan_se()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor default_cursor()
Gets the default cursor, which is usually an arrow cursor.
static cursor no_move_horiz()
Gets the cursor that appears during wheel operations when the mouse is not moving,...
static cursor vibeam()
Gets the vertical I-beam cursor, which is used to show where the text cursor appears when the mouse i...
static cursor drag_link()
Gets the drag link cursor.
static cursor help()
Gets the Help cursor, which is a combination of an arrow and a question mark.
static cursor hand()
Gets the hand cursor, typically used when hovering over a Web link.
static cursor pan_south()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor closed_hand()
Gets the closed hand cursor.
static cursor vsplit()
Gets the cursor that appears when the mouse is positioned over a vertical splitter bar.
static cursor pan_east()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
static cursor no_move_2d()
Gets the cursor that appears during wheel operations when the mouse is not moving,...
static cursor zoom_in()
Gets the zoom_in cursor, typically to zoom in an object.
static cursor pan_ne()
Gets the cursor that appears during wheel operations when the mouse is moving and the window is scrol...
Represents text as a sequence of UTF-8 code units.
Definition ustring.h:47
Contains xtd::forms::cursor class.
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.h:37
#define forms_export_
Define shared library export.
Definition forms_export.h:13
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10