Skip to content
Snippets Groups Projects
Commit 568b9496 authored by Studer Gabriel's avatar Studer Gabriel
Browse files

export the new GLCanvas to Python

Some people might like to have a raw OpenGLWindow to directly interact
with gfx::Scene
parent 2f15832d
Branches
Tags
No related merge requests found
......@@ -17,6 +17,7 @@ set(OST_GUI_PYMOD_SOURCES
export_file_loader.cc
export_file_viewer.cc
export_widget.cc
export_gl_canvas.cc
)
set(OST_GUI_SCENE_PYMOD_MODULES
__init__.py
......
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2011 by the OpenStructure authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
#include <boost/python.hpp>
#include <ost/gui/gl_canvas.hh>
#include "sip_handler.hh"
using namespace boost::python;
using namespace ost;
using namespace ost::gui;
void WrapSetGLCanvasFormat(GLCanvas& canvas, object py_obj) {
QSurfaceFormat* f = get_cpp_qobject<QSurfaceFormat>(py_obj);
canvas.setFormat(*f);
}
void export_GLCanvas() {
class_<GLCanvas, boost::noncopyable>("GLCanvas", init<>())
.def("Show", &GLCanvas::show)
.def("SetFormat", &WrapSetGLCanvasFormat)
.def("SetDefaultFormat", &GLCanvas::SetDefaultFormat)
.def("GetQObject",&get_py_qobject<GLCanvas>)
.add_property("qobject", &get_py_qobject<GLCanvas>)
;
}
......@@ -41,6 +41,7 @@ void export_MenuBar();
void export_FileLoader();
void export_FileViewer();
void export_Widget();
void export_GLCanvas();
#if OST_SPNAV_ENABLED
void export_Input();
......@@ -120,6 +121,7 @@ BOOST_PYTHON_MODULE(_ost_gui)
export_FileLoader();
export_FileViewer();
export_Widget();
export_GLCanvas();
#if OST_SPNAV_ENABLED
export_Input();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment