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

#ifndef __fitsmask_h__
#define __fitsmask_h__

#include "util.h"

class Base;
class Context;

class FitsMask {
 public:
  enum MaskType {ZERO, NONZERO, RANGE};

 private:
  Context* context_;
  Matrix mm_;

  char* colorName_;
  XColor* color_;
  char trueColor_[4];

  MaskType mark_;
  double low_;
  double high_;

 protected:
  FitsMask* previous_;
  FitsMask* next_;

 public:
  FitsMask(Base*, char*, MaskType, double, double);
  virtual ~FitsMask();

  Context* context() {return context_;}
  Matrix& mm() {return mm_;}
  XColor* color() {return color_;}
  char* trueColor() {return trueColor_;}
  MaskType mark() {return mark_;}
  double low() {return low_;}
  double high() {return high_;}

  FitsMask* previous() {return previous_;}
  void setPrevious(FitsMask* m) {previous_ = m;}
  FitsMask* next() {return next_;}
  void setNext(FitsMask* m) {next_ = m;}
};

#endif