determine if the mouse is pressed in a given moment

49 Ansichten (letzte 30 Tage)
Arabarra
Arabarra am 21 Apr. 2017
Kommentiert: Bruno Luong am 12 Dez. 2023
I’m wondering if the Figure class has some (probably hidden) property that expresses if the mouse is pressed (and which button) in the moment that the moment that the property is read. If the figure had an event for button up and down events that would also solve my problem.
I know I could set WindowButtonDownFcn and WindowButtonUpFcn to inform a global variable to keep track on when the mouse is used, but that's deeply unpractical (in my code WindowButtonDownFcn gets changed frequently depending on the actions of the user)

Akzeptierte Antwort

Jan
Jan am 19 Sep. 2017
Bearbeitet: Jan am 19 Sep. 2017
It would be easy, if you do not change the WindowButtonDownFcn frequently, but keep it statically and use a persistent variable for branching. Then you had to insert the code to store the button state at one location only.
If you check the button state, you have to consider the currently active window also. You do not want to react to clicks in the task bar or the desktop.
[EDITED] The FEX submission is not working out of the box. Try this:
% !!! UNTESTED !!!
function [L, R, M] = GetMouseKeyStatus()
if ~ispc
error('Running under Windows only.');
end
if ~libisloaded('user32')
loadlibrary('user32.dll', 'user32.h');
end
L = calllib('user32', 'GetAsyncKeyState', int32(1)) ~= 0;
R = calllib('user32', 'GetAsyncKeyState', int32(2)) ~= 0;
M = calllib('user32', 'GetAsyncKeyState', int32(4)) ~= 0;
end
  20 Kommentare
Matthieu
Matthieu am 12 Dez. 2023
Bearbeitet: Matthieu am 12 Dez. 2023
Hi,
my variable 'perlInst' contains exactly the same as you.
Your cmdString is similar, containing also :
%PATH%&perl "C:\Program Files\MATLAB\R2023b\toolbox\matlab\general\private\prototypes.pl"
and this is identical also : &set PATH=C:\Program Files\MATLAB\R2023b\sys\perl\win32\bin\;
Finally a REBOOT (!) of my computer finally solved the problem, incredible !! ?? ...
BUT : I then removed the environnement variable PATH to 'C:\Program Files\MATLAB\R2023b\sys\perl\win32\bin\' and reboot Matlab and ismousedpressed.m is NOT working anymore...
So I recreated this PATH entry in the environnement variable : C:\Program Files\MATLAB\R2023b\sys\perl\win32\bin\, reboot MATLAB again and ismousedpressed.m is working again !!
So it seems that perl.exe was not reachable by Matlab as DOS command and it seems that PATH of environnement variables are loaded at Matlab startup (?).
Thanks for your help Bruno !
Bruno Luong
Bruno Luong am 12 Dez. 2023
For sure the PATH is loaded at the MATLAB startup (or in general any windows program). What I don't understand is that the system commannd in perl.m use the full absolute path, and why it needs the path environment?
Anyway glad you solve the issue.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Ankit Bhardwaj
Ankit Bhardwaj am 24 Apr. 2017
Bearbeitet: Ankit Bhardwaj am 24 Apr. 2017
You can use ButtonDownFcn callback for your figure. This callback executes whenever the user clicks a mouse button while the pointer is in the figure window, but not over a child object such as a uicontrol, uipanel, axes, or axes child. Moreover, mouse selection type returns 'normal', 'extend' , 'alt' , or 'open'. MATLAB maintains this property to provide information about the last mouse-button press that occurred within the figure window. This information indicates the type of selection made. Please go through the following documentation to learn about callback properties of figure object.
https://www.mathworks.com/help/matlab/ref/figure-properties.html#zmw57dd0e274973
  2 Kommentare
Arabarra
Arabarra am 19 Sep. 2017
Hi Ankit,
thanks for your suggestion. This would be rather unpractical in my case, as in my GUI I define a large number of "modus" (similar to the zoom, rotation, etc of a regular matlab figure). This means, a lot of ButtonDownFcns that change during runtime. To implement your solution, I would be forced to make certain that every ButtonDownFcn triggers an event that tells some listener that the button was pressed, and that every ButtonUpFcn broadcasts the release of the button. That'd be a titanic effort, specially because I rely on a large library of code that I didn't develop specifically for this application (and which I don't wish to modify, as they are used by other applications).
cheers, Daniel
Walter Roberson
Walter Roberson am 19 Sep. 2017
I wonder if iptaddcallback() would help ?

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