app designer mouse events (position and clicks) on axes component
95 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am working on an app with that i want to move drawn objects on an axes element. Something like in this video.
As a first step i want to know the coordinates of the mouse on the axes and want to detect the mouse clicks the user does on this field. Ive been reading the forums for a while but i had no success so far creating a working program.
For testing purposes I created an application in App designer with an axes, two edit fields(numeric) and one lamp components.
The Edit Fields are supposed to show the actual coordinates of the mouse while the lamp lights up when the button is pressed. The main window looks like this:
I have collected some information about how im supposed to do but altogether im still lost.
First part of the code im trying to use:
function mouseMove(objectHandle, eventData)
cursorPoint = get(objectHandle.axes1, 'CurrentPoint');
app.xCoord.Value = cursorPoint(1,1);
app.yCoord.Value = cursorPoint(1,2);
end
Second part:
set(gca, 'WindowButtonMotionFcn', @mouseMove);
Since i havent seen a working application with mouse events, only some code parts from similar projects on the forums, im not sure if it could work at all, or where im supposed to put this code lines in the App Designer code.
I uploaded the app if someone would look into that. Any information on where to start with mouse events/ written or video guides / a working code for my test application would be greatly appreciated.
2 Kommentare
Adam
am 16 Aug. 2018
Unfortunately I don't think mouse interactivity is supported yet by App designer - one of the many reasons I do not use it yet.
gives details of what is not yet supported, with links to help for earlier versions too to show what they supported.
Lucas Acuna Scafati
am 8 Mai 2020
Were you able to find a solution to this issue? I currently working with 2017b and have the same problem.
Antworten (1)
Sampath Rachumallu
am 28 Apr. 2020
Bearbeitet: Sampath Rachumallu
am 28 Apr. 2020
Create a function called 'mouseMove' inside app in your case. Refer
https://www.mathworks.com/help/matlab/creating_guis/code-and-call-app-functions-in-app-designer.html
for creating a function inside an app.Next, Create a Startup function for the app. Refer the below link on how to add startup function for the app:
Finally set the mouse motion function callback to function 'mouseMove' inside startup function
Note: I am using 2019a and Mouse callbacks are supported in this version.
%In startup function
function startupFcn(app)
%set WindowButtonMotionFcn as mouse move function
set(app.UIFigure, 'WindowButtonMotionFcn', @mouseMove);
end
1 Kommentar
Matteo Verardo
am 2 Aug. 2023
@app.mouseMove not @mouseMove
function mouseMove(app, scr, event)
//the code
end
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!