1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
|
/*
XMunipack - plotting
Copyright © 2012-14, 2019-21 F.Hroch (hroch@physics.muni.cz)
This file is part of Munipack.
Munipack is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Munipack is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Munipack. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _XMUNIPACK_PLOT_H_
#define _XMUNIPACK_PLOT_H_
#include "event.h"
#include "mathplot.h"
#include "fits.h"
#include <plplot.h>
#include <wx/wx.h>
/*
class MuniPlotTable
{
public:
MuniPlotTable(const std::vector<wxRealPoint>&,const wxColour& =*wxBLACK);
std::vector<wxRealPoint> points;
wxColour colour;
};
*/
// class MuniPlot: public mpWindow
// //class MuniPlot: public wxPLplotwindow
// {
// public:
// MuniPlot(wxWindow *);
// void AddData(const MuniPlotTable&);
// private:
// std::vector<MuniPlotTable> tables;
// double xmin,xmax,ymin,ymax;
// // void OnSize(wxSizeEvent&);
// void Draw();
// };
/*
A general wrapper for plplot with output to a memory with Cairo driver.
The user should implement MakeGraph() to provide a plotting function.
*/
class PlPlotCairo: public wxPanel
{
wxImage graph;
bool ready;
void InitGraph();
void Plotter(bool=false);
void OnPaint(wxPaintEvent&);
public:
PlPlotCairo(wxWindow *, const wxSize&);
void Update();
virtual void MakeGraph() = 0;
};
class MuniPlotHistoBase: public PlPlotCairo
{
protected:
FitsHisto hist;
PLFLT xmin,xmax,ymin,ymax;
void StrokeHistoProfile(int, int, PLINT&, PLFLT*, PLFLT*);
public:
MuniPlotHistoBase(wxWindow *, const wxSize&);
void SetHisto(const FitsHisto&);
};
class MuniPlotHisto: public MuniPlotHistoBase
{
float black,sense;
void MakeGraph();
public:
MuniPlotHisto(wxWindow *, const wxSize&, double, double);
void SetScale(double,double);
};
class MuniPlotNite: public MuniPlotHistoBase
{
float level, width;
bool enabled;
void MakeGraph();
void MakePalette(PLFLT, PLINT, PLINT *, PLINT *, PLINT *);
public:
MuniPlotNite(wxWindow *, const wxSize&, float, float, bool);
void SetMeso(float, float);
void SetEnabled(bool);
};
class MuniPlotItt: public PlPlotCairo
{
FitsItt itt;
void MakeGraph();
public:
MuniPlotItt(wxWindow *, const wxSize&, const FitsItt&);
void SetItt(int);
};
class MuniPlotPalette: public PlPlotCairo
{
FitsPalette pal;
FitsItt itt;
float black, sense;
void MakeGraph();
public:
MuniPlotPalette(wxWindow *, const wxSize&, int, bool, int, float, float);
void SetPalette(int);
void SetInverse(bool);
void SetItt(int);
void SetScale(float,float);
};
class MuniPlotSaturation: public PlPlotCairo
{
float saturation;
float white_point[2];
void MakeGraph();
void MakeTable(PLFLT, PLFLT, PLINT, PLINT *, PLINT *, PLINT *);
void plfbox(PLFLT,PLFLT,PLFLT,PLFLT);
void plftri(PLFLT,PLFLT,PLFLT,PLFLT);
public:
MuniPlotSaturation(wxWindow *, const wxSize&, float, float, float);
void SetSaturation(float);
void SetWhitePoint(float,float);
};
/*
class MuniPlotUV: public wxPLplotwindow
{
public:
MuniPlotUV(wxWindow *);
virtual ~MuniPlotUV();
wxSize DoGetBestSize() const;
void DrawTri(const std::vector<double>&, const std::vector<double>&);
void Clear();
private:
int nuv;
PLFLT *u,*v;
void Draw();
};
*/
class MuniPlotFind: public mpWindow
{
FitsArray array;
int i0, j0, side;
double fwhm, back;
wxSize bestsize;
bool update;
double gnorm(int,int,int,int, double) const;
void OnIdle(wxIdleEvent&);
void Refresh();
public:
MuniPlotFind(wxWindow *, const FitsArray&);
wxSize DoGetBestSize() const { return bestsize; }
void SetPoint(int,int);
void SetFwhm(double);
void Update();
};
#endif
|