diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-05-07 05:10:12 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-05-07 21:23:04 +0200 |
commit | a7eba60df0a8ce190015a54f8fa919c1bb377a7e (patch) | |
tree | 1a28ed3b2b91963de9c6d3dc2590c8d3653d73f5 /chart2/inc | |
parent | af578839ca4bfd3dfc09203994189254a60e5ea9 (diff) |
the rendering is working on-screen
I can't believe that I finally see something on the screen.
Change-Id: Ic374c8a0d0fa5050b0701a5553136759c9c7602c
Diffstat (limited to 'chart2/inc')
-rw-r--r-- | chart2/inc/ChartModel.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chart2/inc/ChartModel.hxx b/chart2/inc/ChartModel.hxx index fc0741d06a42..6ea16fd25d06 100644 --- a/chart2/inc/ChartModel.hxx +++ b/chart2/inc/ChartModel.hxx @@ -70,6 +70,7 @@ #include <boost/scoped_ptr.hpp> class SvNumberFormatter; +class OpenGLWindow; namespace chart { @@ -595,10 +596,13 @@ public: void getNextTimePoint(); void setTimeBasedRange(sal_Int32 nStart, sal_Int32 nEnd); + OpenGLWindow* getOpenGLWindow(); + private: sal_Int32 mnStart; sal_Int32 mnEnd; bool bSet; + OpenGLWindow* mpOpenGLWindow; }; } // namespace chart |