[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] | 39 | enum DispWinEnum {Disp_Default, Disp_Next, Disp_Win, Disp_Same, Disp_Stack, Disp_Inset};
|
---|
[165] | 40 |
|
---|
| 41 | typedef map<long, PIWindow*, less<long> > WindMList;
|
---|
| 42 | typedef map<long, PIBaseWdg*, less<long> > BWMList;
|
---|
| 43 | typedef map<long, PIDrawer*, less<long> > DrwMList;
|
---|
| 44 |
|
---|
| 45 | class PIStdImgApp : public PIApplication {
|
---|
| 46 | public:
|
---|
| 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)
|
---|
[1971] | 68 | void AddText(string const & txt, double xp, double yp, string const& opt);
|
---|
[1642] | 69 | // Ajout de lignes, rectangles, cercles (provisoires - Aout 2001)
|
---|
[2243] | 70 | void AddLine(double xp1, double yp1, double xp2, double yp2,
|
---|
| 71 | string const& opt, bool fgarrow=false);
|
---|
[1971] | 72 | void AddRectangle(double xp1, double yp1, double xp2, double yp2, string const& opt,
|
---|
| 73 | bool fgfill=false);
|
---|
| 74 | void AddCircle(double xc, double yc, double r, string const& opt,
|
---|
| 75 | bool fgfill=false);
|
---|
[2243] | 76 | void AddArc(double x1, double y1, double x2, double y2,
|
---|
| 77 | double x3, double y3, string const& opt, bool fgfill=false);
|
---|
[1642] | 78 |
|
---|
[1131] | 79 | // Fonction Ajout de titre de trace
|
---|
[2165] | 80 | void SetTitle(string const & titleup, string const & titledown, string const& opt);
|
---|
| 81 | // Fonction d'Ajout label d'axe X,Y
|
---|
| 82 | void SetAxeLabels(string const & xLabel, string const & yLabel, string const& opt);
|
---|
[349] | 83 |
|
---|
[1642] | 84 | // Acces au BaseDrawer (PIElDrawer) du PIBaseWdg courant
|
---|
[2165] | 85 | PIDrawer* CurrentElDrawer();
|
---|
[349] | 86 |
|
---|
[165] | 87 | void CreateGraphWin(int nx=1, int ny=1, int sx=0, int sy = 0);
|
---|
| 88 | void CreateStackWin(int sx=0, int sy = 0);
|
---|
[1971] | 89 | PIWindow * GetWindow(DispWinEnum typ, int& sx, int& sy, int& px, int& py, int& flag, char * nom);
|
---|
[165] | 90 | void SetZone(int nzx=1, int nzy=1);
|
---|
| 91 | void StackWinNext();
|
---|
| 92 |
|
---|
| 93 | void DeleteWindow(PIWindow* w);
|
---|
| 94 | void DeleteBaseWidget(PIBaseWdg* w, bool dw=true, bool dwin=true);
|
---|
| 95 | void DelWRsId(int k);
|
---|
[368] | 96 | bool CheckWRsId(int k);
|
---|
[165] | 97 | void CloseAllWindows();
|
---|
| 98 |
|
---|
| 99 | inline NamedObjMgr* ObjMgr() { return mObjMgr; }
|
---|
| 100 | inline PIACmd* CmdInterpreter() { return mCmd; }
|
---|
| 101 |
|
---|
| 102 | PIWindow* CurrentWindow() { return (mCurWin); };
|
---|
| 103 | PIBaseWdg* CurrentBaseWdg() { return (mCurWdg); };
|
---|
| 104 |
|
---|
| 105 | inline PIPixmap* ZoomW() { return zoom; }
|
---|
| 106 | inline PIPixmap* GloVW() { return gimv; }
|
---|
| 107 | inline PICMapView* CMapVW() { return cmapv; }
|
---|
| 108 | inline PIConsole* GetConsole() { return mCons; }
|
---|
| 109 |
|
---|
[293] | 110 | inline PIMenu* SpecialMenu() { return m[5]; }
|
---|
| 111 | inline PIMenu* ModulesMenu() { return m[6]; }
|
---|
[165] | 112 |
|
---|
| 113 | inline ObjMgrWind* ObjMgrW() { return mObjmgrw; }
|
---|
| 114 | inline PPInMgrWind* PPInMgrW() { return mPpinmgrw; }
|
---|
| 115 |
|
---|
[1971] | 116 | // Gestion (show/hide) de la fenetre Stat/ZoomWindow
|
---|
| 117 | void StatZoomWindowSetVisible(bool fg=true);
|
---|
| 118 |
|
---|
[2106] | 119 | // Update de l'info de la fenetre stats/ressources
|
---|
| 120 | void UpdateStatResourceInfo();
|
---|
| 121 |
|
---|
[165] | 122 | // Redirection ou Non de StdOut/StdErr
|
---|
| 123 | void RedirectStdOutErr(bool fg = true);
|
---|
[293] | 124 | inline bool HasRedirectedStdOutErr() { return(redirecout); }
|
---|
[165] | 125 | // Gestion des signaux
|
---|
[374] | 126 | void CatchSignals(bool fgfpe=true, bool fgsegv=true);
|
---|
[165] | 127 |
|
---|
[548] | 128 | void SetInsetLimits(double xmin=0.4, double xmax=0.6, double ymin=0.4, double ymax=0.6);
|
---|
[1131] | 129 | inline void SetAutoAddTitle(bool aatit=true) { mAddTitle = aatit; }
|
---|
[1971] | 130 | void SetAxesAtt(unsigned int axfl) { mAxesFlags = axfl; }
|
---|
| 131 | // void SaveGraphicAtt();
|
---|
| 132 | // void RestoreGraphicAtt();
|
---|
| 133 | void SetDefaultGraphicAttributes(string const & opt);
|
---|
| 134 | void SetDefaultAxesAttributes(string const & opt);
|
---|
| 135 | DispWinEnum ParseDisplayOption(string const & opt, vector<string>& opts);
|
---|
[506] | 136 |
|
---|
[165] | 137 | // Gestion fichiers PS
|
---|
| 138 | int num_eps;
|
---|
| 139 | PSFile *mpsfile;
|
---|
| 140 | string name_ps;
|
---|
| 141 |
|
---|
| 142 | // Gestion OUT-PPF
|
---|
| 143 | POutPersist* mPpfout;
|
---|
| 144 | string name_outppf;
|
---|
| 145 |
|
---|
| 146 | private:
|
---|
| 147 | void MBProcess1(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
|
---|
| 148 | void MBProcess2(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
|
---|
| 149 | void MBProcess3(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
|
---|
| 150 | void MBProcess4(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
|
---|
| 151 | void MBProcess5(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
|
---|
| 152 | void MBProcess6(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
|
---|
| 153 |
|
---|
[1971] | 154 |
|
---|
[165] | 155 |
|
---|
| 156 | NamedObjMgr* mObjMgr;
|
---|
| 157 | PIACmd* mCmd;
|
---|
| 158 |
|
---|
[293] | 159 | PIMenu* m[7];
|
---|
[165] | 160 | PIMenu* mc;
|
---|
| 161 |
|
---|
[1971] | 162 | PIContainer* statcont; // Container pour les widgets zoom, gimv, cmapv ...
|
---|
[165] | 163 | PIPixmap* zoom;
|
---|
| 164 | PIPixmap* gimv;
|
---|
| 165 | PICMapView* cmapv;
|
---|
[2106] | 166 | // Pour afficher des stats
|
---|
| 167 | PILabel* lab_mem;
|
---|
| 168 | PIThermometer* therm_mem;
|
---|
| 169 | PILabel* lab_cpu;
|
---|
| 170 | PIThermometer* therm_cpu;
|
---|
[165] | 171 |
|
---|
[685] | 172 | PIFileChooser * pfc_fits; // Pour les fichiers FITS
|
---|
| 173 | PIFileChooser * pfc_ppf; // Pour les PPF
|
---|
| 174 | PIFileChooser * pfc_ps; // Pour les PostScript
|
---|
[165] | 175 |
|
---|
[1971] | 176 | PIContainer* consolecont; // Container pour la PIConsole
|
---|
[165] | 177 | PIConsole* mCons;
|
---|
[293] | 178 | bool redirecout; // true if stdout/err redirected to mCons;
|
---|
[165] | 179 |
|
---|
| 180 | WindMList mWList;
|
---|
| 181 | BWMList mBWList;
|
---|
| 182 | DrwMList mDrwList;
|
---|
| 183 |
|
---|
| 184 | int mWId,mDId,mBWId;
|
---|
| 185 |
|
---|
| 186 | PIBaseWdg* mCurWdg;
|
---|
| 187 | PIBaseWdg* mLastWdg;
|
---|
| 188 | PIWindow* mCurWin;
|
---|
| 189 | PIZoneWindow* mGrW;
|
---|
| 190 | PIStackWindow* mStW;
|
---|
| 191 | int mGrIdx;
|
---|
| 192 | int mStIdx;
|
---|
| 193 |
|
---|
| 194 | ObjMgrWind* mObjmgrw;
|
---|
| 195 | PPInMgrWind* mPpinmgrw;
|
---|
| 196 |
|
---|
[1971] | 197 | // Attributs graphiques, etc ...
|
---|
[548] | 198 | double mIXmin, mIXmax, mIYmin, mIYmax;
|
---|
[1971] | 199 | bool mAddTitle;
|
---|
| 200 | unsigned int mAxesFlags;
|
---|
[165] | 201 |
|
---|
[1971] | 202 | vector<string> mDefaultAtt;
|
---|
| 203 | vector<string> mAxesAtt;
|
---|
| 204 |
|
---|
| 205 | // Controles et gestion divers
|
---|
[165] | 206 | PIMessage mFCMsg; // Message for processing FileOpen
|
---|
[1971] | 207 | int mFgScSz; // Flag ScreenSize
|
---|
[165] | 208 | bool mFgCWImg; // true -> Current Widget is PIImage
|
---|
[2106] | 209 |
|
---|
| 210 | // Pour comptabiliser l'utilisation des ressources
|
---|
| 211 | ResourceUsage resusg;
|
---|
| 212 | PIPeriodic* resupd_periodic;
|
---|
[2188] | 213 |
|
---|
| 214 | // Commande specifie de l'exterieur a executer
|
---|
| 215 | // Pris en charge par resupd_periodic
|
---|
| 216 | string exc_command;
|
---|
| 217 | bool fg_exc_cmd;
|
---|
[165] | 218 | };
|
---|
| 219 |
|
---|
| 220 | #endif
|
---|