source: Sophya/trunk/SophyaPI/PIext/pihisto.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: 496 bytes
Line 
1#ifndef PIHISTO_H
2#define PIHISTO_H
3
4#include "histos.h"
5#include "pidrawer.h"
6
7class PIHisto : public PIDrawer {
8public:
9 PIHisto(Histo* histo, bool ad=false);
10 virtual ~PIHisto();
11 virtual void Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, float ymax);
12 virtual void UpdateLimits();
13 virtual void DrawStats(PIGraphicUC* g);
14 inline Histo* Histogram() { return(mHisto); }
15
16protected:
17 Histo* mHisto;
18 bool mAdDO;
19};
20
21#endif
Note: See TracBrowser for help on using the repository browser.