summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-07 03:45:41 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-05-07 21:23:03 +0200
commita8e66dd657dff28ef7ae9cfbe15ea43e4c08aefd (patch)
tree1746b15cf28cb838f0f31ab686963c6b759e39f9 /include
parent036b6c9ef43ab98d481f666cfe83896e8437daa2 (diff)
add new window that contains OpenGL context
Change-Id: I81ce3581942d03785809d728b6b54b570899bcdc
Diffstat (limited to 'include')
-rw-r--r--include/vcl/openglwin.hxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/vcl/openglwin.hxx b/include/vcl/openglwin.hxx
new file mode 100644
index 000000000000..5c57d4507926
--- /dev/null
+++ b/include/vcl/openglwin.hxx
@@ -0,0 +1,28 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_VCL_OPENGLWIN_HXX
+#define INCLUDED_VCL_OPENGLWIN_HXX
+
+#include <vcl/syschild.hxx>
+#include <vcl/opengl/OpenGLContext.hxx>
+
+class OpenGLWindow : public SystemChildWindow
+{
+public:
+ OpenGLWindow(Window* pParent);
+ OpenGLContext& getContext();
+
+private:
+ OpenGLContext maContext;
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */