% % definition for the kml_style sub (derived) class. % % [kml]=kml_style(varargin) % % where the optional varargin and defaults are: % id (char, style id, '') % icon (char, icon style, '') % label (char, label style, '') % line (char, line style, '') % poly (char, poly style, '') % balloon (char, balloon style, '') % list (char, list style, '') % % note that zero arguments constructs a default instance; one % argument of the class copies the instance; and two or more % arguments constructs a new instance from the arguments. % classdef kml_style < kml_styleselector properties % icon =kml_iconstyle.empty(); % label =kml_labelstyle.empty(); icon =[]; label =[]; line =kml_linestyle.empty(); poly =kml_polystyle.empty(); % balloon =kml_balloonstyle.empty(); % list =kml_liststyle.empty(); balloon =[]; list =[]; end methods function [kml]=kml_style(varargin) kml=kml@kml_styleselector(varargin{:}); switch nargin % create a default object case 0 % copy the object or create the object from the input otherwise if (nargin == 1) && isa(varargin{1},class(kml)) kml=varargin{1}; else fnames=fieldnames(kml); for i=length(fieldnames(kml_styleselector()))+1:min(nargin,length(fnames)) if isa(varargin{i},class(kml.(fnames{i}))) if ~isempty(varargin{i}) kml.(fnames{i})=varargin{i}; end else if ~isempty(inputname(i)) warning('Argument ''%s'' for property ''%s'' is a ''%s'' class object, not ''%s''.',... inputname(i),fnames{i},class(varargin{i}),class(kml.(fnames{i}))); else warning('Argument %d for property ''%s'' is a ''%s'' class object, not ''%s''.',... i ,fnames{i},class(varargin{i}),class(kml.(fnames{i}))); end end end end end end % display the object function []=disp(kml) for i=1:numel(kml) disp(sprintf('class ''%s'' object ''%s%s'' = \n',... class(kml),inputname(1),string_dim(kml,i))); disp@kml_styleselector(kml(i)); disp(sprintf(' icon: %s %s' ,string_size(kml(i).icon),... class(kml(i).icon))); disp(sprintf(' label: %s %s' ,string_size(kml(i).label),... class(kml(i).label))); disp(sprintf(' line: %s %s' ,string_size(kml(i).line),... class(kml(i).line))); disp(sprintf(' poly: %s %s' ,string_size(kml(i).poly),... class(kml(i).poly))); disp(sprintf(' balloon: %s %s' ,string_size(kml(i).balloon),... class(kml(i).balloon))); disp(sprintf(' list: %s %s\n' ,string_size(kml(i).list),... class(kml(i).list))); end end % return the fieldnames of the object function [fnames]=fieldnames(kml) % fieldnames for a sub (derived) class list those before super (base) fnames=fieldnames(kml_styleselector()); fnames={fnames{:} ... 'icon' ... 'label' ... 'line' ... 'poly' ... 'balloon' ... 'list' ... }'; end % set the properties of the object function [kml]=set(kml,varargin) kmlref=feval(class(kml)); fnames=fieldnames(kmlref); % loop through each parameter in the input list (comparing to the reference % object in case property types have been changed) for i=1:2:length(varargin) if ismember(varargin{i},fnames) && (i+1 <= length(varargin)) if isa(varargin{i+1},class(kmlref.(varargin{i}))) kml.(varargin{i})=varargin{i+1}; else if ~isempty(inputname(i+1)) warning('Argument ''%s'' for property ''%s'' is a ''%s'' class object, not ''%s''.',... inputname(i+2),varargin{i},class(varargin{i+1}),class(kmlref.(varargin{i}))); else warning('Argument %d for property ''%s'' is a ''%s'' class object, not ''%s''.',... i+2 ,varargin{i},class(varargin{i+1}),class(kmlref.(varargin{i}))); end end else warning('Property ''%s'' for class ''%s'' does not exist.',... varargin{i},class(kmlref)); end end end % write the object function []=kml_write(kml,fid,indent) if ~exist('fid','var') || isempty(fid) fid=1; end if ~exist('indent','var') || isempty(indent) indent=''; end % loop over the styles for i=1:numel(kml) if ~isempty(kml(i).id) fprintf(fid,'%s\n',indent); end end end end