6257
|
1 ## Copyright (C) 2005 John W. Eaton |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
|
19 |
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} drawnow () |
|
22 ## Display the current graphics. |
|
23 ## @end deftypefn |
|
24 |
|
25 ## Author: jwe |
|
26 |
|
27 function drawnow (term, file) |
|
28 |
|
29 ## Use this instead of calling gcf to avoid creating a figure. |
|
30 |
|
31 h = get (0, "currentfigure"); |
|
32 |
|
33 if (h) |
|
34 |
|
35 f = get (h); |
|
36 |
|
37 plot_stream = f.__plot_stream__; |
|
38 |
|
39 if (isempty (plot_stream)) |
6286
|
40 cmd = gnuplot_binary (); |
|
41 if (gnuplot_use_title_option ()) |
6289
|
42 cmd = sprintf ("%s -title \"Figure %d\"", cmd, h); |
6286
|
43 endif |
|
44 plot_stream = popen (cmd, "w"); |
6257
|
45 if (plot_stream < 0) |
|
46 error ("drawnow: failed to open connection to gnuplot"); |
|
47 else |
|
48 set (h, "__plot_stream__", plot_stream); |
|
49 if (isempty (getenv ("DISPLAY"))) |
|
50 fprintf (plot_stream, "set terminal dumb\n;"); |
|
51 endif |
|
52 endif |
|
53 endif |
|
54 |
|
55 if (nargin == 2) |
|
56 fprintf (plot_stream, |
|
57 "set terminal push; set terminal %s; set output '%s'\n", |
|
58 term, file); |
|
59 endif |
|
60 |
|
61 if (nargin == 2 || strcmp (f.visible, "on")) |
|
62 __uiobject_draw_figure__ (f, plot_stream); |
|
63 endif |
|
64 |
|
65 __request_drawnow__ (false); |
|
66 |
|
67 if (nargin == 2) |
|
68 fputs (plot_stream, "set terminal pop; set output;\n"); |
|
69 endif |
|
70 |
|
71 else |
|
72 |
|
73 __request_drawnow__ (false); |
|
74 |
|
75 endif |
|
76 |
|
77 |
|
78 endfunction |