Notify event in a class

5 vues (au cours des 30 derniers jours)
Mateus Banroc
Mateus Banroc le 27 Déc 2019
Commenté : Mateus Banroc le 27 Déc 2019
Hi guys,
I'm having some problems with event in classes. I have a class class like this:
classdef ClassA < handle
properties
prop
end
events
EventA
end
methods
function o = ClassA
addlistener(o,'EventA',@o.callbackfun);
o.prop = ClassB;
end
function callbackfun(o,~,~)
% do something
end
end
end
and the ClassB like:
classdef ClassB < handle
properties
button
end
methods
function o = ClassB
fig = figure;
o.button = uicontrol(fig,'Style','pushbutton','Callback',@(~,~,~) notify(ClassA,'EventA'));
end
end
end
And then, when I click the button, it opens a new figure. Like it was calling ClassA again. What I am doing wrong?
Thanks,

Réponse acceptée

Max Murphy
Max Murphy le 27 Déc 2019
You are very close to having it working! In your Notify callback, you make a call to the constructor ClassA rather than a specifieid object of type ClassA. So you would give the argument to the ClassB constructor to pass an object of type ClassA and then reference that object instead of the class constructor:
classdef ClassB < handle
properties
button
end
methods
function o = ClassB(classAObj)
fig = figure;
o.button = uicontrol(fig,'Style','pushbutton','Callback',@(~,~,~) notify(classAObj,'EventA'));
end
end
end
  1 commentaire
Mateus Banroc
Mateus Banroc le 27 Déc 2019
It works!! Thanks Max!!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Construct and Work with Object Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by