source: Sophya/trunk/SophyaPI/PIext/pistdimgapp.h@ 2308

Last change on this file since 2308 was 2265, checked in by ansari, 23 years ago

Ajout addarca et addfarca: Trace d'arc defini par un angle et dangle + sum/product/mean/sigma ds RPNEvaluator - Reza 14/11/2002

  • Property svn:executable set to *
File size: 7.5 KB
RevLine 
[165]1// This may look like C code, but it is really -*- C++ -*-
2// Standard Image App R. Ansari 97-98
3// LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA
4
5#ifndef PISTIMGAPP_H_SEEN
6#define PISTIMGAPP_H_SEEN
7
8#include <string.h>
9#include <string>
10#include <map>
[351]11#include <functional>
[165]12
13#include "pisysdep.h"
14
15#include PIAPP_H
16#include PIWIN_H
17#include PIMENU_H
18#include PIOPTMENU_H
19
20#include PISTDWDG_H
21
22#include PIFILECHO_H
[2106]23#include PIPERIODIC_H
24
[165]25#include "picons.h"
26
27#include "piimage.h"
[2141]28#include "pi3dwdg.h"
[165]29#include "nobjmgr.h"
30#include "piacmd.h"
31#include "pisiadw.h"
32#include "pistzwin.h"
33
[2106]34#include "pitherm.h"
[165]35
[2106]36#include "resusage.h"
37
38
[1971]39enum DispWinEnum {Disp_Default, Disp_Next, Disp_Win, Disp_Same, Disp_Stack, Disp_Inset};
[165]40
41typedef map<long, PIWindow*, less<long> > WindMList;
42typedef map<long, PIBaseWdg*, less<long> > BWMList;
43typedef map<long, PIDrawer*, less<long> > DrwMList;
44
45class PIStdImgApp : public PIApplication {
46public:
47 PIStdImgApp(int narg=0, char* arg[]=NULL);
48 ~PIStdImgApp();
49
50 virtual void Process(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
[194]51 virtual void SetReady();
52 virtual void SetBusy();
53 virtual void SetBlocked();
[165]54
[1971]55 int DispImage(P2DArrayAdapter* nouv, string const & name, string const & opt, int oid=0);
56 int DispScDrawer(PIDrawer* scd, string const & name, string const & opt,
57 string title="", int oid=0);
58 int Disp3DDrawer(PIDrawer3D* scd, string const & name, string const & opt,
59 string title="", int oid=0);
[165]60
[2188]61 // Specification (de l'exterieur) de commande a executer
62 inline void SubmitCommand(string const& cmd)
63 { exc_command = cmd; fg_exc_cmd = true; }
64 // Execution de commande soumis de l'exterieur
65 int ExecuteExtCommand();
66
[1642]67 // Fonction d'ajout de texte (provisoire - Aout 99)
[2263]68 void AddText(string const & txt, double xp, double yp, string const& opt, bool fgcn=false);
69 void AddCompText(string const & txt, string const & txtup, string const & txtdn,
70 double xp, double yp, string const& opt,
71 string const& optss, bool fgcn=false);
[1642]72 // Ajout de lignes, rectangles, cercles (provisoires - Aout 2001)
[2243]73 void AddLine(double xp1, double yp1, double xp2, double yp2,
[2263]74 string const& opt, bool fgarrow=false, bool fgcn=false);
[1971]75 void AddRectangle(double xp1, double yp1, double xp2, double yp2, string const& opt,
[2263]76 bool fgfill=false, bool fgcn=false);
[1971]77 void AddCircle(double xc, double yc, double r, string const& opt,
[2263]78 bool fgfill=false, bool fgcn=false);
[2265]79 void AddArc(double xc, double yc, double r, double a, double da,
80 string const& opt, bool fgfill=false, bool fgcn=false);
[2243]81 void AddArc(double x1, double y1, double x2, double y2,
[2263]82 double x3, double y3, string const& opt, bool fgfill=false, bool fgcn=false);
83 void AddPoly(vector<double>& x, vector<double>& y,
84 string const& opt, bool fgfill=false, bool fgcn=false);
[1642]85
[1131]86 // Fonction Ajout de titre de trace
[2165]87 void SetTitle(string const & titleup, string const & titledown, string const& opt);
88 // Fonction d'Ajout label d'axe X,Y
89 void SetAxeLabels(string const & xLabel, string const & yLabel, string const& opt);
[349]90
[1642]91 // Acces au BaseDrawer (PIElDrawer) du PIBaseWdg courant
[2165]92 PIDrawer* CurrentElDrawer();
[349]93
[165]94 void CreateGraphWin(int nx=1, int ny=1, int sx=0, int sy = 0);
95 void CreateStackWin(int sx=0, int sy = 0);
[1971]96 PIWindow * GetWindow(DispWinEnum typ, int& sx, int& sy, int& px, int& py, int& flag, char * nom);
[165]97 void SetZone(int nzx=1, int nzy=1);
98 void StackWinNext();
99
100 void DeleteWindow(PIWindow* w);
101 void DeleteBaseWidget(PIBaseWdg* w, bool dw=true, bool dwin=true);
102 void DelWRsId(int k);
[368]103 bool CheckWRsId(int k);
[165]104 void CloseAllWindows();
105
106 inline NamedObjMgr* ObjMgr() { return mObjMgr; }
107 inline PIACmd* CmdInterpreter() { return mCmd; }
108
109 PIWindow* CurrentWindow() { return (mCurWin); };
110 PIBaseWdg* CurrentBaseWdg() { return (mCurWdg); };
111
112 inline PIPixmap* ZoomW() { return zoom; }
113 inline PIPixmap* GloVW() { return gimv; }
114 inline PICMapView* CMapVW() { return cmapv; }
115 inline PIConsole* GetConsole() { return mCons; }
116
[293]117 inline PIMenu* SpecialMenu() { return m[5]; }
118 inline PIMenu* ModulesMenu() { return m[6]; }
[165]119
120 inline ObjMgrWind* ObjMgrW() { return mObjmgrw; }
121 inline PPInMgrWind* PPInMgrW() { return mPpinmgrw; }
122
[1971]123// Gestion (show/hide) de la fenetre Stat/ZoomWindow
124 void StatZoomWindowSetVisible(bool fg=true);
125
[2106]126// Update de l'info de la fenetre stats/ressources
127 void UpdateStatResourceInfo();
128
[165]129// Redirection ou Non de StdOut/StdErr
130 void RedirectStdOutErr(bool fg = true);
[293]131 inline bool HasRedirectedStdOutErr() { return(redirecout); }
[165]132// Gestion des signaux
[374]133 void CatchSignals(bool fgfpe=true, bool fgsegv=true);
[165]134
[548]135 void SetInsetLimits(double xmin=0.4, double xmax=0.6, double ymin=0.4, double ymax=0.6);
[1131]136 inline void SetAutoAddTitle(bool aatit=true) { mAddTitle = aatit; }
[1971]137 void SetAxesAtt(unsigned int axfl) { mAxesFlags = axfl; }
138 // void SaveGraphicAtt();
139 // void RestoreGraphicAtt();
140 void SetDefaultGraphicAttributes(string const & opt);
141 void SetDefaultAxesAttributes(string const & opt);
142 DispWinEnum ParseDisplayOption(string const & opt, vector<string>& opts);
[506]143
[165]144// Gestion fichiers PS
145 int num_eps;
146 PSFile *mpsfile;
147 string name_ps;
148
149// Gestion OUT-PPF
150 POutPersist* mPpfout;
151 string name_outppf;
152
153private:
154 void MBProcess1(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
155 void MBProcess2(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
156 void MBProcess3(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
157 void MBProcess4(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
158 void MBProcess5(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
159 void MBProcess6(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
160
[1971]161
[165]162
163 NamedObjMgr* mObjMgr;
164 PIACmd* mCmd;
165
[293]166 PIMenu* m[7];
[165]167 PIMenu* mc;
168
[1971]169 PIContainer* statcont; // Container pour les widgets zoom, gimv, cmapv ...
[165]170 PIPixmap* zoom;
171 PIPixmap* gimv;
172 PICMapView* cmapv;
[2106]173 // Pour afficher des stats
174 PILabel* lab_mem;
175 PIThermometer* therm_mem;
176 PILabel* lab_cpu;
177 PIThermometer* therm_cpu;
[165]178
[685]179 PIFileChooser * pfc_fits; // Pour les fichiers FITS
180 PIFileChooser * pfc_ppf; // Pour les PPF
[2263]181 PIFileChooser * pfc_ascii; // Pour les fichiers ASCII
[685]182 PIFileChooser * pfc_ps; // Pour les PostScript
[165]183
[1971]184 PIContainer* consolecont; // Container pour la PIConsole
[165]185 PIConsole* mCons;
[293]186 bool redirecout; // true if stdout/err redirected to mCons;
[165]187
188 WindMList mWList;
189 BWMList mBWList;
190 DrwMList mDrwList;
191
192 int mWId,mDId,mBWId;
193
194 PIBaseWdg* mCurWdg;
195 PIBaseWdg* mLastWdg;
196 PIWindow* mCurWin;
197 PIZoneWindow* mGrW;
198 PIStackWindow* mStW;
199 int mGrIdx;
200 int mStIdx;
201
202 ObjMgrWind* mObjmgrw;
203 PPInMgrWind* mPpinmgrw;
204
[1971]205 // Attributs graphiques, etc ...
[548]206 double mIXmin, mIXmax, mIYmin, mIYmax;
[1971]207 bool mAddTitle;
208 unsigned int mAxesFlags;
[165]209
[1971]210 vector<string> mDefaultAtt;
211 vector<string> mAxesAtt;
212
213 // Controles et gestion divers
[165]214 PIMessage mFCMsg; // Message for processing FileOpen
[1971]215 int mFgScSz; // Flag ScreenSize
[165]216 bool mFgCWImg; // true -> Current Widget is PIImage
[2106]217
218 // Pour comptabiliser l'utilisation des ressources
219 ResourceUsage resusg;
220 PIPeriodic* resupd_periodic;
[2188]221
222 // Commande specifie de l'exterieur a executer
223 // Pris en charge par resupd_periodic
224 string exc_command;
225 bool fg_exc_cmd;
[165]226};
227
228#endif
Note: See TracBrowser for help on using the repository browser.