Code covered by the BSD License  

Highlights from
showcontextmenu

image thumbnail
from showcontextmenu by Igor
Simple way to show contextmenu on left click in a nice drop-down way.

getParentFigure(fig)
function fig = getParentFigure(fig)
%this simple function returns parent figure of an object


% if the object is a figure or figure descendent, return the
% figure. Otherwise return [].
while ~isempty(fig) && ~strcmp('figure', get(fig,'type'))
  fig = get(fig,'parent');
end

end

Contact us