Mercurial > hg > octave-lyh
annotate scripts/plot/close.m @ 16581:fa4a035e0cf4
Add octave_link uiputfile implementation
* libgui/src/dialog.cc, libgui/src/dialog.h
(FileDialog::FileDialog): Change bool multiselect to QString multimode, add mode option of 'create' and set options accordingly.
(QUIWidgetCreator::signal_filedialog): Change bool multiselect to QString multimode.
(QUIWidgetCreator::create_filedialog): Change bool multiselect to QString multimode.
* libgui/src/main-window.cc, libgui/src/main-window.h
(main_window::connect_uiwidget_links): update bool multiselect to QString multimode.
(main_window::handle_create_filedialog): update bool multiselect to QString multimode.
* libgui/src/octave-qt-link.h
(octave_qt_link::do_file_dialog): update bool multiselect to std::string multimode.
* libinterp/interpfcn/octave-link.h
(octave_link::do_file_dialog): update bool multiselect to std::string multimode.
(octave_link::file_dialog): update bool multiselect to std::string multimode.
* scripts/plot/uiputfile.m
(uiputfile): update to call __octave_link_file_dialog__ if octave_link is present.
author | John Donoghue <john.donoghue@ieee.org> |
---|---|
date | Sun, 28 Apr 2013 17:00:00 -0400 |
parents | 5d3a684236b0 |
children | e5ded64def41 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13124
diff
changeset
|
1 ## Copyright (C) 2002-2012 John W. Eaton |
4225 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
4225 | 9 ## |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
4225 | 18 |
19 ## -*- texinfo -*- | |
10793
be55736a0783
Grammarcheck the documentation from m-files.
Rik <octave@nomad.inbox5.com>
parents:
10598
diff
changeset
|
20 ## @deftypefn {Command} {} close |
6257 | 21 ## @deftypefnx {Command} {} close (@var{n}) |
4225 | 22 ## @deftypefnx {Command} {} close all |
6257 | 23 ## @deftypefnx {Command} {} close all hidden |
6895 | 24 ## Close figure window(s) by calling the function specified by the |
25 ## @code{"closerequestfcn"} property for each figure. By default, the | |
26 ## function @code{closereq} is used. | |
27 ## @seealso{closereq} | |
4225 | 28 ## @end deftypefn |
29 | |
30 ## Author: jwe | |
10598
6e1674216b99
close.m: No error on "close([])".
Ben Abbott <bpabbott@mac.com>
parents:
10549
diff
changeset
|
31 ## 2010-05-02 PBig allow empty argument |
4225 | 32 |
33 function retval = close (arg1, arg2) | |
34 | |
6405 | 35 figs = []; |
36 | |
4225 | 37 if (nargin == 0) |
6278 | 38 ## Close current figure. Don't use gcf because that will open a new |
39 ## plot window if one doesn't exist. | |
40 figs = get (0, "currentfigure"); | |
41 if (! isempty (figs) && figs == 0) | |
42 figs = []; | |
43 endif | |
4225 | 44 elseif (nargin == 1) |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7966
diff
changeset
|
45 if (ischar (arg1) && strcmpi (arg1, "all")) |
6405 | 46 close_all_figures (false); |
6257 | 47 elseif (isfigure (arg1)) |
48 figs = arg1; | |
14868
5d3a684236b0
maint: Use Octave coding conventions for cuddling parentheses in scripts directory
Rik <octave@nomad.inbox5.com>
parents:
14363
diff
changeset
|
49 elseif (isempty (arg1)) |
10598
6e1674216b99
close.m: No error on "close([])".
Ben Abbott <bpabbott@mac.com>
parents:
10549
diff
changeset
|
50 figs = []; |
4225 | 51 else |
6257 | 52 error ("close: expecting argument to be \"all\" or a figure handle"); |
4225 | 53 endif |
54 elseif (nargin == 2 | |
10549 | 55 && ischar (arg1) && strcmpi (arg1, "all") |
56 && ischar (arg2) && strcmpi (arg2, "hidden")) | |
6405 | 57 close_all_figures (true); |
4225 | 58 else |
6046 | 59 print_usage (); |
4225 | 60 endif |
61 | |
6257 | 62 for h = figs |
7966
5747be3ac497
Implement closereq as real callback execution
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
63 __go_execute_callback__ (h, "closerequestfcn"); |
6257 | 64 endfor |
65 | |
4225 | 66 if (nargout > 0) |
67 retval = 1; | |
68 endif | |
69 | |
70 endfunction | |
6405 | 71 |
72 function close_all_figures (close_hidden_figs) | |
73 | |
74 while (! isempty (fig = get (0, "currentfigure"))) | |
75 ## handlevisibility = get (fig, "handlevisibility") | |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
7966
diff
changeset
|
76 ## if (close_hidden_figs || ! strcmpi (handlevisibility, "off")) |
6405 | 77 close (fig); |
78 ## endif | |
79 endwhile | |
80 | |
81 endfunction | |
13123
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
82 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
83 |
13123
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
84 %!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:
13123
diff
changeset
|
85 %! hf = figure ("visible", "off"); |
13123
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
86 %! unwind_protect |
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:
13123
diff
changeset
|
87 %! close (hf); |
13123
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
88 %! objs = findobj ("type", "figure"); |
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:
13123
diff
changeset
|
89 %! assert (isempty (intersect (objs, hf))); |
13123
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
90 %! unwind_protect_cleanup |
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:
13123
diff
changeset
|
91 %! if (isfigure (hf)) |
13123
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
92 %! close (hf); |
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
93 %! endif |
6efa1a691713
Add further tests for scripts/plot.
Kai Habel <kai.habel@gmx.de>
parents:
11523
diff
changeset
|
94 %! end_unwind_protect |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
95 |