summaryrefslogtreecommitdiffstats
path: root/tksao/util/grid25dbase.h
blob: adfe844112bfe659cec96076c5b249e57e8f5385 (plain)
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
// Copyright (C) 1999-2016
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"

#ifndef __grid25dbase_h__
#define __grid25dbase_h__

#include "gridbase.h"

class Grid25dBase : public GridBase {
 public:  
  Grid25dBase(Widget*);
  Grid25dBase(Widget*, const char*);
  virtual ~Grid25dBase();

  int gLine(int n, float* x, float* y);
  int gQch(float*, float*);
  int gMark(int, const float*, const float*, int) {return 1;}
  int gText(const char* txt, float x, float y, const char* just, 
	    float upx, float upy);
  int gTxExt(const char*, float, float, const char*, 
	      float, float, float*, float*);
  int gScales(float *alpha, float *beta);
};

#endif