How can I constrain ginput to not respond if clicked outside the axes?
11 次查看(过去 30 天)
显示 更早的评论
I am using ginput to pick points within a 2D scale with a range +-1 in both axes. I have some action buttons outside the scale. The documentation for ginput says that if the mouse button is clicked even when the cursor is outside the scale, it will pick that point relative to the origin of the scale. Of course, I can ignore any points outside the range using a while loop, for example. But, if the user inadvertantly presses the mouse button while the cursor is on an action button outside the scale, it activates the action. I would like to prevent the user from doing this, i.e. essentially deactivate/ignore the ginput selection if the cursor is outside my intended axes..
Any idea how I can do this?
0 个评论
回答(2 个)
Shraddha Jain
2021-3-10
Hi Ranjan,
There is no functionality of setting custom axes boundary coordinates in the ginput function as of now, it might be considered in a future release.
As a possible workaround, you may add a function in your code which filters out the coordinate points that are outside the area of intended axes.
Walter Roberson
2021-3-10
For the duration of the ginput() call, disable the action buttons by setting their 'enable' property to 'inactive'. Or set their visibility to off.
This is certainly not as nice as an ability to confine a ginput() to a certain axes would be, but it is something .
currently_on = findall(gcf, 'type', 'uicontrol', 'Enable', 'on');
cleanme = onCleanup(@() set(currently_on, 'Enable', 'on'));
set(currently_on, 'Enable', 'inactive');
[X,Y] = ginput(N);
clear cleanme %restore them
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!