]> Creatis software - CreaPhase.git/blob - octave_packages/m/plot/ishghandle.m
update packages
[CreaPhase.git] / octave_packages / m / plot / ishghandle.m
1 ## Copyright (C) 2008-2012 David Bateman
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} ishghandle (@var{h})
21 ## Return true if @var{h} is a graphics handle and false otherwise.
22 ## @end deftypefn
23
24 function retval = ishghandle (h)
25   ## This function is just included for compatibility as Octave has
26   ## no simulink equivalent.
27   retval = ishandle (h);
28 endfunction
29
30 %!test
31 %! hf = figure ("visible", "off");
32 %! unwind_protect
33 %!   assert (ishghandle (hf));
34 %!   assert (!ishghandle (-hf));
35 %!   l = line;
36 %!   ax = gca();
37 %!   assert (ishghandle (ax));
38 %!   assert (!ishghandle (-ax));
39 %!   assert (ishghandle (l));
40 %!   assert (!ishghandle (-l));
41 %!   p = patch;
42 %!   assert (ishghandle (p));
43 %!   assert (!ishghandle (-p));
44 %!   s = surface;
45 %!   assert (ishghandle (s));
46 %!   assert (!ishghandle (-s));
47 %!   t = text;
48 %!   assert (ishghandle (t));
49 %!   assert (!ishghandle (-t));
50 %!   i = image;
51 %!   assert (ishghandle (i));
52 %!   assert (!ishghandle (-i));
53 %!   hg = hggroup;
54 %!   assert (ishghandle (hg));
55 %!   assert (!ishghandle (-hg));
56 %! unwind_protect_cleanup
57 %!   close (hf);
58 %! end_unwind_protect
59