From 5c2abedddce66084f79e5c1fa6c477aef596c207 Mon Sep 17 00:00:00 2001 From: koldo Date: Wed, 2 Jun 2010 19:43:02 +0000 Subject: [PATCH] .Scatter: Added GetTitleFont(), GetH_Border() and GetV_Border() git-svn-id: svn://ultimatepp.org/upp/trunk@2451 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- bazaar/Scatter/Scatter.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bazaar/Scatter/Scatter.h b/bazaar/Scatter/Scatter.h index 61e5ebefd..d4ce8f8d4 100644 --- a/bazaar/Scatter/Scatter.h +++ b/bazaar/Scatter/Scatter.h @@ -192,6 +192,10 @@ public: Scatter& SetMaxZoom(double x, double y = -1) {maxXZoom = x; maxYZoom = y; return *this;}; Scatter& SetFastViewX(bool set = true) {fastViewX = set; return *this;}; + + Font& GetTitleFont() {return titleFont;}; + int GetH_Border() {return px;}; + int GetV_Border() {return py;}; private: class ::Color graphColor;