Download this file

106 lines (80 with data), 3.5 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
classdef Panel < uix.Panel
%uiextras.Panel Show one element inside a panel
%
% obj = uiextras.Panel() creates a standard UIPANEL object but with
% automatic management of the contained widget or layout. The
% properties available are largely the same as the builtin UIPANEL
% object. Where more than one child is added, the currently visible
% child is determined using the SelectedChild property.
%
% obj = uiextras.Panel(param,value,...) also sets one or more
% property values.
%
% See the <a href="matlab:doc uiextras.Panel">documentation</a> for more detail and the list of properties.
%
% Examples:
% >> f = figure();
% >> p = uiextras.Panel( 'Parent', f, 'Title', 'A Panel', 'Padding', 5 );
% >> uicontrol( 'Parent', p, 'Background', 'r' )
%
% >> f = figure();
% >> p = uiextras.Panel( 'Parent', f, 'Title', 'A Panel', 'Padding', 5 );
% >> b = uiextras.HBox( 'Parent', p, 'Spacing', 5 );
% >> uicontrol( 'Style', 'listbox', 'Parent', b, 'String', {'Item 1','Item 2'} );
% >> uicontrol( 'Parent', b, 'Background', 'b' );
% >> set( b, 'Sizes', [100 -1] );
%
% See also: uipanel
% uiextras.BoxPanel
% uiextras.HBox
% Copyright 2009-2014 The MathWorks, Inc.
% $Revision: 979 $ $Date: 2014-09-28 14:26:12 -0400 (Sun, 28 Sep 2014) $
properties( Hidden, Access = public, Dependent )
Enable % deprecated
SelectedChild
end
methods
function obj = Panel( varargin )
% Call uix constructor
obj@uix.Panel( varargin{:} )
% Auto-parent
if ~ismember( 'Parent', varargin(1:2:end) )
obj.Parent = gcf();
end
end % constructor
end % structors
methods
function value = get.Enable( ~ )
% Warn
% warning( 'uiextras:Deprecated', ...
% 'Property ''Enable'' will be removed in a future release.' )
% Return
value = 'on';
end % get.Enable
function set.Enable( ~, value )
% Check
assert( ischar( value ) && any( strcmp( value, {'on','off'} ) ), ...
'uiextras:InvalidPropertyValue', ...
'Property ''Enable'' must be ''on'' or ''off''.' )
% Warn
% warning( 'uiextras:Deprecated', ...
% 'Property ''Enable'' will be removed in a future release.' )
end % set.Enable
function value = get.SelectedChild( obj )
% Warn
% warning( 'uiextras:Deprecated', ...
% 'Property ''SelectedChild'' will be removed in a future release.' )
% Get
if isempty( obj.Contents_ )
value = [];
else
value = 1;
end
end % get.SelectedChild
function set.SelectedChild( ~, ~ )
% Warn
% warning( 'uiextras:Deprecated', ...
% 'Property ''SelectedChild'' will be removed in a future release.' )
end % set.SelectedChild
end % accessors
end % classdef