Print.cc
28.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
// -*- mode:C++ ; compile-command: "g++ -I.. -g -c Print.cc" -*-
/*
* Copyright (C) 2005,2014 B. Parisse, Institut Fourier, 38402 St Martin d'Heres
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef IN_GIAC
#include <giac/first.h>
#else
#include "first.h"
#endif
#include <string>
#ifdef HAVE_LIBFLTK
#include "Print.h"
#include <FL/Fl.H>
#include <FL/fl_draw.H>
#include <FL/Fl_Window.H>
#include <FL/fl_ask.H>
#include <FL/Fl_Hold_Browser.H>
#include <FL/Fl_Value_Input.H>
#include <FL/Fl_Return_Button.H>
#include "History.h"
#include "Equation.h"
#include "Graph.h"
#include "Graph3d.h"
#include "Tableur.h"
#include <iostream>
#include <fstream>
using namespace std;
using namespace giac;
#ifdef FL_DEVICE
//#include <FL/Fl_Printer.H>
#include <FL/Fl_PS_Printer.H>
#ifdef WIN32
#include <FL/Fl_GDI_Printer.H>
#endif
#include <FL/fl_printer_chooser.H>
#include "Fl_PS_Printer.cxx"
#ifdef WIN32
#include "Fl_GDI_Printer.cxx"
#endif
#define Fl_PostScript_Graphics_Driver Fl_PS_Printer
#define Fl_PostScript_File_Device Fl_PS_Printer
#define Fl_PrintDevice Fl_Printer
#else // FL_DEVICE
#include <FL/Fl_PostScript.H>
#define Fl_PrintDevice Fl_Paged_Device
#endif // FL_DEVICE
#ifndef NO_NAMESPACE_XCAS
namespace xcas {
#endif // ndef NO_NAMESPACE_XCAS
#ifdef FL_DEVICE
double pixel_scale=0.21*FL_MM; // 1000 pixels=21 cm
#else
double FL_MM=1.0;
double FL_INCH=23.0;
double pixel_scale=1; // should be fixed to work with scales
#endif
int change_background_color(Fl_Widget * w,int c,int newc){
int oldc=w->color();
if (oldc==c)
w->color(newc);
if (Fl_Group * g=dynamic_cast<Fl_Group *>(w)){
int n=g->children();
for (int i=0;i<n;++i)
change_background_color(g->child(i),c,newc);
}
return oldc;
}
#ifdef Fl_Printer_H
#ifdef FL_DEVICE
int printer_format=Fl_Printer::A4;
#else
int printer_format=Fl_Paged_Device::A4;
#endif
#else // Fl_Printer_H
int printer_format=-1;
#endif // Fl_Printer_H
bool printer_landscape=false;
#ifdef FL_DEVICE
unsigned ck_page_height(Fl_Printer * p){
int h=p->page_height();
if (h<=0){
cerr << "Bad page height " << h << endl;
h=806;
}
}
unsigned ck_page_width(Fl_Printer * p){
int w=p->page_width();
if (w<=0){
cerr << "Bad page width " << w << endl;
w=559;
}
}
void print_newpage(Fl_Printer * p){
if (printer_landscape)
p->page(printer_format | Fl_Printer::LANDSCAPE);
else
p->page(printer_format);
}
void Flv_Table_Gen_widget_print(Flv_Table_Gen * g,Fl_Printer * p,bool eps){
print_newpage(p);
double margin=FL_INCH;
int hp=int((ck_page_height(p)-2*margin)/pixel_scale);
int wp=int((ck_page_width(p)-2*margin)/pixel_scale);
g->resize(0,0,wp,hp);
int i=0,j=0; // current row/column
for (;j<g->cols()-1;){
if (i || j)
print_newpage(p);
g->row(g->rows());
g->col(g->cols());
g->select_start_row(g->rows());
g->select_start_col(g->cols());
g->redraw();
g->row(i);
g->col(j);
g->select_start_row(i);
g->select_start_col(j);
g->redraw();
p->place(0.0, 0.0, margin,margin, pixel_scale);
fl_draw(g);
i = g->get_row(100,hp-20);
i = max(i,g->get_row(100,hp-25));
i = max(i,g->get_row(95,hp-20));
i = max(i,g->get_row(95,hp-25));
if (i<0)
i=g->rows();
if (i>=g->rows()-3){
i=0;
g->row(i);
j=g->get_col(wp-30,hp-20);
j=max(j,g->get_col(wp-30,hp-25));
j=max(j,g->get_col(wp-35,hp-20));
j=max(j,g->get_col(wp-35,hp-25));
if (j<0)
j=g->cols();
}
}
}
void Equation_widget_print(Equation * g,Fl_Printer * p,bool eps){
print_newpage(p);
int x=g->x(),y=g->y();//,h=g->h(),w=g->w();
eqwdata e=Equation_total_size(g->data);
double margin=FL_INCH;
int hp=int((ck_page_height(p)-2*margin)/pixel_scale);
int wp=int((ck_page_width(p)-2*margin)/pixel_scale);
g->resize(x,y,wp,hp);
int np=e.dy/hp;
for (int i=0;i<=np;++i){
if (i)
print_newpage(p);
//if (i)
//p->page(Fl_Printer::A4);
// fprintf(f,"%sPage: %d %d\n","%%",i+1,i+1);
g->xleft=e.x;
g->ytop=e.y+e.dy-i*hp;
p->place(g->xleft, 0, margin,margin, pixel_scale);
fl_draw(g);
}
}
void Graph2d3d_widget_print(Graph2d3d * i,Fl_Printer * p,bool eps){
Graph3d * g3=dynamic_cast<Graph3d *>(i);
if (g3){
if (Fl_PS_Printer * ps=dynamic_cast<Fl_PS_Printer * >(p))
g3->printing=ps->file();
}
int x=i->x(),y=i->y(),w=i->w(),h=i->h();
if (eps){
i->resize(0,0,w,h);
p->place(0.0,0.0,0.0,0.0,pixel_scale);
}
else {
print_newpage(p);
double margin=FL_INCH;
int hp=int((ck_page_height(p)-2*margin)/pixel_scale);
int wp=int((ck_page_width(p)-2*margin)/pixel_scale);
if (wp*h<hp*w)
i->resize(0,0,wp,(h*wp)/w);
else
i->resize(0,0,(hp*w)/h,hp);
p->place(0.0, 0.0, margin,margin, pixel_scale);
}
fl_draw(i);
i->resize(x,y,w,h);
if (g3)
g3->printing=0;
}
void generic_widget_print(Fl_Widget * i,Fl_Printer * p,bool eps){
int x=i->x(),y=i->y(),w=i->w(),h=i->h();
if (eps){
i->resize(0,0,w,h);
p->place(0.0,0.0,0.0,0.0,pixel_scale);
}
else {
print_newpage(p);
double margin=FL_INCH;
int hp=int((ck_page_height(p)-2*margin)/pixel_scale);
int wp=int((ck_page_width(p)-2*margin)/pixel_scale);
if (wp*h<hp*w)
i->resize(0,0,wp,(h*wp)/w);
else
i->resize(0,0,(hp*w)/h,hp);
p->place(0.0, 0.0, margin,margin, pixel_scale);
}
fl_draw(i);
i->resize(x,y,w,h);
}
void Fl_Text_Editor_widget_print(Fl_Text_Editor * g,Fl_Printer * p,bool eps){
print_newpage(p);
Fl_Text_Buffer * b=g->buffer();
double margin=FL_INCH;
int hp=int((ck_page_height(p)-2*margin)/pixel_scale);
int wp=int((ck_page_width(p)-2*margin)/pixel_scale);
int endpos=string(b->text()).size();
int nlines=b->count_lines(0,endpos)+1;
int t=g->textsize();
int npoints=nlines*t,np=npoints/hp;
if (npoints%hp)
np += 1;
// np=numbre of pages, adjust hp
int ligneparpage=nlines/np;
if (nlines%np){
ligneparpage +=1 ;
/*
int j=np*ligneparpage-nlines;
// insert blank lines at end
string ins;
for (;j;--j)
ins += " \n";
b->insert(endpos-1,ins.c_str());
*/
}
hp=ligneparpage*t+g->scrollbar_width()+10;
g->resize(0,0,wp,hp);
for (int i=0;i<np;++i){
if (i)
print_newpage(p);
if (i==np-1)
g->resize(0,0,wp,(nlines-i*ligneparpage)*t+g->scrollbar_width()+10);
g->scroll(i*ligneparpage+1,0);
p->place(0.0, 0.0, margin,margin, pixel_scale);
fl_draw(g);
}
}
void setgraph3dprintstate(Fl_Widget * widget,FILE * stream,bool hidemouseparam){
Fl_Group * g=dynamic_cast<Fl_Group *>(widget);
if (!g)
return;
int n=g->children();
for (int i=0;i<n;++i){
Fl_Widget * wid = g->child(i);
if (Fl_Group * gr=dynamic_cast<Fl_Group * >(wid))
setgraph3dprintstate(gr,stream,hidemouseparam);
if (Graph2d3d * gr=dynamic_cast<Graph2d3d * >(wid)){
if (gr->mouse_param_group){
Fl_Group * G=gr->parent();
if (stream){
if (hidemouseparam)
gr->mouse_param_group->hide();
}
else {
gr->mouse_param_group->show();
if (G){ // restore correct sizes
gr->resize(gr->x(),gr->y(),G->w()+G->x()-gr->x()-gr->legende_size,gr->h());
gr->resize_mouse_param_group(gr->legende_size);
}
}
}
if (Graph3d * gr3=dynamic_cast<Graph3d * >(wid))
gr3->printing=stream;
}
}
}
// scan s children for last y() <= pos
int scan(Fl_Group * s,int pos,int hp){
if (s->y()+s->h()<=pos)
return s->y()+s->h();
int n=s->children(),i;
int curpos=0;
for (i=0;i<n;++i){
int y=s->child(i)->y();
if (y>pos)
break;
else
curpos=y;
}
if (curpos<pos-hp/3)
return pos;
else
return curpos;
}
void History_Pack_widget_print(History_Pack * g,Fl_Printer *p,bool eps){
// Save parent widget and position
Fl_Group * gp=g->parent();
if (!gp)
return;
int pos=gp->find(g);
print_newpage(p);
int x=g->x(),y=g->y(),h=g->h(),w=g->w();
double margin=FL_INCH;
int hp=int((ck_page_height(p)-2*margin)/pixel_scale);
int wp=int((ck_page_width(p)-2*margin)/pixel_scale);
// Create a scroll group of size hp/wp and put g in it
Fl_Group::current(0);
Fl_Window * win = new Fl_Window(0,0,wp,hp);
Fl_Scroll * s = new Fl_Scroll(0,0,wp,hp);
s->end();
win->end();
s->color(g->color());
s->box(FL_FLAT_BOX);
s->add(g);
g->Fl_Group::resize(0,0,wp-g->labelsize(),h);
g->resize();
int ypos=0,newpos=0;
for (;ypos<h;){
if (ypos)
print_newpage(p);
#ifdef _HAVE_FL_UTF8_HDR_
s->scroll_to(0,0);
#else
s->position(0,0);
#endif
newpos=scan(g,ypos+hp,hp);
s->resize(0,0,wp,newpos-ypos);
#ifdef _HAVE_FL_UTF8_HDR_
s->scroll_to(0,ypos);
#else
s->position(0,ypos);
#endif
p->place(0.0,0, margin,margin, pixel_scale);
fl_draw(s);
ypos = newpos;
}
// Restore g in parent widget
g->Fl_Group::resize(x,y,w,h);
g->resize();
gp->insert(*g,pos);
delete s;
}
void inner_widget_print(Fl_Widget * widget,Fl_Printer * p,bool eps){
if (History_Pack * f=dynamic_cast<History_Pack *>(widget)){
History_Pack_widget_print(f,p,eps);
return ;
}
if (Fl_Text_Editor * b=dynamic_cast<Fl_Text_Editor *>(widget)){
Fl_Text_Editor_widget_print(b,p,eps);
return;
}
if (Equation * g = dynamic_cast<Equation *> (widget)){
Equation_widget_print(g,p,eps);
return;
}
if (Graph2d3d * i=dynamic_cast<Graph2d3d *>(widget)){
Graph2d3d_widget_print(i,p,eps);
return;
}
if (Flv_Table_Gen * t=dynamic_cast<Flv_Table_Gen *>(widget)){
Flv_Table_Gen_widget_print(t,p,eps);
return;
}
generic_widget_print(widget,p,eps);
/*
if (Fl_Group * gr=dynamic_cast<Fl_Group *>(widget)){
// print all elements of the group
int n=gr->children();
for (int i=0;i<n;++i)
inner_widget_print(gr->child(i),p,eps);
return;
}
*/
}
void in_widget_print(Fl_Widget * widget,Fl_Printer * p,bool eps){
if (!widget) return;
bool screen_capture=false;
if (dynamic_cast<Fl_Window *>(widget))
screen_capture=true;
if (!screen_capture)
change_background_color(widget,Xcas_background_color,7);
Fl_Output_Device * c = p->set_current();
int x=widget->x(),y=widget->y(),h=widget->h(),w=widget->w();
inner_widget_print(widget,p,eps);
widget->resize(x,y,w,h);
if (!screen_capture){
change_background_color(widget,7,Xcas_background_color);
set_colors(widget);
}
c->set_current();
}
#else // FL_DEVICE
#ifdef Fl_Printer_H
void print_newpage(Fl_PrintDevice * p){
p->start_page();
}
void endpage(Fl_PrintDevice *p){
p->end_page();
}
void compute_w_h(Fl_PrintDevice *p,double margin,double pixel_scale,int & wp,int &hp){
p->printable_rect(&wp,&hp);
if (wp<=1){
cerr << "Bad width " << wp << endl;
wp=559;
}
if (hp<=1){
cerr << "Bad height " << hp << endl;
hp=806;
}
}
void do_print(Fl_Widget * w,Fl_PrintDevice *p,double margin,double pixel_scale){
p->print_widget(w,0,0);
}
void Flv_Table_Gen_widget_print(Flv_Table_Gen * g,Fl_PrintDevice * p,bool eps){
print_newpage(p);
double margin=FL_INCH;
int hp,wp;
compute_w_h(p,margin,pixel_scale,wp,hp);
g->resize(0,0,wp,hp);
int i=0,j=0; // current row/column
for (;j<g->cols()-1;){
if (i || j)
print_newpage(p);
g->row(g->rows());
g->col(g->cols());
g->select_start_row(g->rows());
g->select_start_col(g->cols());
g->redraw();
g->row(i);
g->col(j);
g->select_start_row(i);
g->select_start_col(j);
g->redraw();
do_print(g,p,margin,pixel_scale);
endpage(p);
i = g->get_row(100,hp-20);
i = max(i,g->get_row(100,hp-25));
i = max(i,g->get_row(95,hp-20));
i = max(i,g->get_row(95,hp-25));
if (i<0)
i=g->rows();
if (i>=g->rows()-3){
i=0;
g->row(i);
j=g->get_col(wp-30,hp-20);
j=max(j,g->get_col(wp-30,hp-25));
j=max(j,g->get_col(wp-35,hp-20));
j=max(j,g->get_col(wp-35,hp-25));
if (j<0)
j=g->cols();
}
}
}
void Equation_widget_print(Equation * g,Fl_PrintDevice * p,bool eps){
print_newpage(p);
int x=g->x(),y=g->y();//,h=g->h(),w=g->w();
eqwdata e=Equation_total_size(g->data);
double margin=FL_INCH;
int hp,wp;
compute_w_h(p,margin,pixel_scale,wp,hp);
g->resize(x,y,wp,hp);
int np=e.dy/hp;
for (int i=0;i<=np;++i){
if (i)
print_newpage(p);
//if (i)
//p->page(Fl_PrintDevice::A4);
// fprintf(f,"%sPage: %d %d\n","%%",i+1,i+1);
g->xleft=e.x;
g->ytop=e.y+e.dy-i*hp;
p->print_widget(g,g->xleft,0);
endpage(p);
}
}
class ps_file_device:public Fl_PostScript_File_Device {
public:
Fl_PostScript_Graphics_Driver * driver() { return Fl_PostScript_File_Device::driver(); };
ps_file_device():Fl_PostScript_File_Device(){};
};
void Graph2d3d_widget_print(Graph2d3d * i,Fl_PrintDevice * p,bool eps){
Graph3d * g3=dynamic_cast<Graph3d *>(i);
if (g3){
if (ps_file_device * ps=dynamic_cast<ps_file_device * >(p)){
g3->printing=ps->driver()->file();
}
}
int x=i->x(),y=i->y(),w=i->w(),h=i->h();
if (eps){
i->resize(0,0,w,h);
print_newpage(p);
do_print(i,p,0,pixel_scale);
}
else {
print_newpage(p);
double margin=FL_INCH;
int hp,wp;
compute_w_h(p,margin,pixel_scale,wp,hp);
if (wp*h<hp*w)
i->resize(0,0,wp,(h*wp)/w);
else
i->resize(0,0,(hp*w)/h,hp);
do_print(i,p,margin,pixel_scale);
endpage(p);
}
i->resize(x,y,w,h);
if (g3)
g3->printing=0;
}
void generic_widget_print(Fl_Widget * i,Fl_PrintDevice * p,bool eps){
int x=i->x(),y=i->y(),w=i->w(),h=i->h();
if (eps){
print_newpage(p);
i->resize(0,0,w,h);
do_print(i,p,0,pixel_scale);
// endpage(p);
}
else {
print_newpage(p);
double margin=FL_INCH;
int hp,wp;
compute_w_h(p,margin,pixel_scale,wp,hp);
if (wp*h<hp*w)
i->resize(0,0,wp,(h*wp)/w);
else
i->resize(0,0,(hp*w)/h,hp);
do_print(i,p,margin,pixel_scale);
endpage(p);
}
i->resize(x,y,w,h);
}
void Fl_Text_Editor_widget_print(Fl_Text_Editor * g,Fl_PrintDevice * p,bool eps){
print_newpage(p);
Fl_Text_Buffer * b=g->buffer();
double margin=FL_INCH;
int hp,wp;
compute_w_h(p,margin,pixel_scale,wp,hp);
int endpos=string(b->text()).size();
int nlines=b->count_lines(0,endpos)+1;
int t=g->textsize();
int npoints=nlines*t,np=npoints/hp;
if (npoints%hp)
np += 1;
// np=numbre of pages, adjust hp
int ligneparpage=nlines/np;
if (nlines%np){
ligneparpage +=1 ;
/*
int j=np*ligneparpage-nlines;
// insert blank lines at end
string ins;
for (;j;--j)
ins += " \n";
b->insert(endpos-1,ins.c_str());
*/
}
hp=ligneparpage*t+g->scrollbar_width()+10;
g->resize(0,0,wp,hp);
for (int i=0;i<np;++i){
if (i)
print_newpage(p);
if (i==np-1)
g->resize(0,0,wp,(nlines-i*ligneparpage)*t+g->scrollbar_width()+10);
g->scroll(i*ligneparpage+1,0);
do_print(g,p,margin,pixel_scale);
endpage(p);
}
}
// also show or hide mouse param group
void setgraph3dprintstate(Fl_Widget * widget,FILE * stream,bool hidemouseparam){
Fl_Group * g=dynamic_cast<Fl_Group *>(widget);
if (!g)
return;
int n=g->children();
for (int i=0;i<n;++i){
Fl_Widget * wid = g->child(i);
if (Fl_Group * gr=dynamic_cast<Fl_Group * >(wid))
setgraph3dprintstate(gr,stream,hidemouseparam);
if (Graph2d3d * gr=dynamic_cast<Graph2d3d * >(wid)){
if (gr->mouse_param_group){
Fl_Group * G=gr->parent();
if (stream){
if (hidemouseparam)
gr->mouse_param_group->hide();
}
else {
gr->mouse_param_group->show();
if (G){ // restore correct sizes
gr->resize(gr->x(),gr->y(),G->w()+G->x()-gr->x()-gr->legende_size,gr->h());
gr->resize_mouse_param_group(gr->legende_size);
}
}
}
if (Graph3d * gr3=dynamic_cast<Graph3d * >(wid))
gr3->printing=stream;
}
}
}
// scan s children for last y() <= pos
int scan(Fl_Group * s,int pos,int hp){
if (s->y()+s->h()<=pos)
return s->y()+s->h();
int n=s->children(),i;
int curpos=0;
for (i=0;i<n;++i){
int y=s->child(i)->y();
if (y>pos)
break;
else
curpos=y;
}
if (curpos<pos-hp/3)
return pos;
else
return curpos;
}
void History_Pack_widget_print(History_Pack * g,Fl_PrintDevice *p,bool eps){
// Save parent widget and position
Fl_Group * gp=g->parent();
if (!gp)
return;
int pos=gp->find(g);
print_newpage(p);
int x=g->x(),y=g->y(),h=g->h(),w=g->w();
double margin=FL_INCH;
int hp,wp;
compute_w_h(p,margin,pixel_scale,wp,hp);
// Create a scroll group of size hp/wp and put g in it
Fl_Group::current(0);
Fl_Window * win = new Fl_Window(0,0,wp,hp);
Fl_Scroll * s = new Fl_Scroll(0,0,wp,hp);
s->end();
win->end();
s->color(g->color());
s->box(FL_FLAT_BOX);
s->add(g);
g->Fl_Group::resize(0,0,wp-g->labelsize(),h);
g->resize();
int ypos=0,newpos=0;
for (;ypos<h;){
if (ypos)
print_newpage(p);
#ifdef _HAVE_FL_UTF8_HDR_
s->scroll_to(0,0);
#else
s->position(0,0);
#endif
newpos=scan(g,ypos+hp,hp);
s->resize(0,0,wp,newpos-ypos);
#ifdef _HAVE_FL_UTF8_HDR_
s->scroll_to(0,ypos);
#else
s->position(0,ypos);
#endif
do_print(s,p,margin,pixel_scale);
endpage(p);
ypos = newpos;
}
// Restore g in parent widget
g->Fl_Group::resize(x,y,w,h);
g->resize();
gp->insert(*g,pos);
delete s;
}
void inner_widget_print(Fl_Widget * widget,Fl_PrintDevice * p,bool eps){
if (History_Pack * f=dynamic_cast<History_Pack *>(widget)){
History_Pack_widget_print(f,p,eps);
return ;
}
if (Fl_Text_Editor * b=dynamic_cast<Fl_Text_Editor *>(widget)){
Fl_Text_Editor_widget_print(b,p,eps);
return;
}
if (Equation * g = dynamic_cast<Equation *> (widget)){
Equation_widget_print(g,p,eps);
return;
}
if (Graph2d3d * i=dynamic_cast<Graph2d3d *>(widget)){
Graph2d3d_widget_print(i,p,eps);
return;
}
if (Flv_Table_Gen * t=dynamic_cast<Flv_Table_Gen *>(widget)){
Flv_Table_Gen_widget_print(t,p,eps);
return;
}
generic_widget_print(widget,p,eps);
/*
if (Fl_Group * gr=dynamic_cast<Fl_Group *>(widget)){
// print all elements of the group
int n=gr->children();
for (int i=0;i<n;++i)
inner_widget_print(gr->child(i),p,eps);
return;
}
*/
}
void in_widget_print(Fl_Widget * widget,Fl_PrintDevice * p,bool eps){
if (!widget) return;
bool screen_capture=false;
if (dynamic_cast<Fl_Window *>(widget))
screen_capture=true;
if (!screen_capture)
change_background_color(widget,Xcas_background_color,7);
int x=widget->x(),y=widget->y(),h=widget->h(),w=widget->w();
inner_widget_print(widget,p,eps);
widget->resize(x,y,w,h);
if (!screen_capture){
change_background_color(widget,7,Xcas_background_color);
set_colors(widget);
}
}
#endif // Fl_Printer_H
#endif // FL_DEVICE
#ifdef WIN32
string ps_preview="!";
#else
#ifdef __APPLE__
string ps_preview="open"; // "/Applications/Preview.app/Contents/MacOS/Preview";
#else
string ps_preview="gv";
#endif
#endif
bool new_widget_size(int & neww,int & newh){
static Fl_Window * w = 0;
static Fl_Value_Input * fw=0, *fh=0,* pxl=0;
static Fl_Return_Button * button0 = 0 ;
static Fl_Button * button1 =0;
if (!w){
int dx=300, dy=100;
Fl_Group::current(0);
w=new Fl_Window(dx,dy);
fw=new Fl_Value_Input(dx/4,2,dx/4-2,dy/3-4,gettext("Width"));
fw->tooltip(gettext("Width in pixels for export"));
fh=new Fl_Value_Input(3*dx/4,2,dx/4-2,dy/3-4,gettext("Height"));
fh->tooltip(gettext("Height in pixels for export"));
pxl=new Fl_Value_Input(3*dx/4,2+dy/3,dx/4-2,dy/3-4,gettext("Pixel size"));
pxl->tooltip(gettext("Pixel size in mm"));
button0 = new Fl_Return_Button(2,2+2*dy/3,dx/2-4,dy/3-4);
button0->shortcut(0xff0d);
button0->label(gettext("OK"));
button1 = new Fl_Button(dx/2+2,2+2*dy/3,dx/2-4,dy/3-4);
button1->shortcut(0xff1b);
button1->label(gettext("Cancel"));
w->end();
w->resizable(w);
w->label(gettext("Size in pixels for export"));
}
fw->value(neww);
fh->value(newh);
pxl->value(pixel_scale/FL_MM);
int r=-1;
w->set_modal();
w->show();
w->hotspot(w);
Fl::focus(w);
for (;;) {
Fl_Widget *o = Fl::readqueue();
if (!o) Fl::wait();
else {
if (o == button0) {r = 0; break;}
if (o == button1) {r = 1; break;}
if (o == w) { r=1; break; }
}
}
w->hide();
if (r)
return false;
neww=int(std::max(1.0,fw->value()));
newh=int(std::max(1.0,fh->value()));
pixel_scale=pxl->value()*FL_MM;
return true;
}
void widget_ps_print(Fl_Widget * widget,const std::string & fname0,bool eps,int pngpdf,bool preview,bool hidemouseparam,bool askusersize){
if (!eps)
pngpdf=0;
#ifdef Fl_Printer_H
// Fl_PrintDevice * p = fl_printer_chooser();
int x=widget->x(),y=widget->y(),w=widget->w(),h=widget->h(),neww(giacmin(w,570)),newh(h*double(neww)/w);
if (!askusersize && neww==570)
newh=300;
if (eps){
if (askusersize && !new_widget_size(neww,newh))
return;
widget->resize(x,y,neww,newh);
}
string fname1=replace(fname0,' ','_');
if (fname1.empty())
fname1="session";
if (fname1[0]=='<')
fname1="session";
string fname(remove_extension(fname1)+(eps?".eps":".ps"));
if (!eps || pngpdf){
char * filename = file_chooser(eps?"Print to EPS/PNG/PDF file":"Print to PS file",eps?"*.eps":"*.ps",fname.c_str());
if(!filename) return;
fname=remove_extension(filename)+(eps?".eps":".ps");
}
FILE * f = fopen(fname.c_str(),"w");
if(!f) return;
Fl_PrintDevice * p;
#ifdef FL_DEVICE
if (eps)
p= new Fl_PS_Printer(f, 3,0,0,int(widget->w()*pixel_scale),int(widget->h()*pixel_scale));
else
p=new Fl_PS_Printer(f, 3);
#else
ps_file_device * ptr=new ps_file_device();
if (!ptr) return;
ptr->driver()->pw_=eps?int(widget->w()*pixel_scale):0;
ptr->driver()->ph_=eps?int(widget->h()*pixel_scale):0;
ptr->start_job(f,eps?0:3);
p=ptr;
#endif
if (p){
// Scan all graph3d widget inside and move their state to printing=p stream
#ifdef FL_DEVICE
if (Fl_PostScript_File_Device * ps=dynamic_cast<Fl_PostScript_File_Device * >(p)){
setgraph3dprintstate(widget,ps->file(),hidemouseparam);
}
#else
if (ps_file_device * ps=dynamic_cast<ps_file_device * >(p)){
setgraph3dprintstate(widget,ps->driver()->file(),hidemouseparam);
}
#endif
in_widget_print(widget,p,eps);
#ifndef FL_DEVICE
p->end_job();
#endif
// Scan all graph3d widget inside and move their state to printing=true
setgraph3dprintstate(widget,0,false);
#ifdef FL_DEVICE
delete p;
#else
delete ptr;
#endif
}
fclose(f); //we need close file here
if (getenv("GIAC_PREVIEW"))
ps_preview=getenv("GIAC_PREVIEW");
#ifdef WIN32
if (ps_preview=="!"){
ps_preview="/cygdrive/c/";
if (getenv("XCAS_ROOT")){
string s(getenv("XCAS_ROOT"));
if (s.substr(0,10)=="/cygdrive/")
ps_preview[10]=s[10];
}
ps_preview +="Program\\ Files/Ghostgum/gsview/gsview32.exe";
}
pngpdf |= 0x4;
#endif
// translate into png, (inside GIMP Image->Transform->rotate, not anymore)
// inside latex use includegraphics[width=\textwidth{filename}
// FIXME add pstopnm pnmtopng libnetpbm to the window mac distributions
if (eps){
widget->resize(x,y,w,h);
#ifndef WIN32 // def __APPLE__
if (pngpdf & 0x1)
system_no_deprecation(("convert "+fname+" "+remove_extension(fname)+".png &").c_str());
if (pngpdf & 0x2)
system_no_deprecation(("convert "+fname+" "+remove_extension(fname)+".pdf &").c_str());
if (pngpdf & 0x4)
system_no_deprecation(("convert "+fname+" "+remove_extension(fname)+".jpg &").c_str());
#else
#ifdef WIN32
if (pngpdf & 0x4)
system_no_deprecation((xcasroot()+"pstopnm -stdout -portrait '"+fname+"' | "+xcasroot()+"pnmtojpeg > '"+remove_extension(fname)+".jpg'").c_str());
if (pngpdf & 0x1)
system_no_deprecation((xcasroot()+"pstopnm -stdout -portrait '"+fname+"' | "+xcasroot()+"pnmtopng > '"+remove_extension(fname)+".png' &").c_str());
if (pngpdf & 0x2){
// epstopdf is a perl script, it won't work wo perl
system_no_deprecation(("cp -f '"+fname+"' tmpeps.eps && epstopdf tmpeps.eps && cp -f tmpeps.pdf '"+remove_extension(fname)+".pdf' &").c_str());
}
#else // not used anymore, assuming convert is avail. on linux
if (pngpdf & 0x1)
system_no_deprecation(("pstopnm -stdout -portrait "+fname+" | pnmtopng > "+remove_extension(fname)+".png &").c_str());
if (pngpdf & 0x2)
system_no_deprecation(("epstopdf "+fname+" &").c_str());
if (pngpdf & 0x4)
system_no_deprecation(("pstopnm -stdout -portrait "+fname+" | pnmtojpeg > "+remove_extension(fname)+".jpg &").c_str());
#endif
#endif
}
// Preview
if (ps_preview!="no" && preview){
#ifdef WIN32
system_browser_command(fname);
/*
string fn=absolute_path(fname);
if (system_no_deprecation((((ps_preview+" ")+fn)+" &").c_str())){
cerr << (("cygstart.exe '"+remove_extension(fname)+".jpg' &").c_str()) << endl;
system_no_deprecation((xcasroot()+"cygstart.exe '"+remove_extension(fname)+".jpg' &").c_str());
}
*/
#else
system_no_deprecation((((ps_preview+" ")+fname)+" &").c_str());
#endif
}
if (eps && pngpdf){
fname=remove_path(remove_extension(fname));
unsigned fnames=fname.size();
static string tmp;
tmp=fname+".eps/.png ready for import.\nUse \\includegraphics[width=\\textwidth]{"+fname+"}\nwhere [] is optional, width may also be e.g. 10cm\ninside your latex document, with header\n\\usepackage{graphicx}\n(PNG export requires pstopnm and pnmtopng)";
if (Xcas_help_output){
Xcas_help_output->value(tmp.c_str());
Xcas_help_output->position(32+fnames,68+2*fnames);
Fl::copy(Xcas_help_output->Fl_Output::value()+32+fnames,36+fnames,0);
Fl::copy(Xcas_help_output->Fl_Output::value()+32+fnames,36+fnames,1);
Fl::focus(Xcas_help_output);
}
else
fl_message("%s",tmp.c_str());
}
#endif
}
void widget_print(Fl_Widget * widget){
#ifdef Fl_Printer_H
#ifdef FL_DEVICE
Fl_PrintDevice * p = fl_printer_chooser();
if (p){
// Scan all graph3d widget inside and move their state to printing=p stream
if (Fl_PostScript_Graphics_Driver * ps=dynamic_cast<Fl_PostScript_Graphics_Driver * >(p))
setgraph3dprintstate(widget,ps->file(),true);
in_widget_print(widget,p,false);
delete p;
// Scan all graph3d widget inside and move their state to printing=true
setgraph3dprintstate(widget,0,false);
}
#else
Fl_Printer * p = new Fl_Printer();
if (p->start_job(1))
return; // unable to print
if (p){
// Scan all graph3d widget inside and move their state to printing=p stream
if (Fl_PostScript_Graphics_Driver * ps=dynamic_cast<Fl_PostScript_Graphics_Driver * >(p))
setgraph3dprintstate(widget,ps->file(),true);
in_widget_print(widget,p,false);
p->end_job();
delete p;
// Scan all graph3d widget inside and move their state to printing=true
setgraph3dprintstate(widget,0,false);
}
#endif
#endif
}
#ifndef NO_NAMESPACE_XCAS
} // namespace xcas
#endif // ndef NO_NAMESPACE_XCAS
#endif // HAVE_LIBFLTK