In a GUIDE, is it possible to reduce the number of button callback functions?

1 visualizzazione (ultimi 30 giorni)
For a GUIDE with 2 buttons, both calling the same function but with different function-inputs. Eg:
function radiobutton1_Callback(hObject, eventdata, handles)
if get(hObject,'Value'), disp('A'); end
function radiobutton2_Callback(hObject, eventdata, handles)
if get(hObject,'Value'), disp('B'); end
Is it possible to call the same function with different inputs like this:
function radiobutton_ALL_Callback(hObject,str)
if get(hObject,'Value'), disp(str); end
Avoid copy/paste is the purpose.

Risposta accettata

Walter Roberson
Walter Roberson il 24 Mar 2013
GUIDE will not want to do this. GUIDE puts its own callback string in that fetches the handles and then calls the real callback under the assumption that it will use object / event / handles as the calling sequence. I have not used GUIDE enough to know whether you can override GUIDE for this purpose.
  1 Commento
yosey
yosey il 24 Mar 2013
Thank you. I guess i shouldn't bungle in GUIDE standards.
I'll write the 'str' to UserData property or try assignments with tag, string and style.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by