Mercurial > hg > ltpda
view m-toolbox/m/gui/ltpdv/callbacks/ltpdv_objectList_edit.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line source
function ltpdv_objectList_edit(varargin) % LTPDV_OBJECTLIST_EDIT activates when the user changes the content of a % cell. % % M Hewitson 22-04-08 % % $Id: ltpdv_objectList_edit.m,v 1.2 2008/06/18 15:07:35 hewitson Exp $ % % Handles myh = varargin{1}; mainfig = varargin{end}; % Structure of selection details sel = varargin{2}; % Get selected rows rows = unique(sel.Indices(:,1)); % Get current object list objs = getappdata(mainfig, 'LTPDAobjects'); objs{rows} = objs{rows}.setName(sel.NewData); % Set objects back setappdata(mainfig, 'LTPDAobjects', objs); % Refresh object list ltpdv_refresh_object_list(mainfig); % END