/usr/share/psychtoolbox-3/PsychBasic/ShowCursor.m is in psychtoolbox-3-common 3.0.11.20140816.dfsg1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | function oldType = ShowCursor(type, screenid, mouseid)
% oldType = ShowCursor([type] [, screenid][, mouseid])
%
% ShowCursor redisplays the mouse pointer after a previous call to
% HideCursor. If the optional 'type' is specified, it also allows to alter
% the shape of the cursor. See following sections for details.
%
% The optional 'mouseid' allows to select which mouse cursor shall
% be redisplayed or changed in visual appearance. This only makes sense
% if you have multiple visible mouse cursors and is currently a Linux only
% feature.
%
% The return value 'oldType' is always zero, as this query mechanism is not
% supported with PTB-3. Just returned for backwards-compatibility.
%
% OSX, WINDOWS, LINUX: ___________________________________________________
%
% Cursor shape can be selected. Four types are defined by name:
%
% 'Arrow' = Standard mouse-pointer arrow.
% 'CrossHair' = A cross-hair cursor.
% 'Hand' = A hand symbol.
% 'SandClock' = Some sort of sand clock/hour-glass (not available on 64-Bit OSX).
%
% Apart from that names, you can pass integral numbers for type to select
% further shapes. The mapping of numbers to shapes is operating system
% dependent, therefore not portable across different platforms. On
% MS-Windows, you can select between number 0 to 7. On Linux/X11 you can
% select from a wide range of numbers from 0 up to (at least) 152, maybe
% more, depending on your setup. See the C header file "X11/cursorfont.h"
% for a mapping of numbers to shapes. Passing invalid numbers can create
% errors. On 32-Bit OS/X, numbers between zero and 17 are currently valid.
% You can find a list of mappings from type to number for 32-Bit OS/X at:
% http://developer.apple.com/documentation/macos8/HumanInterfaceToolbox/Ap
% pManager/ProgWithAppearanceMgr/Appearance.9d.html#10244
%
% LINUX: ___________________________________________________________________
%
% Linux allows for display and handling of multiple mouse cursors if your
% X-Server is of version 1.7 or later.
%
% If provided, the optional "type" argument changes the cursor shape to:
% 0: Arrow
% 1: I Beam
% 2: Cross
% 3: Plus
% 4: Watch
% 5: Arrow
% 128: P
% 300: Beachball 1/4
% 301: Beachball 2/4
% 302: Beachball 3/4
% 303: Beachball 4/4
% 400: fat arrow
% 401: fat I Beam
% Type 0 (and 5 for backward compatibility) is predefined as the standard
% arrow cursor. The rest return whatever Apple's GetCursor(type) finds in
% the System or Matlab's resource forks. If nothing is found, the type is
% reset to 0. The fat arrow and I beam are copied from the "Fat Cursors v
% 1.2" control panel created by Robert Abatecola, 5106 Forest Glen Drive,
% San Jose, CA 95129.
% _________________________________________________________________________
% 7/23/97 dgp Cosmetic editing.
% 8/15/97 dgp Explain hide/show counter.
% 3/15/99 xmz Added comments for PC version.
% 8/19/00 dgp Cosmetic.
% 4/14/03 awi ****** OS X-specific fork from the OS 9 version *******
% Added call to Screen('ShowCursor'...) for OS X.
% 7/12/04 awi Divided into sections by platform.
% 11/16/04 awi Renamed Screen("ShowCursor") to Screen("ShowCursorHelper").
% 10/4/05 awi Note here that dgp made unnoted cosmetic changes between 11/16/04 and 10/4/05.
% 09/21/07 mk Added code for selecting 'type' - the shape of a cursor - on supported systems.
oldType = 0;
% We default to setup of display screen zero, if no
% screenid provided. This argument is ignored on
% Windows and OS/X anyway. Only meaningful for
% Linux.
if nargin < 2
screenid = 0;
end
if isempty(screenid)
screenid = 0;
end
if nargin < 3
mouseid = [];
end
% Default to: No change in cursor shape...
if nargin < 1
type = [];
else
if ischar(type)
% Name string provided. We can map a few symbolic names to proper
% id's for the different operating systems:
if strcmpi(type, 'Arrow');
% True for Windows and OS/X:
type = 0;
if IsLinux
type = 2;
end
end
if strcmpi(type, 'CrossHair');
% True for Windows:
type = 1;
if IsOSX
type = 5;
end
if IsLinux
type = 34;
end
end
if strcmpi(type, 'Hand');
% True for Windows:
type = 2;
if IsOSX
type = 10;
end
if IsLinux
type = 58;
end
end
if strcmpi(type, 'SandClock');
% True for Windows:
type = 6;
if IsOSX
type = 7;
end
if IsLinux
type = 26;
end
end
if ischar(type)
sca;
error('Unknown "type" shape specification passed to ShowCursor()!');
end
end
end
% New cursor shape requested?
if isempty(type)
% Only unhide / show cursor, don't modify its shape:
% Use Screen to emulate ShowCursor.mex
Screen('ShowCursorHelper', screenid, [], mouseid);
else
% Cursor shape change requested as well. Mapping of
% types to shapes is highly OS dependent...
Screen('ShowCursorHelper', screenid, type, mouseid);
end
% Return a dummy oldtype, we don't have this info...
oldtype = 0;
|