source: Sophya/trunk/SophyaPI/PIext/pigfd1.h@ 165

Last change on this file since 165 was 165, checked in by ercodmgr, 27 years ago

Creation du module PIext en regroupant des fichiers de Drawer/Wdg pour
Objets ds PEIDA/Outils++, Images++, ... et des classes de ProgPI,
lie a piapp (PIStdImgApp, NamedObjMgr, ...) Reza 18/12/98

File size: 636 bytes
Line 
1#ifndef PIGFD1_H
2#define PIGFD1_H
3
4#include "generaldata.h"
5#include "pidrawer.h"
6
7class PIGenFitDat : public PIDrawer {
8public:
9 PIGenFitDat(GeneralFitData* gfd, bool ad);
10 virtual ~PIGenFitDat();
11
12 virtual void Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, float ymax);
13 virtual void UpdateLimits();
14
15 void SelectX(int varx);
16 void SelectErrBar(bool erbx,bool erby);
17
18protected:
19 GeneralFitData* mGFD;
20 bool mAdDO;
21 int VarX; // numero de variable X ds le GeneralFitData
22 bool ErrX,ErrY; // Erreur en X et Y ?
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.