aboutsummaryrefslogtreecommitdiff
path: root/divergentcolorscale.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-03-02 15:47:24 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2016-03-02 15:47:24 -0300
commit3ce49858c6859fccc2e4d35839c34685348790d1 (patch)
tree9919729ae2d094ab3bed9fb45184c027713d9127 /divergentcolorscale.h
parent00efaedf4e328604598975a07a497d1ce769bb19 (diff)
Improvements related to ColorScale and screenshots.
* ColorScale: now a pointer whenever needed. main() takes care of updating extents * New class DivergentColorScale: works specifically for divergent scales, always has 3 colors as input: negative values, 0, positive values * ManipulationHandler: ProjectionHistory no longer needed
Diffstat (limited to 'divergentcolorscale.h')
-rw-r--r--divergentcolorscale.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/divergentcolorscale.h b/divergentcolorscale.h
new file mode 100644
index 0000000..9ab3be6
--- /dev/null
+++ b/divergentcolorscale.h
@@ -0,0 +1,24 @@
+#ifndef DIVERGENTCOLORSCALE_H
+#define DIVERGENTCOLORSCALE_H
+
+#include "colorscale.h"
+
+class DivergentColorScale
+ : public ColorScale
+{
+public:
+ DivergentColorScale(const QColor &color1,
+ const QColor &colorMiddle,
+ const QColor &color2);
+
+ enum BuiltinDivergentColorScale {
+ RedGrayBlue
+ };
+
+ QColor color(float t) const;
+
+ static DivergentColorScale builtin(BuiltinDivergentColorScale);
+ static DivergentColorScale *builtin(BuiltinDivergentColorScale, void *);
+};
+
+#endif // DIVERGENTCOLORSCALE_H