source: Sophya/trunk/SophyaPI/PIext/pistdimgapp.cc@ 1880

Last change on this file since 1880 was 1856, checked in by ansari, 24 years ago

adaptation PIHisto2D et sa fenetre de controle a la nouvelle mode de gestion de controles specialisees - Reza 11/01/2002

  • Property svn:executable set to *
File size: 41.8 KB
Line 
1#include "machdefs.h"
2#include <stdlib.h>
3#include <stdio.h>
4#include <string.h>
5
6#include <typeinfo>
7
8#include <string>
9#include <vector>
10
11#include "strutil.h"
12#include "timing.h"
13#include "perrors.h"
14#include "ctimer.h"
15
16#include "psighand.h"
17
18#include "cimage.h" // pour pouvoir faire extract
19
20#include "pistdimgapp.h"
21// #include "pihisto2d.h"
22#include "psfile.h"
23#include "piimgtools.h"
24#include "pidrwtools.h"
25#include "piaxestools.h"
26
27#include "pistzwin.h"
28
29#include "piinit.h"
30#include "piversion.h"
31#include "piaversion.h"
32
33
34static char ImgDir[256];
35static char WorkDir[256];
36// Initialiseur
37static PIAppInitiator * glst_piai = NULL;
38
39// Pour la creation de fenetre info (about piapp)
40static void createInfoWindow(PIStdImgApp* app);
41static void deleteInfoWindow();
42static void showInfoWindow(PIStdImgApp* app);
43static void hideInfoWindow(PIStdImgApp* app);
44
45/* ........................................................... */
46/* Classe PIStdImgApp */
47/* ........................................................... */
48
49/* --Methode-- */
50PIStdImgApp::PIStdImgApp(int narg, char* arg[])
51: PIApplication(420, 320, narg, arg)
52{
53
54// Les menus
55m[0] = new PIMenu(Menubar(),"Fichier");
56m[0]->AppendItem("About piapp", 10150);
57m[0]->AppendItem("Open-Fits", 10120);
58m[0]->AppendItem("Open-PPF", 10130);
59// m[0]->AppendItem("Options", 10101);
60m[0]->AppendItem("Help", 10100);
61m[0]->AppendSeparator();
62m[0]->AppendItem("Exit", 10105);
63
64m[1] = new PIMenu(Menubar(),"Objets");
65m[1]->AppendItem("ObjectManager", 10201);
66m[1]->AppendItem("OpenOutPPF", 10220);
67m[1]->AppendItem("CloseOutPPF", 10230);
68m[1]->AppendItem("Delete CurWdg", 10270);
69
70m[2] = new PIMenu(Menubar(),"Tools");
71m[2]->AppendItem("Show ImageTools", 10301);
72m[2]->AppendItem("Show DrawerTools", 10302);
73m[2]->AppendItem("Show AxesTools", 10303);
74m[2]->AppendItem("CxxExecutorWindow", 10304);
75m[2]->AppendItem("Ext.Pave", 10311);
76m[2]->SetSensitivityMsg(10311, false);
77m[2]->AppendItem("Ext.Pave+Org", 10312);
78m[2]->SetSensitivityMsg(10312, false);
79m[2]->AppendItem("Cuts X,Y", 10313);
80m[2]->SetSensitivityMsg(10313, false);
81mc = new PIMenu(m[2], "StackTools");
82mc->AppendItem("DispNext", 10320);
83mc->AppendItem("Blink 0.5s", 10321);
84mc->AppendItem("Blink 1s", 10322);
85mc->AppendItem("Blink 2s", 10324);
86mc->AppendItem("Stop Blink", 10329);
87mc->AppendItem("RemoveCurrent", 10330);
88m[2]->AppendPDMenu(mc);
89m[2]->SetSensitivity("StackTools", false);
90
91m[3] = new PIMenu(Menubar(),"Window");
92m[3]->AppendItem("StackWindow", 10400);
93m[3]->AppendItem("Window", 10411);
94m[3]->AppendItem("Window 2x1", 10421);
95m[3]->AppendItem("Window 1x2", 10412);
96m[3]->AppendItem("Window 2x2", 10422);
97m[3]->AppendItem("Window 3x1", 10431);
98m[3]->AppendItem("Window 3x3", 10433);
99m[3]->AppendItem("Cur->LastWdg", 10441);
100m[3]->AppendItem("Close CurWin", 10460);
101
102m[4] = new PIMenu(Menubar(),"PostScript");
103m[4]->AppendItem("OpenPS", 10501);
104m[4]->AppendItem("ClosePS", 10505);
105m[4]->AppendItem("Window->PS", 10511);
106m[4]->AppendItem("Image->PS", 10515);
107m[4]->AppendItem("Window->EPS", 10512);
108m[4]->AppendItem("Image->EPS", 10516);
109m[4]->SetSensitivityMsg(10515, false);
110m[4]->SetSensitivityMsg(10516, false);
111
112m[5] = new PIMenu(Menubar(),"Special");
113m[5]->AppendItem("CloseAll", 10601);
114m[5]->AppendCheckItem("Red.Out/Err", 10602);
115m[5]->AppendCheckItem("Catch SigFPE", 10603);
116m[5]->AppendCheckItem("Catch SigSEGV", 10604);
117m[5]->AppendCheckItem("ObjMgr Verb", 10605);
118m[5]->AppendItem("CxxExecOption", 10606);
119
120m[6] = new PIMenu(Menubar(),"Modules");
121
122AppendMenu(m[0]);
123AppendMenu(m[1]);
124AppendMenu(m[2]);
125AppendMenu(m[3]);
126AppendMenu(m[4]);
127AppendMenu(m[5]);
128// AppendMenu(m[6]); Menu Modules vide pour le moment
129
130int scsx, scsy;
131ScreenSize(scsx, scsy);
132if (scsy <= 600) mFgScSz = 0;
133else if (scsy <= 800) mFgScSz = 1;
134else if (scsy <= 1024) mFgScSz = 2;
135else mFgScSz = 3;
136int msx = 420+mFgScSz*60;
137int msy = 320+mFgScSz*40;
138MainWin()->SetSize(msx, msy);
139
140int bss = 100+mFgScSz*15;
141gimv = new PIPixmap(MainWin(), "GloV", bss, bss, 5, 5);
142gimv->SetBinding(PIBK_fixed,PIBK_fixed,PIBK_free, PIBK_free);
143zoom = new PIPixmap(MainWin(), "Zoom", bss, bss, bss+10, 5);
144zoom->SetBinding(PIBK_fixed,PIBK_fixed,PIBK_free, PIBK_free);
145cmapv = new PICMapView(MainWin(), "CMapView", msx-10, 14+mFgScSz*2, 5, bss+10);
146cmapv->SetBinding(PIBK_fixed,PIBK_fixed,PIBK_fixed, PIBK_free);
147
148int cpy = bss+10+14+mFgScSz*2+5;
149
150// Creation d'une console avec gestion des commandes
151mCons = new PIConsole(MainWin(), "Console", 30200, 512, 132, msx, msy-cpy, 0, cpy );
152mCons->SetBinding(PIBK_fixed,PIBK_fixed,PIBK_fixed, PIBK_fixed);
153mCons->AcceptCmd(true, 50);
154redirecout = false;
155// RedirectStdOutErr(true); pas par defaut
156
157mObjMgr = new NamedObjMgr;
158mCmd = new PIACmd(mObjMgr, this);
159
160// Pas trop de message de la part de NamedObjMgr
161m[5]->SetStateMsg(10605, false);
162mObjMgr->SetVerbose(false);
163
164char* varenv;
165ImgDir[0] = WorkDir[0] = '\0';
166if ( (varenv=getenv("PEIDA_IMAGES")) != NULL ) strncpy(ImgDir, varenv, 256);
167if ( (varenv=getenv("PEIDA_WORK")) != NULL ) strncpy(WorkDir, varenv, 256);
168
169pfc_fits = new PIFileChooser(this,"FITS-FileChooser", 10125);
170pfc_ppf = new PIFileChooser(this,"PPF-FileChooser", 10135);
171pfc_ps = new PIFileChooser(this,"PS-FileChooser", 10525);
172
173mObjmgrw = new ObjMgrWind(this);
174mPpinmgrw = new PPInMgrWind(this);
175
176// Attention : A faire apres creation de ObjMgrWind !!!
177mObjMgr->SetImgApp(this);
178
179// Gestion des feneteres widgets et drawers
180mWId = mDId = mBWId = 0;
181mCurWin = NULL;
182mCurWdg = NULL;
183mLastWdg = NULL;
184mGrW = NULL;
185mStW = NULL;
186mGrIdx = mStIdx = -1;
187
188mFCMsg = 0;
189mFgCWImg = false;
190
191// Gestion fichiers PS
192num_eps = 0;
193name_ps = "";
194name_ps = "pia.ps";
195mpsfile = new PSFile(name_ps.c_str(),PI_Portrait, PI_A4, 2., 2.);
196
197// Gestion OUT-PPF
198mPpfout = NULL;
199name_outppf = "";
200
201// Attributs graphiques courants
202mFCol = mBCol = PI_NotDefColor;
203mLAtt = PI_NotDefLineAtt;
204mFName = PI_DefaultFont;
205mFSz = PI_NotDefFontSize;
206mFAtt = PI_NotDefFontAtt;
207mMSz = -1;
208mMrk = PI_NotDefMarker;
209mCmapid = CMAP_OTHER;
210mRevCmap = false;
211mZoom = 0;
212mAxesFlags = kBoxAxes | kExtTicks | kLabels;
213SetXYLimits(-1, 1., -1., 1.);
214mFXYlim = false;
215SetInsetLimits(0.4, 0.6, 0.4, 0.6);
216SetImageCenterPosition(-1,-1);
217mFImgCenter = false;
218maXlog = maYlog = false;
219mAddTitle = true;
220SaveGraphicAtt();
221
222// Initialisation
223glst_piai = new PIAppInitiator(this);
224
225char buff[128];
226mCons->AddStr(" ............ starting piapp .............\n", PIVA_Blue );
227#ifdef SANS_EVOLPLANCK
228sprintf(buff, "Version: piapp=%g PI=%g PEIDA=%g \n", (double)PIAPP_VERSIONNUMBER,
229 (double)PI_VERSIONNUMBER, (float)PeidaVersion());
230#else
231sprintf(buff, "Version: piapp=%g PI=%g SOPHYA=%g \n", (double)PIAPP_VERSIONNUMBER,
232 (double)PI_VERSIONNUMBER, glst_piai->Version());
233#endif
234mCons->AddStr(buff, PIVA_Blue );
235mCons->AddStr(" ..........................................\n", PIVA_Blue );
236// PrintPeidaVersion();
237
238pfc_fits->SetPath(ImgDir);
239pfc_ppf->SetPath(WorkDir);
240pfc_ps->SetPath(WorkDir);
241
242SetReady();
243}
244
245/* --Methode-- */
246PIStdImgApp::~PIStdImgApp()
247{
248int i;
249
250// On inactive la fenetre principale
251// Sinon, ca peut provoquer un SEGV ds delete de console ?? - Reza 07/2000
252MainWin()->Hide();
253
254// Destrucion de tous les objets de NameObjMgr
255string patt = "/*/*";
256mObjMgr->DelObjects(patt, true);
257
258delete mc;
259for(i=0; i<7; i++)
260 if (m[i]) delete m[i];
261
262WindMList::iterator it;
263for(it = mWList.begin(); it != mWList.end(); it++) delete (*it).second;
264
265delete mObjMgr;
266delete mCmd;
267
268delete zoom;
269delete gimv;
270delete cmapv;
271
272delete pfc_fits;
273delete pfc_ppf;
274delete pfc_ps;
275
276delete mCons;
277
278delete mObjmgrw;
279delete mPpinmgrw;
280
281deleteInfoWindow();
282
283// Les fichiers
284if (mpsfile) delete mpsfile;
285if (mPpfout) delete mPpfout;
286
287if (glst_piai) delete glst_piai; glst_piai = NULL;
288}
289
290/* --Methode-- */
291void PIStdImgApp::Process(PIMessage msg, PIMsgHandler* sender, void* data)
292{
293PIWdg *sndw;
294PIMessage tmsg, smm;
295
296tmsg = msg;
297msg = UserMsg(msg);
298smm = ModMsg(tmsg);
299
300//printf("SuperDebug: msg=%d Mod=%d State=%d\n", (int)msg, (int)smm, (int)GetState());
301if ((GetState()) && (msg != mFCMsg)) { PIBeep(); return; }
302
303// Messages active-window
304if (smm == PIMsg_Active)
305 {
306 sndw = dynamic_cast<PIWdg *>(sender);
307 switch(sndw->kind())
308 {
309 case PIWindow::ClassId :
310 mCurWin = dynamic_cast<PIWindow *>(sndw);
311 break;
312
313 case PIScDrawWdg::ClassId :
314 case PIDraw3DWdg::ClassId :
315 mCurWdg = dynamic_cast<PIBaseWdg *>(sender);
316// cerr << "*DBG11* ImgTools -> NonSensitive " << sndw->kind() << endl;
317 if (mFgCWImg) {
318// cerr << "*DBG* ImgTools -> NonSensitive " << endl;
319 m[2]->SetSensitivityMsg(10311, false);
320 m[2]->SetSensitivityMsg(10312, false);
321 m[2]->SetSensitivityMsg(10313, false);
322 m[4]->SetSensitivityMsg(10515, false);
323 m[4]->SetSensitivityMsg(10516, false);
324 mFgCWImg = false;
325 }
326 break;
327 case PIImage::ClassId :
328 mCurWdg = dynamic_cast<PIBaseWdg *>(sender);
329 if (!mFgCWImg) {
330// cerr << "*DBG* ImgTools -> Sensitive " << endl;
331 m[2]->SetSensitivityMsg(10311, true);
332 m[2]->SetSensitivityMsg(10312, true);
333 m[2]->SetSensitivityMsg(10313, true);
334 m[4]->SetSensitivityMsg(10515, true);
335 m[4]->SetSensitivityMsg(10516, true);
336 mFgCWImg = true;
337 }
338 break;
339 /*
340 default :
341 mCurWdg = NULL;
342 if (mFgCWImg) {
343 m[2]->SetSensitivityMsg(10311, false);
344 m[2]->SetSensitivityMsg(10312, false);
345 m[2]->SetSensitivityMsg(10313, false);
346 m[4]->SetSensitivityMsg(10515, false);
347 m[4]->SetSensitivityMsg(10516, false);
348 mFgCWImg = false;
349 }
350 break;
351 */
352 }
353 }
354// Message window-close
355else if (smm == PIMsg_Close)
356 {
357 sndw = (PIWdg *)sender;
358 if(sndw->kind() == PIWindow::ClassId)
359 {
360 mCurWin = (PIWindow *)sender;
361 if (mCurWin == mStW) m[2]->SetSensitivity("StackTools", false);
362 DeleteWindow(mCurWin);
363 }
364 else
365 printf("PIStdImgApp/Bug ? CloseMsd received from NonWindow (%d %d %lx) \n",
366 (int)tmsg, (int)sndw->kind(), (long)sender);
367 }
368
369// Traitement des messages des menus
370else if ( (msg >= 10100) && (msg < 10200) ) MBProcess1(msg, sender, data);
371else if ( (msg >= 10200) && (msg < 10300) ) MBProcess2(msg, sender, data);
372else if ( (msg >= 10300) && (msg < 10400) ) MBProcess3(msg, sender, data);
373else if ( (msg >= 10400) && (msg < 10500) ) MBProcess4(msg, sender, data);
374else if ( (msg >= 10500) && (msg < 10600) ) MBProcess5(msg, sender, data);
375else if ( (msg >= 10600) && (msg < 10700) ) MBProcess6(msg, sender, data);
376else if ( msg == 30200 ) { // Objet PIConsole
377 string s = mCons->GetCmdString();
378 // string s2 = "\nExecuting " + s + "\n";
379 mCons->AddStr("Cmd> ", PIVA_Blue, false);
380 // s2 = s + "\n";
381 mCons->AddStr(s.c_str(), PIVA_Blue|PIVA_Bold, false);
382 mCons->AddChar('\n', PIVA_Def, true);
383 SetBusy();
384#ifdef SANS_EVOLPLANCK
385 TRY {
386 mCmd->Interpret(s);
387 } CATCH(merr) {
388 fflush(stdout);
389 cout << endl;
390 cerr << endl;
391 string es = PeidaExc(merr);
392 cerr << "PIStdImgApp::Process()/ Cmd->Do() Exception :" << es << " (" << merr << ")" << endl ;
393 }
394#else
395 try {
396 mCmd->Interpret(s);
397 }
398 catch ( PThrowable & exc ) {
399 cerr << "\n PIStdImgApp::Process()/ Cmd->Interpret() Exception :"
400 << (string)typeid(exc).name() << " Msg= "
401 << exc.Msg() << endl;
402 cout << endl;
403 }
404 catch ( ... ) {
405 cerr << "\n PIStdImgApp::Process()/ Cmd->Interpret() Catched Exception ..."
406 << endl;
407 cout << endl;
408 }
409
410#endif
411 SetReady();
412 }
413
414else printf("PIStdImgApp::Process() BUG?? Msg %d (%d-%d) \n",
415 (int)tmsg,(int)msg,(int)smm);
416
417
418return;
419}
420
421/* --Methode-- */
422void PIStdImgApp::SetReady()
423{
424mCons->SetSensitive();
425gimv->SetSensitive();
426PIApplication::SetReady();
427}
428
429/* --Methode-- */
430void PIStdImgApp::SetBusy()
431{
432mCons->SetUnSensitive();
433gimv->SetUnSensitive();
434PIApplication::SetBusy();
435// Attention : Appel XSync specifique X11 - en attendant multi-thread
436XSync(PIXDisplay(), False);
437}
438
439/* --Methode-- */
440void PIStdImgApp::SetBlocked()
441{
442mCons->SetUnSensitive();
443gimv->SetUnSensitive();
444PIApplication::SetBlocked();
445// Attention : Appel XSync specifique X11 - en attendant multi-thread
446XSync(PIXDisplay(), False);
447}
448
449
450/* --Methode-- */
451int PIStdImgApp::DispImage(P2DArrayAdapter* nouv, string const & name, int opt, int oid)
452{
453PIImage* pii;
454PIWindow* win;
455int sx, sy, px, py, flag;
456
457if (nouv == NULL)
458 {
459 printf("PIStdImgApp::DispImage_Error Cannot Display NULL image \n");
460 return(-1);
461 }
462
463if ( (nouv->XSize() <= 0) || (nouv->YSize() <= 0))
464 {
465 printf("PIStdImgApp::DispImage_Error Pb Size Sz=%d*%d \n",
466 nouv->XSize(), nouv->YSize());
467 return(-1);
468 }
469
470int zm = 1;
471if (mZoom == 0) { // Facteur de zoom auto
472 zm = (nouv->XSize() > nouv->YSize()) ? nouv->XSize() : nouv->YSize();
473 zm = (zm >= 250) ? 250/zm : 1;
474 }
475else zm = mZoom;
476
477if (zm == 0) zm = 1;
478if (zm < -10) zm = -10;
479if (zm > 10) zm = 10;
480
481if (zm > 0) { sx = nouv->XSize()*zm; sy = nouv->YSize()*zm; }
482else {
483 sx = (int)((float)nouv->XSize()*(-1./float(zm)));
484 sy = (int)((float)nouv->YSize()*(-1./float(zm)));
485 }
486if (sx > 400+mFgScSz*100) sx = 400+mFgScSz*100;
487if (sy > 400+mFgScSz*100) sy = 400+mFgScSz*100;
488px = py = 0;
489win = GetWindow(opt, sx, sy, px, py, flag, (char *)name.c_str());
490pii = new PIImage(win, (char *)name.c_str(), sx, sy, px,py);
491pii->SetBinding(PIBK_elastic, PIBK_elastic, PIBK_elastic, PIBK_elastic);
492pii->SetZoomWin(zoom, false);
493pii->SetGloVWin(gimv, false);
494pii->SetCMapWin(cmapv, false);
495pii->SetZoom(zm, false);
496if ( mCmapid != CMAP_OTHER ) pii->SetColMapId(mCmapid, mRevCmap, false);
497pii->ShowCursor(true);
498pii->SetUserData(NULL, oid);
499// Centrage eventuel du pave
500if (mFImgCenter && (mXImgCenter > 0) && (mYImgCenter > 0)) {
501 pii->SetImage(nouv, false);
502 pii->SetPave(mXImgCenter, mYImgCenter, true, true);
503 }
504else pii->SetImage(nouv, true);
505// printf("!!DBG!! PIImage Pos= %d %d Size= %d %d \n", pii->XPos(), pii->YPos(), pii->XSize(), pii->YSize() );
506mCurWin = win;
507mCurWdg = pii;
508mLastWdg = pii;
509mBWId++;
510mBWList[mBWId] = pii;
511return(mBWId);
512}
513
514
515/* --Methode-- */
516int PIStdImgApp::DispScDrawer(PIDrawer* scd, string const & name, int opt, string title, int oid)
517{
518if (scd == NULL)
519 {
520 printf("PIStdImgApp::DispScDrawer_Error Cannot Add NULL ScDrawer \n");
521 return(-1);
522 }
523
524// Changement d'attributs graphiques courants du drawer
525if (mFCol != PI_NotDefColor) scd->SetColAtt(mFCol, mBCol);
526if (mLAtt != PI_NotDefLineAtt) scd->SetLineAtt(mLAtt);
527if ( (mFSz != PI_NotDefFontSize) && (mFAtt != PI_NotDefFontAtt) ) scd->SetFontAtt(mFSz, mFAtt);
528if ( mFName != PI_DefaultFont ) scd->SetFont(mFName, scd->GetFontSz(), scd->GetFontAtt());
529if ( (mMrk != PI_NotDefMarker) && (mMSz >= 0) ) scd->SetMarkerAtt(mMSz, mMrk);
530if ( mCmapid != CMAP_OTHER ) scd->SetColMapId(mCmapid);
531
532
533if ( (!mLastWdg) && ( (opt == Disp_Same) || (opt == Disp_Inset) ) ) opt = Disp_Next;
534// Trace en superpoistion
535if ( (opt == Disp_Same) && (mLastWdg) ) {
536 if (mLastWdg->kind() == PIScDrawWdg::ClassId) ((PIScDrawWdg*)mLastWdg)->AddScDrawer(scd, true);
537 else mLastWdg->AddDrawer(scd, true, true, true);
538 scd->Refresh();
539 mDId++;
540 mDrwList[mDId] = scd;
541 return(-mDId);
542}
543// Trace en medaillon
544else if ( (opt == Disp_Inset) && (mLastWdg) ) {
545 PIGrCoord x1, x2, y1, y2;
546 x1 = mIXmin; x2 = mIXmax;
547 y2 = 1.-mIYmin; y1 = 1.-mIYmax;
548 scd->SetAxesFlags(mAxesFlags);
549 if (maXlog || maYlog) scd->SetLogScale(maXlog, maYlog); // Echelle log
550 if (mFXYlim) // Forcage limites XY
551 scd->SetLimits(mXmin, mXmax, mYmin, mYmax);
552 else scd->UpdateLimits();
553 mLastWdg->AddDrawer(scd, x1, y1, x2, y2, true, false, true);
554 scd->Refresh();
555 mDId++;
556 mDrwList[mDId] = scd;
557 return(-mDId);
558}
559
560PIWindow* win;
561PIScDrawWdg* scw;
562int sx, sy, px, py, flag;
563sx = 200+mFgScSz*100;
564sy = 200+mFgScSz*100;
565win = GetWindow(opt, sx, sy, px, py, flag, (char *)name.c_str());
566/*
567if (typeid(*scd) != typeid(PIHisto2D))
568else scw = new PIH2DWdg(win, (char *)name.c_str(), sx, sy, px, py);
569*/
570scw = new PIScDrawWdg(win, (char *)name.c_str(), sx, sy, px, py);
571scw->SetBinding(PIBK_elastic, PIBK_elastic, PIBK_elastic, PIBK_elastic);
572scw->SetUserData(NULL, oid);
573if (maXlog || maYlog) scw->SetLogScale(maXlog, maYlog); // Echelle log
574if (mFXYlim) // Forcage limites XY
575 scw->SetLimits(mXmin, mXmax, mYmin, mYmax);
576scw->SetAxesFlags(mAxesFlags);
577// Fonte de trace d'axe
578scw->BaseDrawer()->SetFont(mFName, mFSz, mFAtt);
579/*
580if (typeid(*scd) != typeid(PIHisto2D))
581else ((PIH2DWdg*)scw)->SetPIHisto((PIHisto2D*)scd);
582*/
583scw->AddScDrawer(scd, true);
584// Titre du plot
585if (mAddTitle) {
586 if (title.length() <= 0) title = name; string t2="";
587 scw->SetTitles(title, t2);
588}
589
590// scw->Refresh(); ? Pas necessaire Reza 19/08/98, 05/05/99 $CHECK$
591mCurWin = win;
592mCurWdg = scw;
593mLastWdg = scw;
594mBWId++;
595mBWList[mBWId] = scw;
596return(mBWId);
597}
598
599/* --Methode-- */
600int PIStdImgApp::Disp3DDrawer(PIDrawer3D* dr3, string const & name, int opt, string title, int oid)
601{
602if (dr3 == NULL)
603 {
604 printf("PIStdImgApp::Disp3DDrawer_Error Cannot Add NULL 3DDrawer \n");
605 return(-1);
606 }
607
608// Changement d'attributs graphiques courants du drawer
609if (mFCol != PI_NotDefColor) dr3->SetColAtt(mFCol, mBCol);
610if (mLAtt != PI_NotDefLineAtt) dr3->SetLineAtt(mLAtt);
611if ( (mFSz != PI_NotDefFontSize) && (mFAtt != PI_NotDefFontAtt) ) dr3->SetFontAtt(mFSz, mFAtt);
612if ( mFName != PI_DefaultFont ) dr3->SetFont(mFName, dr3->GetFontSz(), dr3->GetFontAtt());
613if ( (mMrk != PI_NotDefMarker) && (mMSz >= 0) ) dr3->SetMarkerAtt(mMSz, mMrk);
614if ( mCmapid != CMAP_OTHER ) dr3->SetColMapId(mCmapid);
615
616if ( (!mLastWdg) && ( (opt == Disp_Same) || (opt == Disp_Inset) ) ) opt = Disp_Next;
617// Trace en superpoistion
618if ( (opt == Disp_Same) && (mLastWdg) ) {
619 if (mLastWdg->kind() == PIDraw3DWdg::ClassId) ((PIDraw3DWdg*)mLastWdg)->AddDrawer3D(dr3, true);
620 else mLastWdg->AddDrawer(dr3, true, true, true);
621 dr3->Refresh();
622 mDId++;
623 mDrwList[mDId] = dr3;
624 return(-mDId);
625}
626// Trace en medaillon
627else if ( (opt == Disp_Inset) && (mLastWdg) ) {
628 PIGrCoord x1, x2, y1, y2;
629 x1 = mIXmin; x2 = mIXmax;
630 y2 = 1.-mIYmin; y1 = 1.-mIYmax;
631 dr3->SetAxesFlags(mAxesFlags);
632 dr3->UpdateLimits();
633 mLastWdg->AddDrawer(dr3, x1, y1, x2, y2, true, false, true);
634 dr3->Refresh();
635 mDId++;
636 mDrwList[mDId] = dr3;
637 return(-mDId);
638}
639
640
641PIWindow* win;
642int sx, sy, px, py, flag;
643sx = 200+mFgScSz*100;
644sy = 200+mFgScSz*100;
645win = GetWindow(opt, sx, sy, px, py, flag, (char *)name.c_str());
646PIDraw3DWdg* wd3 = new PIDraw3DWdg(win, (char *)name.c_str(), sx, sy, px, py);
647wd3->SetBinding(PIBK_elastic, PIBK_elastic, PIBK_elastic, PIBK_elastic);
648wd3->SetUserData(NULL, oid);
649wd3->AddDrawer3D(dr3, true);
650// Titre du plot
651if (mAddTitle) {
652 if (title.length() <= 0) title = name; string t2="";
653 wd3->SetTitles(title, t2);
654}
655// wd3->Refresh(); ?Pas necessaire $CHECK$ 05/05/99
656mCurWin = win;
657mCurWdg = wd3;
658mLastWdg = wd3;
659mBWId++;
660mBWList[mBWId] = wd3;
661return(mBWId);
662}
663
664/* --Methode-- */
665void PIStdImgApp::AddText(string const & txt, double xp, double yp)
666{
667PIElDrawer *eld=CurrentElDrawer();
668if (eld == NULL) return;
669
670if ( (mFSz != PI_NotDefFontSize) && (mFAtt != PI_NotDefFontAtt) )
671 eld->SetFontAtt(mFSz, mFAtt);
672if ( mFName != PI_DefaultFont )
673 eld->SetFont(mFName, eld->GetFontSz(), eld->GetFontAtt());
674eld->ElAddText(xp,yp,txt.c_str(),mFCol);
675eld->Refresh();
676}
677
678/* --Methode-- */
679void PIStdImgApp::AddLine(double xp1, double yp1, double xp2, double yp2)
680{
681PIElDrawer *eld=CurrentElDrawer();
682if (eld == NULL) return;
683
684eld->ElAddLine(xp1, yp1, xp2, yp2, mFCol);
685eld->Refresh();
686}
687
688/* --Methode-- */
689void PIStdImgApp::AddRectangle(double xp1, double yp1, double xp2, double yp2, bool fgfill)
690{
691PIElDrawer *eld=CurrentElDrawer();
692if (eld == NULL) return;
693
694double xp,yp;
695double dx, dy;
696if (xp1 < xp2) {
697 xp = xp1; dx = xp2-xp1;
698}
699else {
700 xp = xp2; dx = xp1-xp2;
701}
702if (yp1 < yp2) {
703 yp = yp1; dy = yp2-yp1;
704}
705else {
706 yp = yp2; dy = yp1-yp2;
707}
708if (fgfill) eld->ElAddFRect(xp, yp, dx, dy, mFCol);
709else eld->ElAddRect(xp, yp, dx, dy, mFCol);
710eld->Refresh();
711}
712
713/* --Methode-- */
714void PIStdImgApp::AddCircle(double xc, double yc, double r, bool fgfill)
715{
716PIElDrawer *eld=CurrentElDrawer();
717if (eld == NULL) return;
718
719if (fgfill) eld->ElAddFCirc(xc, yc, r, mFCol);
720else eld->ElAddCirc(xc, yc, r, mFCol);
721eld->Refresh();
722}
723
724/* --Methode-- */
725void PIStdImgApp::SetTitle(string const & titletop, string const & titlebottom)
726{
727PIElDrawer *eld=CurrentElDrawer();
728if (eld == NULL) return;
729
730if ( (mFSz != PI_NotDefFontSize) && (mFAtt != PI_NotDefFontAtt) )
731 eld->SetFontAtt(mFSz, mFAtt);
732if ( mFName != PI_DefaultFont )
733 eld->SetFont(mFName, eld->GetFontSz(), eld->GetFontAtt());
734eld->SetTitles(titletop, titlebottom);
735eld->Refresh();
736}
737
738/* --Methode-- */
739PIElDrawer* PIStdImgApp::CurrentElDrawer()
740{
741PIElDrawer *eld=NULL;
742if (!mLastWdg) return(eld);
743PIScDrawWdg* sdw=NULL;
744PIDraw3DWdg* w3d=NULL;
745PIImage* imgw;
746switch(mLastWdg->kind()) {
747 case PIScDrawWdg::ClassId :
748 sdw = dynamic_cast<PIScDrawWdg *>(mLastWdg);
749 if (sdw) eld = sdw->BaseDrawer();
750 break;
751 case PIDraw3DWdg::ClassId :
752 w3d = dynamic_cast<PIDraw3DWdg *>(mLastWdg);
753 if (w3d) eld = w3d->BaseDrawer();
754 break;
755 case PIImage::ClassId :
756 imgw = dynamic_cast<PIImage *>(mLastWdg);
757 if (imgw) eld = imgw->BaseDrawer();
758 break;
759 default :
760 break;
761 }
762return(eld);
763}
764
765/* --Methode-- */
766void PIStdImgApp::CreateGraphWin(int nx, int ny, int sx, int sy)
767{
768if (nx < 1) nx = 1;
769if (ny < 1) ny = 1;
770if (nx > 8) nx = 8;
771if (ny > 8) ny = 8;
772if ( (sx < 50) && (sy < 50) ) sx = sy = 400+mFgScSz*100;
773char buff[64];
774mWId++;
775int px, py;
776MainWin()->GetScreenPos(px, py);
777sprintf(buff, "PI-GraphicWin (%d)",mWId);
778PIZoneWindow* win = new PIZoneWindow(this, buff, PIWK_normal, nx, ny, sx, sy, px+MainWin()->XSize()+30, 0);
779win->SetUserData(NULL, ny*10+nx); // UserFlag= nY*10 + nX
780mWList[mWId*10+1] = (PIWindow*)win;
781win->SetAutoDelChilds(true);
782// win->Show();
783mGrW = win;
784mGrIdx = 0;
785}
786
787/* --Methode-- */
788void PIStdImgApp::CreateStackWin(int sx, int sy)
789{
790if ( (sx < 50) && (sy < 50) ) sx = sy = 300+mFgScSz*100;
791char buff[64];
792mWId++;
793int px, py;
794MainWin()->GetScreenPos(px, py);
795sprintf(buff, "PI-StackWin (%d)",mWId);
796PIStackWindow* win = new PIStackWindow(this, buff, PIWK_normal, sx, sy, px+MainWin()->XSize()+30, 100);
797win->SetUserData(NULL, 9999); // UserFlag= 9999
798mWList[mWId*10+2] = (PIWindow*)win;
799win->SetAutoDelChilds(true);
800// win->Show();
801mStW = win;
802m[2]->SetSensitivity("StackTools", true);
803mStIdx = 0;
804}
805
806/* --Methode-- */
807PIWindow* PIStdImgApp::GetWindow(int typ, int& sx, int& sy, int& px, int& py, int& flag, char * nom)
808{
809PIWindow* rw;
810
811switch (typ) {
812 case Disp_Next : // Fenetre graphique courante
813 {
814 if (mGrW == NULL) CreateGraphWin();
815 int nx, ny;
816 mGrW->NbZone(nx, ny);
817 PIWdg* nw = mGrW->NextChildPosSize(px, py, sx, sy);
818// cerr << "**DBG** PIStdImgApp::GetWindow() DispNext : nw = " << (long)nw << endl;
819 if (nw) DeleteBaseWidget((PIBaseWdg*)nw, false, false);
820 flag = mGrIdx;
821 mGrIdx = (mGrIdx+1)%(nx*ny);
822 rw = mGrW;
823 break;
824 }
825
826 case Disp_Stack : // Fenetre de type stack (empilement)
827 {
828 if (mStW == NULL) CreateStackWin(sx, sy);
829 px = py = 0;
830 sx = mStW->XSize();
831 sy = mStW->YSize();
832 flag = mStIdx;
833 mStIdx++;
834 rw = mStW;
835 }
836 break;
837
838 default : // Fenetre ordinaire
839 {
840 int pwx, pwy;
841 MainWin()->GetScreenPos(pwx, pwy);
842 if ( (sx < 50) && (sy < 50) ) sx = sy = 300+mFgScSz*100;
843 rw = new PIWindow(this, nom, PIWK_normal, sx, sy, pwx+MainWin()->XSize()+30, 300);
844 rw->SetUserData(NULL, 0); // UserFlag= 0
845 mWId++;
846 mWList[mWId*10] = rw;
847 rw->SetAutoDelChilds(true);
848 // rw->Show();
849 px = py = 0;
850 flag = 0;
851 break;
852 }
853 }
854
855rw->Show();
856mCurWin = rw;
857return(rw);
858}
859
860/* --Methode-- */
861void PIStdImgApp::SetZone(int nzx, int nzy)
862{
863if (!mGrW) CreateGraphWin(nzx, nzy);
864else {
865 int k;
866 PIWdg* cwd;
867 for(k=0; k<mGrW->NbChilds(); k++) {
868 if ((cwd = mGrW->GetChild(k)) == NULL) continue;
869 DeleteBaseWidget((PIBaseWdg*)cwd, false, false);
870 }
871 mGrW->SetZone(nzx, nzy);
872 }
873}
874
875/* --Methode-- */
876void PIStdImgApp::StackWinNext()
877{
878if (mStW) mStW->DispNext();
879}
880
881/* --Methode-- */
882void PIStdImgApp::DeleteWindow(PIWindow* w)
883{
884if (w == NULL) return;
885w->Hide();
886bool ownwindow=false; // To Check if this is one of our windows
887WindMList::iterator it;
888for(it = mWList.begin(); it != mWList.end(); it++)
889 if ((*it).second == w) { mWList.erase(it); ownwindow = true; break; }
890if (w == mGrW) { mGrW = NULL; mGrIdx = -1; }
891if (w == mStW) { mStW = NULL; mStIdx = -1; m[2]->SetSensitivity("StackTools", false); }
892if (w == mCurWin) mCurWin = NULL;
893
894if (!ownwindow) return; // We do nothing if this is not a window we have created ...
895
896int k;
897PIWdg* cwd;
898for(k=0; k<w->NbChilds(); k++) {
899 if ((cwd = w->GetChild(k)) == NULL) continue;
900 DeleteBaseWidget((PIBaseWdg*)cwd,false,false);
901 }
902delete w;
903return;
904}
905
906/* --Methode-- */
907void PIStdImgApp::DeleteBaseWidget(PIBaseWdg* w, bool dw, bool dwin)
908{
909if (w == NULL) return;
910BWMList::iterator it;
911for(it = mBWList.begin(); it != mBWList.end(); it++)
912 if ((*it).second == w) { mBWList.erase(it); break; }
913int k;
914PIDrawer* drw;
915for(k=0; k<w->NbDrawers(); k++) {
916 if ((drw = w->GetDrawer(k)) == NULL) continue;
917 DrwMList::iterator itt;
918 for(itt = mDrwList.begin(); itt != mDrwList.end(); itt++)
919 if ((*itt).second == drw) { mDrwList.erase(itt); break; }
920 }
921
922if (w == mCurWdg) {
923 mCurWdg = NULL;
924 if (mFgCWImg) {
925 m[4]->SetSensitivityMsg(10515, false);
926 m[4]->SetSensitivityMsg(10516, false);
927 mFgCWImg = false;
928 }
929 }
930
931if (w == mLastWdg) mLastWdg = NULL;
932
933PIWdg* pw=NULL;
934if (dwin) pw = (PIWdg*)(w->Parent());
935//DBG printf("DeleteBaseWidget(%lx)-DBG kind = %d - %d %d \n", (long)w, w->kind(), (int)dw, (int)dwin);
936if (dw) delete w;
937if (pw && (pw->kind() == PIWindow::ClassId )) {
938 PIWindow* pww = (PIWindow*) pw;
939 if ((pww != (PIWindow*)mGrW) && (pww != (PIWindow*)mStW) && (pww->NbChilds()==0))
940 DeleteWindow((PIWindow*)pw);
941 }
942return;
943}
944
945
946
947/* --Methode-- */
948void PIStdImgApp::DelWRsId(int k)
949{
950//DBG cerr << "-DBG- PIStdImgApp::DelWRsId(" << k << ")" << endl;
951if (k > 0) { // C'est un BaseWidget
952 BWMList::iterator it;
953 it = mBWList.find(k);
954 if (it == mBWList.end()) return;
955 PIBaseWdg* wd = (*it).second;
956//DBG cerr << "-DBG- PIStdImgApp::DelWRsId Deleting BaseWidget " << (long)(wd) << endl ;
957 DeleteBaseWidget(wd, true, true);
958 }
959else { // C'est un drawer
960 DrwMList::iterator it;
961 it = mDrwList.find(-k);
962 if (it == mDrwList.end()) return;
963 delete (*it).second;
964 mDrwList.erase(it);
965// cerr << "+DBG+ PIStdImgApp::DelWRsId Deleting Drawer " << (long)((*it).second) << endl ;
966 }
967}
968/* --Methode-- */
969bool PIStdImgApp::CheckWRsId(int k)
970{
971if (k > 0) { // C'est un BaseWidget
972 BWMList::iterator it;
973 it = mBWList.find(k);
974 if (it == mBWList.end()) return(false);
975 else return(true);
976 }
977else { // C'est un drawer
978 DrwMList::iterator it;
979 it = mDrwList.find(-k);
980 if (it == mDrwList.end()) return(false);
981 else return(true);
982 }
983}
984
985
986/* --Methode-- */
987void PIStdImgApp::RedirectStdOutErr(bool fg)
988{
989if (fg) {
990 RedirectOutStream(mCons);
991 RedirectErrStream(mCons);
992 m[5]->SetStateMsg(10602, true);
993 redirecout = true;
994 }
995else {
996 RedirectOutStream(NULL);
997 RedirectErrStream(NULL);
998 m[5]->SetStateMsg(10602, false);
999 redirecout = false;
1000 }
1001return;
1002}
1003
1004/* --Methode-- */
1005void PIStdImgApp::CatchSignals(bool fgfpe, bool fgsegv)
1006{
1007#ifdef SANS_EVOLPLANCK
1008PeidaConfigureSignalhandling(fgfpe, fgsegv, true, true);
1009#else
1010SophyaConfigureSignalhandling(fgfpe, fgsegv, true, true);
1011#endif
1012m[5]->SetStateMsg(10603, fgfpe);
1013m[5]->SetStateMsg(10604, fgsegv);
1014}
1015
1016/* --Methode-- */
1017void PIStdImgApp::CloseAllWindows()
1018{
1019WindMList::iterator it;
1020for(it = mWList.begin(); it != mWList.end(); it++) delete (*it).second;
1021mWList.clear();
1022mBWList.clear();
1023mDrwList.clear();
1024mGrW = NULL;
1025mStW = NULL;
1026mCurWin = NULL;
1027mCurWdg = NULL;
1028mLastWdg = NULL;
1029m[4]->SetSensitivityMsg(10515, false);
1030m[4]->SetSensitivityMsg(10516, false);
1031}
1032
1033/* --Methode-- */
1034void PIStdImgApp::MBProcess1(PIMessage msg, PIMsgHandler* /*sender*/, void* data)
1035{
1036
1037 switch(msg)
1038 {
1039 case 10150 :
1040 showInfoWindow(this);
1041 break;
1042
1043 case 10155 :
1044 hideInfoWindow(this);
1045 break;
1046
1047 case 10100 :
1048 mCmd->ShowHelpWindow();
1049 break;
1050
1051 case 10120 :
1052 pfc_fits->AcceptNewFile(false);
1053 mFCMsg = 10125;
1054 pfc_fits->SetMsg(mFCMsg);
1055 SetBlocked();
1056 pfc_fits->Show();
1057 break;
1058
1059 case 10125 :
1060 SetBusy();
1061 if (data) {
1062 string nomobj="";
1063 ObjMgr()->ReadFits(pfc_fits->GetFileName(), nomobj);
1064 ObjMgr()->DisplayObj(nomobj, "win");
1065 }
1066 mFCMsg = 0;
1067 SetReady();
1068 break;
1069
1070 case 10130 :
1071 pfc_ppf->AcceptNewFile(false);
1072 mFCMsg = 10135;
1073 pfc_ppf->SetMsg(mFCMsg);
1074 SetBlocked();
1075 pfc_ppf->Show();
1076 break;
1077
1078 case 10135 :
1079 mFCMsg = 0;
1080 if (data) {
1081 PPInMgrW()->SetFile(pfc_ppf->GetFileName());
1082 PPInMgrW()->Show();
1083 }
1084 SetReady();
1085 break;
1086
1087 case 10105:
1088 Stop();
1089 break;
1090
1091 }
1092return;
1093}
1094
1095
1096
1097/* --Methode-- */
1098void PIStdImgApp::MBProcess2(PIMessage msg, PIMsgHandler* /*sender*/, void* data)
1099{
1100
1101switch (msg) {
1102 case 10201 :
1103 ObjMgrW()->Show();
1104 break;
1105
1106 case 10220 :
1107 pfc_ppf->AcceptNewFile(true);
1108 mFCMsg = 10225;
1109 pfc_ppf->SetMsg(mFCMsg);
1110 SetBlocked();
1111 pfc_ppf->Show();
1112 break;
1113
1114 case 10225 :
1115 SetBusy();
1116 if (data) {
1117 if (mPpfout) {
1118 printf("PIStdImg/Info: Closing POutPersist-File %s \n", name_outppf.c_str());
1119 delete mPpfout;
1120 }
1121 name_outppf = pfc_ppf->GetFileName();
1122 mPpfout = NULL;
1123 printf("PIStdImg/Info: Opening POutPersist-File %s \n", name_outppf.c_str());
1124 mPpfout = new POutPersist(name_outppf);
1125 }
1126 mFCMsg = 0;
1127 SetReady();
1128 break;
1129
1130 case 10230 :
1131 if (!mPpfout) break;
1132 printf("PIStdImg/Info: Closing POutPersist-File %s \n", name_outppf.c_str());
1133 delete mPpfout;
1134 name_outppf = "";
1135 mPpfout = NULL;
1136 break;
1137
1138 case 10270 :
1139 if (mCurWdg) {
1140 int oid = mCurWdg->UserFlag();
1141 DeleteBaseWidget(mCurWdg);
1142 mObjMgr->DelObj_Id(oid);
1143 }
1144 break;
1145
1146 default:
1147 cerr << "PIStdImgApp::MBProcess2() BUG?? Msg= " << msg << endl;
1148 break;
1149}
1150
1151return;
1152}
1153
1154/* --Methode-- */
1155void PIStdImgApp::MBProcess3(PIMessage msg, PIMsgHandler* /*sender*/, void* /*data*/)
1156{
1157
1158switch (msg) {
1159 case 10301 :
1160 PIImgTools::ShowPIImgTools();
1161 break;
1162 case 10302 :
1163 PIDrwTools::ShowPIDrwTools();
1164 break;
1165 case 10303 :
1166 PIAxesTools::ShowPIAxesTools();
1167 break;
1168
1169 case 10304 :
1170 mCmd->ShowCxxExecWindow();
1171 break;
1172
1173 case 10311 :
1174 case 10312 :
1175 {
1176 PIImage* curpimg = NULL;
1177 if (!mCurWdg) return;
1178 if (mCurWdg->kind() != PIImage::ClassId) return;
1179 curpimg = (PIImage*)mCurWdg;
1180 if (curpimg == NULL) return;
1181 P2DArrayAdapter* img = curpimg->Image();
1182 if (img == NULL) return;
1183 int dx = curpimg->XSzPave();
1184 int dy = curpimg->YSzPave();
1185 int x0 = curpimg->XPave()-dx/2;
1186 int y0 = curpimg->YPave()-dy/2;
1187 if (x0 < 0) x0 = 0;
1188 if (y0 < 0) y0 = 0;
1189 int x1 = x0+dx;
1190 int y1 = y0+dy;
1191 if (x1 > img->XSize()) x1 = img->XSize();
1192 if (y1 > img->YSize()) y1 = img->YSize();
1193 dx = x1-x0; dy = y1-y0;
1194 ImageR4* pim = new ImageR4(dx, dy);
1195 int ii, jj;
1196 for(jj=0; jj<dy; jj++)
1197 for(ii=0; ii<dx; ii++) (*pim)(ii,jj) = (*img)(ii+x0, jj+y0);
1198 if (msg == 10305) { // Calcul des coordonnees du sous-pave
1199 double xc1, yc1;
1200 img->Coord(x0, y0, xc1, yc1);
1201 pim->SetOrg((int)xc1, (int)yc1);
1202 }
1203 string nom = mCurWdg->Nom() + "_pave";
1204 ObjMgr()->AddObj(pim, nom);
1205 ObjMgr()->DisplayObj(nom, "w");
1206 break;
1207 }
1208
1209 case 10313 :
1210 {
1211 PIImage* curpimg = NULL;
1212 if (!mCurWdg) return;
1213 if (mCurWdg->kind() != PIImage::ClassId) return;
1214 curpimg = (PIImage*)mCurWdg;
1215 if (curpimg == NULL) return;
1216 curpimg->ShowCuts(true);
1217 break;
1218 }
1219
1220 case 10320 :
1221 if (mStW) mStW->DispNext();
1222 break;
1223
1224 case 10321 :
1225 case 10322 :
1226 case 10324 :
1227// case 10328 :
1228 if (mStW) mStW->StartAutoDisp((msg-10320)*500);
1229 break;
1230
1231 case 10329 :
1232 if (mStW) mStW->StopAutoDisp();
1233 break;
1234
1235 case 103330 :
1236 if (mStW) {
1237 PIWdg* cw = mStW->CurrentWdg();
1238 if (cw) DeleteBaseWidget((PIBaseWdg*)cw);
1239 }
1240 break;
1241
1242 default:
1243 cerr << "PIStdImgApp::MBProcess3() BUG?? Msg= " << msg << endl;
1244 break;
1245 }
1246return;
1247}
1248
1249/* --Methode-- */
1250void PIStdImgApp::MBProcess4(PIMessage msg, PIMsgHandler* /*sender*/, void* /*data*/)
1251{
1252
1253switch (msg) {
1254
1255 case 10400 :
1256 CreateStackWin();
1257 break;
1258
1259 case 10411 :
1260 CreateGraphWin(1,1);
1261 break;
1262 case 10421 :
1263 CreateGraphWin(1,2);
1264 break;
1265 case 10412 :
1266 CreateGraphWin(2,1);
1267 break;
1268 case 10422 :
1269 CreateGraphWin(2,2);
1270 break;
1271 case 10431 :
1272 CreateGraphWin(1,3);
1273 break;
1274 case 10433 :
1275 CreateGraphWin(3,3);
1276 break;
1277 case 10441 :
1278 if (mCurWdg) {
1279 mLastWdg = mCurWdg;
1280 cout << " Using current widget as last-widget (display same) " << endl;
1281 }
1282 else cout << " No current widget - select widget with mouse " << endl;
1283 break;
1284 case 10460 :
1285 DeleteWindow(mCurWin);
1286 break;
1287 default:
1288 cerr << "PIStdImgApp::MBProcess4() BUG?? Msg= " << msg << endl;
1289 break;
1290 }
1291return;
1292}
1293
1294
1295/* --Methode-- */
1296void PIStdImgApp::MBProcess5(PIMessage msg, PIMsgHandler* /*sender*/, void* data)
1297{
1298char nomps[64],strg[512];
1299PSFile *mps;
1300int sxt, syt, syo, syo1, sx[4], sy[4];
1301
1302switch (msg)
1303 {
1304 case 10501 :
1305 pfc_ps->AcceptNewFile(true);
1306 mFCMsg = 10525;
1307 pfc_ps->SetMsg(mFCMsg);
1308 SetBlocked();
1309 pfc_ps->Show();
1310 break;
1311
1312 case 10525 :
1313 SetBusy();
1314 if (data) {
1315 if (mpsfile) {
1316 printf("PIStdImg/Info: Closing PS-File %s \n", name_ps.c_str());
1317 delete mpsfile;
1318 }
1319 name_ps = pfc_ps->GetFileName();
1320 printf("PIStdImg/Info: Opening PS-File %s \n", name_ps.c_str());
1321 mpsfile = new PSFile(name_ps.c_str(), PI_Portrait, PI_A4, 2., 2.);
1322 }
1323 mFCMsg = 0;
1324 SetReady();
1325 break;
1326
1327 case 10505 :
1328 if (!mpsfile) break;
1329 printf("PIStdImg/Info: Closing PS-File %s \n", name_ps.c_str());
1330 delete mpsfile;
1331 mpsfile = NULL;
1332 name_ps = "";
1333 break;
1334
1335 case 10511 : // Window -> PS
1336 case 10512 : // Window -> EPS
1337 if (CurrentWindow() == NULL) break;
1338 if (msg == 10512)
1339 {
1340 num_eps++;
1341 sprintf(nomps,"pia%d.eps", num_eps);
1342 printf("PIStdImg/Info: Creating EPSFile %s (CurWin-> EPS) \n", nomps);
1343 mps = new PSFile(nomps);
1344 }
1345 else {
1346 if (mpsfile == NULL) {
1347 name_ps = "pia.ps";
1348 mpsfile = new PSFile(name_ps.c_str(), PI_Portrait, PI_A4, 0., 0.);
1349 printf("PIStdImg/Info: File PS %s opened \n", name_ps.c_str());
1350 }
1351 printf("PIStdImg/Info: CurWin-> PSFile %s\n", name_ps.c_str());
1352 mps = mpsfile;
1353 }
1354 CurrentWindow()->PSPrint(mps,0,0);
1355
1356 if (msg == 10512) delete mps; // fichier eps
1357 break;
1358
1359 case 10515 : // Image -> PS
1360 case 10516 : // Image -> EPS
1361 {
1362 PIImage* curpimg = NULL;
1363 if (!mCurWdg) return;
1364 if (mCurWdg->kind() != PIImage::ClassId) return;
1365 curpimg = (PIImage*)mCurWdg;
1366 if (curpimg == NULL) return;
1367 if (msg == 10516)
1368 {
1369 num_eps++;
1370 sprintf(nomps,"pia%d.eps", num_eps);
1371 printf("PIStdImg/Info: Creating EPSFile %s (CurImage-> EPS)\n", nomps);
1372 mps = new PSFile(nomps);
1373 }
1374 else {
1375 if (mpsfile == NULL) {
1376 name_ps = "pia.ps";
1377 mpsfile = new PSFile(name_ps.c_str(),PI_Portrait, PI_A4, 2., 2.);
1378 printf("PIStdImg/Info: File PS %s opened \n", name_ps.c_str());
1379 }
1380 printf("PIStdImg/Info: CurImage-> PSFile %s\n", name_ps.c_str());
1381 mps = mpsfile;
1382 }
1383
1384 sx[0] = gimv->XSize();
1385 sy[0] = gimv->YSize();
1386 sx[1] = zoom->XSize();
1387 sy[1] = zoom->YSize();
1388 sx[2] = cmapv->XSize();
1389 sy[2] = cmapv->YSize();
1390 sx[3] = curpimg->XSize();
1391 sy[3] = curpimg->YSize();
1392 if (sy[1] > sy[0]) { syo1 = sy[1]+50; syo = sy[1]+sy[2]+60; }
1393 else { syo1 = sy[0]+50; syo = sy[0]+sy[2]+60; }
1394 syt = sy[3]+syo;
1395 sxt = sx[3];
1396 if (sxt < (sx[0]+sx[1]+20)) sxt = sx[0]+sx[1]+20;
1397 if (sxt < sx[2]) sxt = sx[2];
1398
1399 // Pour ecrire le titre
1400 mps->NewPage((float)sxt, (float)syt, PI_Portrait);
1401 mps->NewBloc(0,0, (float)sxt, 30., (float)sxt, 30.);
1402 sprintf(strg,"Image: %s - Pave %d %d \n", curpimg->Nom().c_str(),
1403 curpimg->XPave(), curpimg->YPave());
1404 mps->DrawString(10., 25., strg, PI_Black, PI_DefaultFont, PI_BoldFont, 20);
1405 mps->EndBloc();
1406
1407 // Les quatre fenetres glovimage, zoom, cmap, image
1408 gimv->PSPrint(mps, -gimv->XPos(), -gimv->YPos()+40);
1409 zoom->PSPrint(mps, -zoom->XPos()+sx[0]+20, -zoom->YPos()+40);
1410 cmapv->PSPrint(mps, -cmapv->XPos(), -cmapv->YPos()+syo1);
1411 curpimg->PSPrint(mps, -curpimg->XPos(), -curpimg->YPos()+syo);
1412
1413 if (msg == 10516) delete mps; // fichier eps
1414 break;
1415 }
1416
1417 default:
1418 cerr << "PIStdImgApp::MBProcess5() BUG?? Msg= " << msg << endl;
1419 break;
1420 }
1421
1422}
1423
1424
1425/* --Methode-- */
1426void PIStdImgApp::MBProcess6(PIMessage msg, PIMsgHandler* /*sender*/, void* data)
1427{
1428switch (msg) {
1429 case 10601:
1430 CloseAllWindows();
1431 break;
1432 case 10602:
1433 RedirectStdOutErr(*((bool*)data));
1434 break;
1435 case 10603:
1436 case 10604:
1437 CatchSignals(m[5]->GetStateMsg(10603), m[5]->GetStateMsg(10604));
1438 break;
1439 case 10605:
1440 mObjMgr->SetVerbose(m[5]->GetStateMsg(10605));
1441 break;
1442 case 10606:
1443 mCmd->ShowCxxOptionWindow();
1444 break;
1445 default:
1446 cerr << "PIStdImgApp::MBProcess6() BUG?? Msg= " << msg << endl;
1447 break;
1448 }
1449return;
1450}
1451
1452
1453/* --Methode-- */
1454void PIStdImgApp::SetColAtt(PIColors fg, PIColors bg)
1455{
1456 mFCol = fg;
1457 mBCol = bg;
1458}
1459/* --Methode-- */
1460void PIStdImgApp::SetLineAtt(PILineAtt lat)
1461{
1462 mLAtt = lat;
1463}
1464
1465/* --Methode-- */
1466void PIStdImgApp::SetFontName(PIFontName fn)
1467{
1468 mFName = fn;
1469}
1470
1471/* --Methode-- */
1472void PIStdImgApp::SetFontAtt(PIFontSize fsz, PIFontAtt fat)
1473{
1474 mFSz = fsz;
1475 mFAtt = fat;
1476}
1477/* --Methode-- */
1478void PIStdImgApp::SetMarkerAtt(int sz, PIMarker mrk)
1479{
1480 mMSz = sz;
1481 mMrk = mrk;
1482}
1483
1484/* --Methode-- */
1485void PIStdImgApp::SetZoomAtt(int zoom)
1486{
1487 if ( (zoom > 10) || (zoom < -10) ) zoom = 0;
1488 mZoom = zoom;
1489}
1490/* --Methode-- */
1491void PIStdImgApp::SetAxesAtt(unsigned int axfl)
1492{
1493 mAxesFlags = axfl;
1494}
1495/* --Methode-- */
1496void PIStdImgApp::SetXYLimits(double xmin, double xmax, double ymin, double ymax)
1497{
1498 mXmin = xmin; mXmax= xmax;
1499 mYmin = ymin; mYmax= ymax;
1500}
1501/* --Methode-- */
1502void PIStdImgApp::SetInsetLimits(double xmin, double xmax, double ymin, double ymax)
1503{
1504 mIXmin = xmin; mIXmax= xmax;
1505 mIYmin = ymin; mIYmax= ymax;
1506}
1507/* --Methode-- */
1508void PIStdImgApp::SetImageCenterPosition(int x, int y)
1509{
1510 mXImgCenter = x; mYImgCenter = y;
1511}
1512
1513/* --Methode-- */
1514void PIStdImgApp::SaveGraphicAtt()
1515{
1516 mSFCol = mFCol;
1517 mSBCol = mBCol;
1518 mSLAtt = mLAtt;
1519 mSFName = mFName;
1520 mSFSz = mFSz;
1521 mSFAtt = mFAtt;
1522 mSMSz = mMSz;
1523 mSMrk = mMrk;
1524 mSCmapid = mCmapid;
1525 mSRevCmap = mRevCmap;
1526 mSZoom = mZoom;
1527 mSAxesFlags = mAxesFlags;
1528 mSXmin = mXmin; mSXmax = mXmax;
1529 mSYmin = mYmin; mSYmax = mYmax;
1530 mSIXmin = mIXmin; mSIXmax = mIXmax;
1531 mSIYmin = mIYmin; mSIYmax = mIYmax;
1532 mSFXYlim = mFXYlim;
1533 mSXImgCenter = mXImgCenter;
1534 mSYImgCenter = mYImgCenter;
1535 mSFImgCenter = mFImgCenter;
1536 mSaXlog = maXlog;
1537 mSaYlog = maYlog;
1538 mSAddTitle = mAddTitle;
1539}
1540
1541/* --Methode-- */
1542void PIStdImgApp::RestoreGraphicAtt()
1543{
1544 mFCol = mSFCol;
1545 mBCol = mSBCol;
1546 mLAtt = mSLAtt;
1547 mFName = mSFName;
1548 mFSz = mSFSz;
1549 mFAtt = mSFAtt;
1550 mMSz = mSMSz;
1551 mMrk = mSMrk;
1552 mCmapid = mSCmapid;
1553 mRevCmap = mSRevCmap;
1554 mZoom = mSZoom;
1555 mAxesFlags = mSAxesFlags;
1556 mXmin = mSXmin; mXmax = mSXmax;
1557 mYmin = mSYmin; mYmax = mSYmax;
1558 mIXmin = mSIXmin; mIXmax = mSIXmax;
1559 mIYmin = mSIYmin; mIYmax = mSIYmax;
1560 mFXYlim = mSFXYlim;
1561 mXImgCenter = mSXImgCenter;
1562 mYImgCenter = mSYImgCenter;
1563 mFImgCenter = mSFImgCenter;
1564 maXlog = mSaXlog;
1565 maYlog = mSaYlog;
1566 mAddTitle = mSAddTitle;
1567}
1568
1569// -------------------------------------------------
1570// Fenetre info piapp (About piapp)
1571// -------------------------------------------------
1572static PIWindow* infow_win = NULL;
1573static PIText* infow_txt = NULL;
1574static PICMapView* infow_cmap = NULL;
1575static PIButton* infow_but = NULL;
1576
1577/* Nouvelle-Fonction */
1578static void createInfoWindow(PIStdImgApp* app)
1579{
1580if (infow_win) return;
1581
1582int bsx, bsy;
1583PIApplicationPrefCompSize(bsx, bsy);
1584int spx, spy;
1585spx = bsx/6; spy = bsy/6;
1586
1587infow_win = new PIWindow((PIMsgHandler *)app, "About piapp",
1588 PIWK_dialog, bsx*5+3*spx, bsy*4+spy*3, 200, 200);
1589infow_win->SetAutoDelChilds(true);
1590infow_txt = new PIText(infow_win,"about_piapp_text", bsx*5+spx, bsy*3, spx, spy);
1591infow_txt->SetMutiLineMode(true);
1592infow_txt->SetTextEditable(false);
1593infow_txt->SetBinding(PIBK_elastic,PIBK_elastic, PIBK_elastic,PIBK_elastic);
1594infow_cmap = new PICMapView(infow_win, "about_piapp_cmap", bsx*4, bsy*0.7, spx, 2*spy+bsy*3.15);
1595infow_cmap->SetColMapId(CMAP_COLBR32, 1., -1., false);
1596infow_cmap->SetBinding(PIBK_elastic,PIBK_elastic, PIBK_elastic,PIBK_elastic);
1597infow_but = new PIButton(infow_win,"OK", 10155, bsx, bsy, bsx*4+2*spx, 2*spy+bsy*3);
1598infow_but->SetMsgParent((PIMsgHandler *)app);
1599infow_but->SetBinding(PIBK_elastic,PIBK_elastic, PIBK_elastic,PIBK_elastic);
1600char buff[128];
1601#ifdef SANS_EVOLPLANCK
1602sprintf(buff, "Version: piapp=%g PI=%g PEIDA=%g \n", (double)PIAPP_VERSIONNUMBER,
1603 (double)PI_VERSIONNUMBER, (float)PeidaVersion());
1604#else
1605{
1606sprintf(buff, "Version: piapp=%g PI=%g SOPHYA=%g \n", (double)PIAPP_VERSIONNUMBER,
1607 (double)PI_VERSIONNUMBER, glst_piai->Version());
1608}
1609#endif
1610string info = "piapp : Interactive analysis program\n";
1611info += buff;
1612info += "(C) LAL-IN2P3/CNRS 1996-2000\n";
1613info += "(C) SPP-DAPNIA/CEA 1996-2000\n";
1614infow_txt->SetText(info);
1615}
1616
1617/* Nouvelle-Fonction */
1618static void showInfoWindow(PIStdImgApp* app)
1619{
1620if (!infow_win) createInfoWindow(app);
1621if (infow_win) infow_win->Show();
1622}
1623/* Nouvelle-Fonction */
1624static void hideInfoWindow(PIStdImgApp* app)
1625{
1626if (infow_win) infow_win->Hide();
1627}
1628
1629/* Nouvelle-Fonction */
1630static void deleteInfoWindow()
1631{
1632if (!infow_win) return;
1633delete infow_win;
1634infow_win = NULL;
1635infow_txt = NULL;
1636infow_cmap = NULL;
1637infow_but = NULL;
1638}
1639
Note: See TracBrowser for help on using the repository browser.