.Scatter: Added GetTitleFont(), GetH_Border() and GetV_Border()

git-svn-id: svn://ultimatepp.org/upp/trunk@2451 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2010-06-02 19:43:02 +00:00
parent 67b97626c7
commit 5c2abedddc

View file

@ -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;