Mercurial > hg > octave-nkf
annotate scripts/plot/util/findobj.m @ 18575:dca6ecfd622c gui-release
findobj.m: let leading negation work (bug #41588).
* findobj.m: keep track of extranegation.
author | Sergey Plotnikov <seryozha.plotnikov@gmail.com> |
---|---|
date | Tue, 18 Feb 2014 18:21:55 +0100 |
parents | d63878346099 |
children | c446da1da9ff |
rev | line source |
---|---|
17744
d63878346099
maint: Update copyright notices for release.
John W. Eaton <jwe@octave.org>
parents:
17572
diff
changeset
|
1 ## Copyright (C) 2007-2013 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 () |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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:
17119
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}) |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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:
17119
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:
17119
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:
17119
diff
changeset
|
28 ## Find graphics object with specified property values. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
29 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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 | |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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:
17119
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:
17119
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:
17119
diff
changeset
|
40 ## conditions are returned. |
6935 | 41 ## |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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:
17119
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:
17119
diff
changeset
|
44 ## argument. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
45 ## |
17281
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17238
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:
17238
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:
17238
diff
changeset
|
48 ## of children is: |
6935 | 49 ## |
50 ## @example | |
17478
0ad2f93fd83c
doc: Fix a typo in findobj docstring.
Rik <rik@octave.org>
parents:
17312
diff
changeset
|
51 ## findobj (@var{hlist}, "-depth", 3, @var{prop_name}, @var{prop_value}) |
6935 | 52 ## @end example |
53 ## | |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
54 ## Specifying a depth @var{d} of 0, limits the search to the set of objects |
17281
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17238
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:
17238
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} |
17281
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17238
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:
17238
diff
changeset
|
60 ## @qcode{"-and"}, @qcode{"-or"}, |
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17238
diff
changeset
|
61 ## @qcode{"-xor"}, @qcode{"-not"}. |
6935 | 62 ## |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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:
17119
diff
changeset
|
64 ## property values, where property values that match |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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:
17119
diff
changeset
|
66 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
67 ## Finally, objects may be matched by property name only by using the |
17281
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17238
diff
changeset
|
68 ## @qcode{"-property"} option. |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
69 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
70 ## Implementation Note: The search only includes objects with visible |
17281
bc924baa2c4e
doc: Add new @qcode macro for code samples which are quoted.
Rik <rik@octave.org>
parents:
17238
diff
changeset
|
71 ## handles (HandleVisibility = @qcode{"on"}). @xref{XREFfindall,,findall}, to |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
diff
changeset
|
72 ## search for all objects including hidden ones. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
17119
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 = {}; | |
18575
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
122 extranegation = []; |
6935 | 123 pname = {}; |
124 pvalue = {}; | |
125 np = 1; | |
126 na = 1; | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
127 operatorprecedence = {"-not", "-and", "-or", "-xor"}; |
6935 | 128 |
129 while (na <= numel (args)) | |
130 regularexpression(np) = 0; | |
131 property(np) = 0; | |
18575
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
132 if (numel (extranegation) < np) |
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
133 extranegation(np) = false; |
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
134 endif |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7208
diff
changeset
|
135 logicaloperator{np} = "and"; |
7208 | 136 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
|
137 if (strcmpi (args{na}, "-regexp")) |
10549 | 138 if (na + 2 <= numel (args)) |
139 regularexpression(np) = 1; | |
140 na = na + 1; | |
141 pname{np} = args{na}; | |
142 na = na + 1; | |
143 pvalue{np} = args{na}; | |
144 na = na + 1; | |
145 np = np + 1; | |
146 else | |
147 error ("findobj: inconsistent number of arguments"); | |
148 endif | |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7208
diff
changeset
|
149 elseif (strcmpi (args{na}, "-property")) |
10549 | 150 if (na + 1 <= numel (args)) |
151 na = na + 1; | |
152 property(np) = 1; | |
153 pname{np} = args{na}; | |
154 na = na + 1; | |
155 pvalue{np} = []; | |
156 np = np + 1; | |
157 else | |
158 error ("findobj: inconsistent number of arguments"); | |
159 endif | |
8506 | 160 elseif (! strcmp (args{na}(1), "-")) |
10549 | 161 ## Parameter/value pairs. |
162 if (na + 1 <= numel (args)) | |
163 pname{np} = args{na}; | |
164 na = na + 1; | |
165 pvalue{np} = args{na}; | |
166 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
|
167 if (na <= numel (args)) |
10549 | 168 if (ischar (args{na})) |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
169 if (any (strcmpi (args{na}, operatorprecedence))) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
170 logicaloperator{np} = args{na}(2:end); |
10549 | 171 na = na+1; |
172 endif | |
173 else | |
174 error ("findobj: properties and options must be strings"); | |
175 endif | |
176 else | |
177 logicaloperator{np} = "and"; | |
178 endif | |
179 np = np + 1; | |
180 else | |
181 error ("findobj: inconsistent number of arguments"); | |
182 endif | |
6935 | 183 else |
14552
86854d032a37
maint: miscellaneous style fixes for .m files
John W. Eaton <jwe@octave.org>
parents:
14327
diff
changeset
|
184 if (strcmpi (args{na}, "-not")) |
18575
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
185 extranegation(np) = true; |
10549 | 186 endif |
187 na = na + 1; | |
6935 | 188 endif |
189 else | |
190 error ("findobj: properties and options must be strings"); | |
191 endif | |
192 endwhile | |
193 | |
194 numpairs = np - 1; | |
17307
4448cc742880
Use '!' not operator rather than '~' in core m-files.
Rik <rik@octave.org>
parents:
17281
diff
changeset
|
195 if (! isempty (logicaloperator)) |
16673 | 196 logicaloperator = shift (logicaloperator, 1); |
197 endif | |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
198 |
8506 | 199 ## Load all objects which qualify for being searched. |
6935 | 200 idepth = 0; |
201 h = handles; | |
202 while (numel (handles) && ! (idepth >= depth)) | |
203 children = []; | |
204 for n = 1 : numel (handles) | |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
205 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
|
206 endfor |
6935 | 207 handles = children; |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
208 h = [h; children]; |
6935 | 209 idepth = idepth + 1; |
210 endwhile | |
211 | |
212 if (numpairs > 0) | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
213 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
|
214 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
|
215 p = get (h(nh)); |
6935 | 216 for np = 1 : numpairs |
10549 | 217 fields = fieldnames (p); |
218 fieldindex = find (strcmpi (fields, pname{np}), 1); | |
219 if (numel (fieldindex)) | |
6935 | 220 pname{np} = fields{fieldindex}; |
221 if (property(np)) | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
222 match(nh,np) = true; |
6935 | 223 else |
224 if (regularexpression(np)) | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
225 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
|
226 if (isempty (foo)) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
227 match(nh,np) = false; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
228 else |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
229 match(nh,np) = foo; |
7151 | 230 endif |
6935 | 231 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
|
232 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
|
233 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
|
234 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
|
235 match(nh,np) = (pvalue{np} == p.(pname{np})); |
10549 | 236 else |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
237 match(nh,np) = isequal (pvalue{np}, p.(pname{np})); |
10549 | 238 endif |
6935 | 239 else |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
240 match(nh,np) = false; |
6935 | 241 endif |
242 endif | |
10549 | 243 else |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
244 match(nh,np) = false; |
10549 | 245 endif |
18575
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
246 if (extranegation(np)) |
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
247 match(nh,np) = ! match(nh,np); |
dca6ecfd622c
findobj.m: let leading negation work (bug #41588).
Sergey Plotnikov <seryozha.plotnikov@gmail.com>
parents:
17744
diff
changeset
|
248 endif |
6935 | 249 endfor |
250 endfor | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
251 |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
252 if (numpairs > 1) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
253 for no = 1 : numel (operatorprecedence) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
254 pairs = find (strcmp (logicaloperator(2:end), ... |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
255 operatorprecedence{no}(2:end))); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
256 for np = sort (pairs, "descend") |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
257 if (no == 1) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
258 match(:,np+1) = ! match(:,np+1); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
259 logicaloperator(np+1) = {"and"}; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
260 else |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
261 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
|
262 match(:,np+1)); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
263 logicaloperator(np+1) = []; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
264 match(:,np+1) = []; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
265 numpairs = numpairs - 1; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
266 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
267 if (numpairs < 2) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
268 break; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
269 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
270 endfor |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
271 if (numpairs < 2) |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
272 break; |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
273 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
274 endfor |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
275 endif |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
276 else |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
277 match = true (numel (h), 1); |
6935 | 278 endif |
279 | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
280 h = h(match); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
281 h = h(:); |
6935 | 282 endfunction |
13096 | 283 |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
284 |
16673 | 285 %!test |
286 %! hf = figure ("visible", "off"); | |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
287 %! unwind_protect |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
288 %! h = findobj (gca (), "-property", "foo"); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
289 %! assert (isempty (h)); |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
290 %! unwind_protect_cleanup |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
291 %! close (hf); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
292 %! end_unwind_protect |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
293 |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
294 %!test |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
295 %! hf = figure ("visible", "off"); |
16673 | 296 %! unwind_protect |
297 %! h = plot (1:10); | |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
298 %! set (h, "tag", "foobar"); |
16673 | 299 %! g = findobj (gcf (), "tag", "foobar", "type", "line", "color", [0 0 1]); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
300 %! assert (g, h); |
16673 | 301 %! unwind_protect_cleanup |
302 %! close (hf); | |
303 %! 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
|
304 |
13096 | 305 %!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
|
306 %! 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
|
307 %! unwind_protect |
13096 | 308 %! l = line; |
13111
ebb42fb2da04
Various fixes for tests in scripts/plot
Kai Habel <kai.habel@gmx.de>
parents:
13096
diff
changeset
|
309 %! obj = findobj (hf, "type", "line"); |
13096 | 310 %! assert (l, obj); |
13111
ebb42fb2da04
Various fixes for tests in scripts/plot
Kai Habel <kai.habel@gmx.de>
parents:
13096
diff
changeset
|
311 %! 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
|
312 %! 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
|
313 %! assert (isempty (findobj (hf, "type", "xyzxyz"))); |
13096 | 314 %! unwind_protect_cleanup |
315 %! close (hf); | |
316 %! 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
|
317 |
16673 | 318 %!test |
319 %! hf = figure ("visible", "off"); | |
320 %! unwind_protect | |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
321 %! subplot (2,2,1); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
322 %! imagesc (rand (10)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
323 %! subplot (2,2,2); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
324 %! surf (peaks); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
325 %! subplot (2,2,3); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
326 %! contour (peaks); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
327 %! subplot (2,2,4); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
328 %! plot (peaks); |
16673 | 329 %! h1 = findobj (gcf (), "-regexp", "Type", "image|surface|hggroup"); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
330 %! h2 = findobj (gcf (), "Type", "image", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
331 %! "-or", "Type", "surface", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
332 %! "-or", "Type", "hggroup"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
333 %! assert (h2, h1); |
16673 | 334 %! unwind_protect_cleanup |
335 %! close (hf); | |
336 %! end_unwind_protect | |
337 | |
16895
b8c37a855074
Modify findobj() to work with cells and structures.
Ben Abbott <bpabbott@mac.com>
parents:
16673
diff
changeset
|
338 %!test |
17107
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
339 %! toolkit = graphics_toolkit ("gnuplot"); |
17119
bd50e0660545
test: Add missing semicolons to suppress output in some plot %!tests.
Rik <rik@octave.org>
parents:
17107
diff
changeset
|
340 %! 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
|
341 %! unwind_protect |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
342 %! h1 = subplot (2,2,1); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
343 %! h2 = subplot (2,2,2); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
344 %! 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:
17122
diff
changeset
|
345 %! h4 = subplot (2,2,4); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
346 %! 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:
17122
diff
changeset
|
347 %! assert (h, h3); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
348 %! unwind_protect_cleanup |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
349 %! close (hf); |
17107
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
350 %! graphics_toolkit (toolkit); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
351 %! end_unwind_protect |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
352 |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
353 %!test |
17107
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
354 %! toolkit = graphics_toolkit ("gnuplot"); |
17119
bd50e0660545
test: Add missing semicolons to suppress output in some plot %!tests.
Rik <rik@octave.org>
parents:
17107
diff
changeset
|
355 %! 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
|
356 %! unwind_protect |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
357 %! 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:
17122
diff
changeset
|
358 %! 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:
17122
diff
changeset
|
359 %! 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:
17122
diff
changeset
|
360 %! 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:
17122
diff
changeset
|
361 %! 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:
17122
diff
changeset
|
362 %! 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
|
363 %! unwind_protect_cleanup |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
364 %! close (hf); |
17107
dbd64c9a16da
Restore graphics toolkit after %!tests that alter it.
Rik <rik@octave.org>
parents:
16905
diff
changeset
|
365 %! graphics_toolkit (toolkit); |
16897
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
366 %! end_unwind_protect |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
367 |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
368 %!test |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
369 %! hf = figure ("visible", "off"); |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
370 %! unwind_protect |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
371 %! h1 = subplot (2, 2, 1); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
372 %! 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
|
373 %! h2 = subplot (2, 2, 2); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
374 %! 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
|
375 %! h3 = subplot (2, 2, 3); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
376 %! 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
|
377 %! h4 = subplot (2, 2, 4); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
378 %! 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:
17122
diff
changeset
|
379 %! h = findobj (hf, "type", "axes", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
380 %! "-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
|
381 %! unwind_protect_cleanup |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
382 %! close (hf); |
21d5e76891fe
Fix typo/bug for "-not" qualifier in findobj(). Add tests.
Ben Abbott <bpabbott@mac.com>
parents:
16895
diff
changeset
|
383 %! end_unwind_protect |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
384 %! 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
|
385 |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
386 %!test |
16900
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
387 %! hf = figure ("visible", "off"); |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
388 %! unwind_protect |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
389 %! ha = axes (); |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
390 %! plot (1:10); |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
391 %! h = findobj (hf, "type", "figure", |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
392 %! "-or", "parent", hf, |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
393 %! "-and", "type", "axes"); |
16900
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
394 %! unwind_protect_cleanup |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
395 %! close (hf) |
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
396 %! end_unwind_protect |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
397 %! assert (h, [hf; ha]) |
16900
434a0b29ab12
Add xtest for findobj() for pecedence of logical operations.
Ben Abbott <bpabbott@mac.com>
parents:
16897
diff
changeset
|
398 |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
399 %!test |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
400 %! hf = figure ("visible", "off"); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
401 %! unwind_protect |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
402 %! set (hf, "tag", "foo"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
403 %! 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:
17122
diff
changeset
|
404 %! 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:
17122
diff
changeset
|
405 %! 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:
17122
diff
changeset
|
406 %! 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:
17122
diff
changeset
|
407 %! 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:
17122
diff
changeset
|
408 %! assert (h, [hf; h4; h2]); |
16905
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
409 %! unwind_protect_cleanup |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
410 %! close (hf); |
562301c71bd3
Respect logical operator precedence for findobj()'s inputs.
Ben Abbott <bpabbott@mac.com>
parents:
16900
diff
changeset
|
411 %! end_unwind_protect |
17238
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
412 |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
413 %!test |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
414 %! hf = figure ("visible", "off"); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
415 %! unwind_protect |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
416 %! hax1 = subplot (2,1,1); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
417 %! hl1 = plot (rand (10,1)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
418 %! hax2 = subplot (2,1,2); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
419 %! hl2 = plot (rand (10,1)); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
420 %! hobj = findobj (hf); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
421 %! 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:
17122
diff
changeset
|
422 %! unwind_protect_cleanup |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
423 %! close (hf); |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
424 %! end_unwind_protect |
3fd617363762
findobj.m: Return handles in hierarchy order rather than sorted order (bug #39767).
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
425 |