Mercurial > hg > ltpda
comparison m-toolbox/classes/@constructor/constructor.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % CONSTRUCTOR is a graphical user interface for building LTPDA objects. | |
2 % | |
3 % CALL: constructor | |
4 % constructor(h) % build the model viewer in the figure with handle, h. | |
5 % | |
6 % M Hewitson 24-11-08 | |
7 % | |
8 % $Id: constructor.m,v 1.2 2011/04/08 08:56:35 hewitson Exp $ | |
9 % | |
10 classdef constructor < handle | |
11 | |
12 properties | |
13 handle = []; | |
14 signals = []; | |
15 end | |
16 properties (SetAccess=private, GetAccess=private) | |
17 Gproperties = []; | |
18 SigSelected = []; | |
19 end | |
20 | |
21 methods | |
22 function mainfig = constructor(varargin) | |
23 % Build the main figure | |
24 mainfig = buildMainfig(mainfig, varargin{:}); | |
25 % Make the GUI visible. | |
26 set(mainfig.handle,'Visible','on') | |
27 end | |
28 end % End public methods | |
29 | |
30 methods (Static=true) | |
31 % Main figure | |
32 varargout = cb_mainfigClose(varargin) | |
33 varargout = cb_selectClass(varargin) | |
34 varargout = cb_selectSet(varargin) | |
35 varargout = buildObj(varargin) | |
36 end | |
37 | |
38 methods (Access = private) | |
39 varargout = buildMainfig(varargin); | |
40 end | |
41 | |
42 methods (Access = public) | |
43 end | |
44 | |
45 end | |
46 | |
47 % END |