aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.h b/main.h
index f3bcb66..fd7afbf 100644
--- a/main.h
+++ b/main.h
@@ -75,6 +75,7 @@ public:
ColorScaleRainbow
};
+ // No need to be static: this class is a singleton
ColorScale COLOR_SCALE_CATEGORICAL;
ColorScale COLOR_SCALE_CONTINUOUS;
ColorScale COLOR_SCALE_DIVERGENT;
@@ -100,6 +101,8 @@ public:
splat->setColorScale(getColorScale(colorScaleType));
}
+ // Pointer to visual components whose values are set in the main() function
+ // after components are instantiated by the QtQuick engine
BarChart *barChart;
Colormap *colormap;
Scatterplot *cpPlot, *rpPlot;