How to determine if pushbutton/callback is pressed?
조회 수: 10 (최근 30일)
이전 댓글 표시
How do I determine if a callback was pressed in guide GUI?
Say I have 2 Callbacks and
If I press the first Callback, then
function first_Callback(hObject, ..., ...)
var1 = 1; % callback was pressed
function second_Callback(hObject, ..., ...)
if(var1 == 1)
%code block
Thank You!
댓글 수: 0
답변 (2개)
Shameer Parmar
2016년 6월 10일
Hi Jan,
Try for this:
function pushbutton1_Callback(hObject, eventdata, handles)
handles.First = 1;
handles.Second = 0;
clc;
disp('Fist Button was pressed.');
guidata(hObject, handles);
.
function pushbutton2_Callback(hObject, eventdata, handles)
handles.First = 0;
handles.Second = 1;
clc;
disp('Second Button was pressed.');
guidata(hObject, handles);
Once you add this logic and click on respective push button, the two variables handles.First and handles.Second will be created and assign with either 0 or 1 value. You can then use it in your logic to check which push button was pressed.
if (handles.First==1 && handles.Second==0)
disp('Fist Button was pressed.');
elseif (handles.First==0 && handles.Second==1)
disp('Second Button was pressed.');
end
댓글 수: 2
Thanigaivel Raja T
2016년 10월 31일
편집: Thanigaivel Raja T
2016년 10월 31일
If both push buttons are not pressed, then handles.First will not have been defined. Then error message will be displayed by MATLAB.
Image Analyst
2016년 10월 31일
This does not describe Shameer's code. His code defines handles.First even if only one pushbutton is pressed. So it's not "both" as you said. The only problem would be is if "neither" is pressed. So to avoid that, you should put the following code in the OpeningFcn() function
% Indicate that neither pushbutton has been clicked yet:
handles.First = 0;
handles.Second = 0;
Image Analyst
2016년 6월 5일
Simply set a breakpoint at the first line of code in the callback. It should stop there if you interact with the GUI control.
If you don't know how to do that, please see this link, which will solve nearly every problem anyone might ever have in MATLAB.
댓글 수: 2
Ram
2018년 2월 20일
similar problem. but i dont how to do?... kindly help or any suggestion in my code https://de.mathworks.com/matlabcentral/answers/383546-how-can-i-call-two-push-buttons-from-the-3rd-push-button-in-gui-without-disabling-any-pushbuttons
Image Analyst
2018년 2월 20일
Alternatively, as the first two lines of the callback you can have this:
fprintf('Now in the pushbutton callback.\n');
uiwait(helpdlg('Now in the pushbutton callback.\n'));
참고 항목
카테고리
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!