MATLAB GUI mouse shape control

28 Ansichten (letzte 30 Tage)
Guanfeng Gao
Guanfeng Gao am 21 Jul. 2015
Bearbeitet: Adam Danz am 14 Aug. 2021
I want to design a gui. And when the cursor point to different part of the GUI, I want it to change the shape itself. Such as becoming a cross or a hand when the cursor point to the image.
  1 Kommentar
Adam Danz
Adam Danz am 25 Jun. 2020
Bearbeitet: Adam Danz am 14 Aug. 2021
along with
can be used to automatically change the pointer symbol when it hovers over certain objects within the GUI. In regular figures, the pointer manager is supported with figure | axes | uipanel | image objects. As of r2020a, the pointer manager can also be used with uifigures but it seems that only uifigure and uiaxes are supported plus any object plotted within the axes (see demo).

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 21 Jul. 2015
Like this?
% Change mouse pointer (cursor) to an arrow.
set(gcf,'Pointer','arrow')
drawnow; % Cursor won't change right away unless you do this.
% Change mouse pointer (cursor) to an hourglass.
% QUIRK: use 'watch' and you'll actually get an hourglass not a watch.
set(gcf,'Pointer','watch');
drawnow; % Cursor won't change right away unless you do this.
  4 Kommentare
Guanfeng Gao
Guanfeng Gao am 21 Jul. 2015
Thanks. I have already solved the problem.
Noam Greenboim
Noam Greenboim am 14 Aug. 2021
To get all available cursors, type:
set(gcf,'Pointer')
each one of the resulted list can be used as the 3rd input to the set function.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by