Mercurial > hg > octave-lyh
annotate scripts/plot/findobj.m @ 17405:0bf2fc8562c9
doc: Update documentation for file and directory functions.
* libinterp/corefcn/dirfns.cc(Fpwd, Freaddir, Fmkdir, Frmdir, Freadlink, Ffnmatch): Redo docstring.
* libinterp/corefcn/dirfns.cc(Fcd): Redo docstring. Return previous working
directory if nargout > 0.
* libinterp/corefcn/dirfns.cc(Flink, Fsymlink, Frename): Redo docstring.
Re-order return values so that highest numbered value is assigned first to
avoid re-sizing octave_value_list each time.
* libinterp/corefcn/syscalls.cc(Flstat, Fmkfifo, FS_ISREG, FS_ISDIR, FS_ISCHR,
FS_ISBLK, FS_ISFIFO, FS_ISLNK, FS_ISSOCK): Redo docstring.
* scripts/general/isdir.m: Add more xrefs to @seealso.
* scripts/miscellaneous/copyfile.m: Add more xrefs to @seealso.
* scripts/miscellaneous/dir.m: Redo docstring.
* scripts/miscellaneous/ls.m: Add more xrefs to @seealso.m.
* scripts/miscellaneous/movefile.m: Add more xrefs to @seealso.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 09 Sep 2013 14:30:31 -0700 |
parents | 088d014a7fe2 |
children | 0ad2f93fd83c |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14001
diff
changeset
|
1 ## Copyright (C) 2007-2012 Ben Abbott |
6935 | 2 ## |
7016 | 3 ## This file is part of Octave. |
6935 | 4 ## |
7016 | 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. | |
6935 | 14 ## |
15 ## You should have received a copy of the GNU General Public License | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
6935 | 18 |
19 ## -*- texinfo -*- | |
10793
be55736a0783
Grammarcheck the documentation from m-files.
Rik <octave@nomad.inbox5.com>
parents:
10549
diff
changeset
|
20 ## @deftypefn {Function File} {@var{h} =} findobj () |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
21 ## @deftypefnx {Function File} {@var{h} =} findobj (@var{prop_name}, @var{prop_value}, @dots{}) |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
22 ## @deftypefnx {Function File} {@var{h} =} findobj (@var{prop_name}, @var{prop_value}, "-@var{logical_op}", @var{prop_name}, @var{prop_value}) |
14327
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
23 ## @deftypefnx {Function File} {@var{h} =} findobj ("-property", @var{prop_name}) |
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
24 ## @deftypefnx {Function File} {@var{h} =} findobj ("-regexp", @var{prop_name}, @var{pattern}) |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
25 ## @deftypefnx {Function File} {@var{h} =} findobj (@var{hlist}, @dots{}) |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
26 ## @deftypefnx {Function File} {@var{h} =} findobj (@var{hlist}, "flat", @dots{}) |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
27 ## @deftypefnx {Function File} {@var{h} =} findobj (@var{hlist}, "-depth", @var{d}, @dots{}) |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
28 ## Find graphics object with specified property values. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
29 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
30 ## The simplest form is |
6935 | 31 ## |
32 ## @example | |
14327
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
33 ## findobj (@var{prop_name}, @var{prop_value}) |
6935 | 34 ## @end example |
35 ## | |
36 ## @noindent | |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
37 ## which returns the handles of all objects which have a property named |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
38 ## @var{prop_name} that has the value @var{prop_value}. If multiple |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
39 ## property/value pairs are specified then only objects meeting all of the |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
40 ## conditions are returned. |
6935 | 41 ## |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
42 ## The search can be limited to a particular set of objects and their |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
43 ## descendants, by passing a handle or set of handles @var{hlist} as the first |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
44 ## argument. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
45 ## |
17289
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
46 ## The depth of the object hierarchy to search can be limited with the |
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
47 ## @qcode{"-depth"} argument. An example of searching only three generations |
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
48 ## of children is: |
6935 | 49 ## |
50 ## @example | |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
51 ## findobj (@var{hlist}, "-depth", @var{d}, @var{prop_name}, @var{prop_value}) |
6935 | 52 ## @end example |
53 ## | |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
54 ## Specifying a depth @var{d} of 0, limits the search to the set of objects |
17289
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
55 ## passed in @var{hlist}. A depth @var{d} of 0 is equivalent to the |
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
56 ## @qcode{"flat"} argument. |
6935 | 57 ## |
14327
4d917a6a858b
doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
58 ## A specified logical operator may be applied to the pairs of @var{prop_name} |
17289
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
59 ## and @var{prop_value}. The supported logical operators are: |
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
60 ## @qcode{"-and"}, @qcode{"-or"}, |
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
61 ## @qcode{"-xor"}, @qcode{"-not"}. |
6935 | 62 ## |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
63 ## Objects may also be matched by comparing a regular expression to the |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
64 ## property values, where property values that match |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
65 ## @code{regexp (@var{prop_value}, @var{pattern})} are returned. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
66 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
67 ## Finally, objects may be matched by property name only by using the |
17289
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
68 ## @qcode{"-property"} option. |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
69 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
70 ## Implementation Note: The search only includes objects with visible |
17289
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17246
diff
changeset
|
71 ## handles (HandleVisibility = @qcode{"on"}). @xref{XREFfindall,,findall}, to |
17126
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
72 ## search for all objects including hidden ones. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17123
diff
changeset
|
73 ## @seealso{findall, allchild, get, set} |
6935 | 74 ## @end deftypefn |
75 | |
7017 | 76 ## Author: Ben Abbott <bpabbott@mac.com> |
77 | |
6935 | 78 function h = findobj (varargin) |
79 | |
80 depth = NaN; | |
81 if (nargin == 0) | |
82 handles = 0; | |
83 n1 = 0; | |
84 else | |
8265
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
85 if (! isempty (varargin{1})) |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
86 if (ishandle (varargin{1}(1))) |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
87 handles = varargin{1}; |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
88 n1 = 2; |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
89 else |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
90 handles = 0; |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
91 n1 = 1; |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
92 endif |
6935 | 93 else |
8265
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
94 ## Return [](0x1) for compatibility. |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
95 h = zeros (0, 1); |
1c213dff76fc
findobj.m: allow handle to be empty
Ben Abbott <bpabbott@mac.com>
parents:
8190
diff
changeset
|
96 return; |
7151 | 97 endif |
6935 | 98 if (n1 <= nargin) |
99 if (ischar (varargin{n1})) | |
10549 | 100 if (strcmpi (varargin{n1}, "flat")) |
101 depth = 0; | |
102 n1 = n1 + 1; | |
103 elseif (strcmpi (varargin{n1}, "-depth")) | |
104 depth = varargin{n1+1}; | |
105 n1 = n1 + 2; | |
106 endif | |
6935 | 107 else |
10549 | 108 error ("findobj: properties and options must be strings"); |
6935 | 109 endif |
110 endif | |
111 endif | |
112 | |
113 if (n1 <= nargin && nargin > 0) | |
114 args = varargin(n1 : nargin); | |
115 else | |
116 args = {}; | |
117 endif | |
118 | |
119 regularexpression = []; | |
120 property = []; | |
121 logicaloperator = {}; | |
122 pname = {}; | |
123 pvalue = {}; | |
124 np = 1; | |
125 na = 1; | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
126 operatorprecedence = {"-not", "-and", "-or", "-xor"}; |
6935 | 127 |
128 while (na <= numel (args)) | |
129 regularexpression(np) = 0; | |
130 property(np) = 0; | |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7208
diff
changeset
|
131 logicaloperator{np} = "and"; |
7208 | 132 if (ischar (args{na})) |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7208
diff
changeset
|
133 if (strcmpi (args{na}, "-regexp")) |
10549 | 134 if (na + 2 <= numel (args)) |
135 regularexpression(np) = 1; | |
136 na = na + 1; | |
137 pname{np} = args{na}; | |
138 na = na + 1; | |
139 pvalue{np} = args{na}; | |
140 na = na + 1; | |
141 np = np + 1; | |
142 else | |
143 error ("findobj: inconsistent number of arguments"); | |
144 endif | |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7208
diff
changeset
|
145 elseif (strcmpi (args{na}, "-property")) |
10549 | 146 if (na + 1 <= numel (args)) |
147 na = na + 1; | |
148 property(np) = 1; | |
149 pname{np} = args{na}; | |
150 na = na + 1; | |
151 pvalue{np} = []; | |
152 np = np + 1; | |
153 else | |
154 error ("findobj: inconsistent number of arguments"); | |
155 endif | |
8506 | 156 elseif (! strcmp (args{na}(1), "-")) |
10549 | 157 ## Parameter/value pairs. |
158 if (na + 1 <= numel (args)) | |
159 pname{np} = args{na}; | |
160 na = na + 1; | |
161 pvalue{np} = args{na}; | |
162 na = na + 1; | |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14552
diff
changeset
|
163 if (na <= numel (args)) |
10549 | 164 if (ischar (args{na})) |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
165 if (any (strcmpi (args{na}, operatorprecedence))) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
166 logicaloperator{np} = args{na}(2:end); |
10549 | 167 na = na+1; |
168 endif | |
169 else | |
170 error ("findobj: properties and options must be strings"); | |
171 endif | |
172 else | |
173 logicaloperator{np} = "and"; | |
174 endif | |
175 np = np + 1; | |
176 else | |
177 error ("findobj: inconsistent number of arguments"); | |
178 endif | |
6935 | 179 else |
10549 | 180 ## This is sloppy ... but works like Matlab. |
14552
86854d032a37
maint: miscellaneous style fixes for .m files
John W. Eaton <jwe@octave.org>
parents:
14327
diff
changeset
|
181 if (strcmpi (args{na}, "-not")) |
10549 | 182 h = []; |
17320
088d014a7fe2
Use semicolon after "return" statement in core m-files.
Rik <rik@octave.org>
parents:
17315
diff
changeset
|
183 return; |
10549 | 184 endif |
185 na = na + 1; | |
6935 | 186 endif |
187 else | |
188 error ("findobj: properties and options must be strings"); | |
189 endif | |
190 endwhile | |
191 | |
192 numpairs = np - 1; | |
17315
4448cc742880
Use '!' not operator rather than '~' in core m-files.
Rik <rik@octave.org>
parents:
17289
diff
changeset
|
193 if (! isempty (logicaloperator)) |
16673 | 194 logicaloperator = shift (logicaloperator, 1); |
195 endif | |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
196 |
8506 | 197 ## Load all objects which qualify for being searched. |
6935 | 198 idepth = 0; |
199 h = handles; | |
200 while (numel (handles) && ! (idepth >= depth)) | |
201 children = []; | |
202 for n = 1 : numel (handles) | |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
203 children = [children; get(handles(n), "children")]; |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
204 endfor |
6935 | 205 handles = children; |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
206 h = [h; children]; |
6935 | 207 idepth = idepth + 1; |
208 endwhile | |
209 | |
210 if (numpairs > 0) | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
211 match = true (numel (h), numpairs); |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14552
diff
changeset
|
212 for nh = 1 : numel (h) |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
213 p = get (h(nh)); |
6935 | 214 for np = 1 : numpairs |
10549 | 215 fields = fieldnames (p); |
216 fieldindex = find (strcmpi (fields, pname{np}), 1); | |
217 if (numel (fieldindex)) | |
6935 | 218 pname{np} = fields{fieldindex}; |
219 if (property(np)) | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
220 match(nh,np) = true; |
6935 | 221 else |
222 if (regularexpression(np)) | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
223 foo = regexp (p.(pname{np}), pvalue{np}, "once"); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
224 if (isempty (foo)) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
225 match(nh,np) = false; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
226 else |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
227 match(nh,np) = foo; |
7151 | 228 endif |
6935 | 229 elseif (numel (p.(pname{np})) == numel (pvalue{np})) |
16895
b8c37a855074
Modify findobj() to work with cells and structures.
Ben Abbott <bpabbott@mac.com>
parents:
16673
diff
changeset
|
230 if (ischar (pvalue{np}) && ischar (p.(pname{np}))) |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
231 match(nh,np) = strcmpi (pvalue{np}, p.(pname{np})); |
16895
b8c37a855074
Modify findobj() to work with cells and structures.
Ben Abbott <bpabbott@mac.com>
parents:
16673
diff
changeset
|
232 elseif (isnumeric (pvalue{np} && isnumeric (p.(pname{np})))) |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
233 match(nh,np) = (pvalue{np} == p.(pname{np})); |
10549 | 234 else |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
235 match(nh,np) = isequal (pvalue{np}, p.(pname{np})); |
10549 | 236 endif |
6935 | 237 else |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
238 match(nh,np) = false; |
6935 | 239 endif |
240 endif | |
10549 | 241 else |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
242 match(nh,np) = false; |
10549 | 243 endif |
6935 | 244 endfor |
245 endfor | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
246 |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
247 if (numpairs > 1) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
248 for no = 1 : numel (operatorprecedence) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
249 pairs = find (strcmp (logicaloperator(2:end), ... |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
250 operatorprecedence{no}(2:end))); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
251 for np = sort (pairs, "descend") |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
252 if (no == 1) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
253 match(:,np+1) = ! match(:,np+1); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
254 logicaloperator(np+1) = {"and"}; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
255 else |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
256 match(:,np) = feval (logicaloperator{np+1}, match(:,np), ... |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
257 match(:,np+1)); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
258 logicaloperator(np+1) = []; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
259 match(:,np+1) = []; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
260 numpairs = numpairs - 1; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
261 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
262 if (numpairs < 2) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
263 break; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
264 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
265 endfor |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
266 if (numpairs < 2) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
267 break; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
268 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
269 endfor |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
270 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
271 else |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
272 match = true (numel (h), 1); |
6935 | 273 endif |
274 | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
275 h = h(match); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
276 h = h(:); |
6935 | 277 endfunction |
13096 | 278 |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
279 |
16673 | 280 %!test |
281 %! hf = figure ("visible", "off"); | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
282 %! unwind_protect |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
283 %! h = findobj (gca (), "-property", "foo"); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
284 %! assert (isempty (h)); |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
285 %! unwind_protect_cleanup |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
286 %! close (hf); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
287 %! end_unwind_protect |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
288 |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
289 %!test |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
290 %! hf = figure ("visible", "off"); |
16673 | 291 %! unwind_protect |
292 %! h = plot (1:10); | |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
293 %! set (h, "tag", "foobar"); |
16673 | 294 %! g = findobj (gcf (), "tag", "foobar", "type", "line", "color", [0 0 1]); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
295 %! assert (g, h); |
16673 | 296 %! unwind_protect_cleanup |
297 %! close (hf); | |
298 %! end_unwind_protect | |
14001
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
13141
diff
changeset
|
299 |
13096 | 300 %!test |
13124
2ea1658ad049
Don't use explicit figure number for tests to avoid interference with any figures opened by user.
Kai Habel <kai.habel@gmx.de>
parents:
13111
diff
changeset
|
301 %! hf = figure ("visible", "off"); |
13141
e81ddf9cacd5
maint: untabify and remove trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
13124
diff
changeset
|
302 %! unwind_protect |
13096 | 303 %! l = line; |
13111
ebb42fb2da04
Various fixes for tests in scripts/plot
Kai Habel <kai.habel@gmx.de>
parents:
13096
diff
changeset
|
304 %! obj = findobj (hf, "type", "line"); |
13096 | 305 %! assert (l, obj); |
13111
ebb42fb2da04
Various fixes for tests in scripts/plot
Kai Habel <kai.habel@gmx.de>
parents:
13096
diff
changeset
|
306 %! assert (gca, findobj (hf, "type", "axes")); |
13124
2ea1658ad049
Don't use explicit figure number for tests to avoid interference with any figures opened by user.
Kai Habel <kai.habel@gmx.de>
parents:
13111
diff
changeset
|
307 %! assert (hf, findobj (hf, "type", "figure")); |
13111
ebb42fb2da04
Various fixes for tests in scripts/plot
Kai Habel <kai.habel@gmx.de>
parents:
13096
diff
changeset
|
308 %! assert (isempty (findobj (hf, "type", "xyzxyz"))); |
13096 | 309 %! unwind_protect_cleanup |
310 %! close (hf); | |
311 %! end_unwind_protect | |
14001
5f0bb45e615c
doc: Update documentation for functions returning a graphics handle h (Bug #34761)
Rik <octave@nomad.inbox5.com>
parents:
13141
diff
changeset
|
312 |
16673 | 313 %!test |
314 %! hf = figure ("visible", "off"); | |
315 %! unwind_protect | |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
316 %! subplot (2,2,1); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
317 %! imagesc (rand (10)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
318 %! subplot (2,2,2); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
319 %! surf (peaks); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
320 %! subplot (2,2,3); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
321 %! contour (peaks); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
322 %! subplot (2,2,4); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
323 %! plot (peaks); |
16673 | 324 %! h1 = findobj (gcf (), "-regexp", "Type", "image|surface|hggroup"); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
325 %! h2 = findobj (gcf (), "Type", "image", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
326 %! "-or", "Type", "surface", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
327 %! "-or", "Type", "hggroup"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
328 %! assert (h2, h1); |
16673 | 329 %! unwind_protect_cleanup |
330 %! close (hf); | |
331 %! end_unwind_protect | |
332 | |
16895
b8c37a855074
Modify findobj() to work with cells and structures.
Ben Abbott <bpabbott@mac.com>
parents:
16673
diff
changeset
|
333 %!test |
17111
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
334 %! toolkit = graphics_toolkit ("gnuplot"); |
17123
bd50e0660545
test: Add missing semicolons to suppress output in some plot %!tests.
Rik <rik@octave.org>
parents:
17111
diff
changeset
|
335 %! hf = figure ("visible", "off"); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
336 %! unwind_protect |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
337 %! h1 = subplot (2,2,1); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
338 %! h2 = subplot (2,2,2); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
339 %! h3 = subplot (2,2,3, "userdata", struct ("foo", "bar")); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
340 %! h4 = subplot (2,2,4); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
341 %! h = findobj (hf, "userdata", struct ("foo", "bar")); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
342 %! assert (h, h3); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
343 %! unwind_protect_cleanup |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
344 %! close (hf); |
17111
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
345 %! graphics_toolkit (toolkit); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
346 %! end_unwind_protect |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
347 |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
348 %!test |
17111
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
349 %! toolkit = graphics_toolkit ("gnuplot"); |
17123
bd50e0660545
test: Add missing semicolons to suppress output in some plot %!tests.
Rik <rik@octave.org>
parents:
17111
diff
changeset
|
350 %! hf = figure ("visible", "off"); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
351 %! unwind_protect |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
352 %! h1 = subplot (2,2,1, "tag", "1"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
353 %! h2 = subplot (2,2,2, "tag", "2"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
354 %! h3 = subplot (2,2,3, "tag", "3"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
355 %! h4 = subplot (2,2,4, "tag", "4"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
356 %! h = findobj (hf, "type", "axes", "-not", "tag", "1"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
357 %! assert (h, [h4; h3; h2]) |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
358 %! unwind_protect_cleanup |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
359 %! close (hf); |
17111
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
360 %! graphics_toolkit (toolkit); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
361 %! end_unwind_protect |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
362 |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
363 %!test |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
364 %! hf = figure ("visible", "off"); |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
365 %! unwind_protect |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
366 %! h1 = subplot (2, 2, 1); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
367 %! set (h1, "userdata", struct ("column", 1, "row", 1)); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
368 %! h2 = subplot (2, 2, 2); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
369 %! set (h2, "userdata", struct ("column", 2, "row", 1)); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
370 %! h3 = subplot (2, 2, 3); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
371 %! set (h3, "userdata", struct ("column", 1, "row", 2)); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
372 %! h4 = subplot (2, 2, 4); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
373 %! set (h4, "userdata", struct ("column", 2, "row", 2)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
374 %! h = findobj (hf, "type", "axes", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
375 %! "-not", "userdata", struct ("column", 1, "row", 1)); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
376 %! unwind_protect_cleanup |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
377 %! close (hf); |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
378 %! end_unwind_protect |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
379 %! assert (h, [h4; h3; h2]) |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
380 |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
381 %!test |
16900
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
382 %! hf = figure ("visible", "off"); |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
383 %! unwind_protect |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
384 %! ha = axes (); |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
385 %! plot (1:10); |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
386 %! h = findobj (hf, "type", "figure", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
387 %! "-or", "parent", hf, |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
388 %! "-and", "type", "axes"); |
16900
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
389 %! unwind_protect_cleanup |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
390 %! close (hf) |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
391 %! end_unwind_protect |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
392 %! assert (h, [hf; ha]) |
16900
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
393 |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
394 %!test |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
395 %! hf = figure ("visible", "off"); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
396 %! unwind_protect |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
397 %! set (hf, "tag", "foo"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
398 %! h1 = subplot (2,2,1, "tag", "foo"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
399 %! h2 = subplot (2,2,2, "tag", "bar"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
400 %! h3 = subplot (2,2,3, "tag", "foo"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
401 %! h4 = subplot (2,2,4, "tag", "bar"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
402 %! h = findobj (hf, "type", "axes", "-xor", "tag", "foo"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
403 %! assert (h, [hf; h4; h2]); |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
404 %! unwind_protect_cleanup |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
405 %! close (hf); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
406 %! end_unwind_protect |
17246
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
407 |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
408 %!test |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
409 %! hf = figure ("visible", "off"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
410 %! unwind_protect |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
411 %! hax1 = subplot (2,1,1); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
412 %! hl1 = plot (rand (10,1)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
413 %! hax2 = subplot (2,1,2); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
414 %! hl2 = plot (rand (10,1)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
415 %! hobj = findobj (hf); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
416 %! assert (hobj, [hf; hax2; hax1; hl2; hl1]); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
417 %! unwind_protect_cleanup |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
418 %! close (hf); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
419 %! end_unwind_protect |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17126
diff
changeset
|
420 |