view libgui/graphics/GLCanvas.h @ 31762:d94ceed56929

GLCanvas: avoid multiple inheritance from both QWidget and QObject To avoid having GLCanvas inherit from both QWidget and QObject, create a separate class, GLWidget, derived from QOpenGLWidget and use that as a member of GLCanvas instead of a base class. * Canvas.h (class Canvas): Derive from QWidget instead of QObject. (Canvas::Canvas): New argument for parent widget. Pass parent to QWidget base class constructor. * GLCanvas.h, GLCanvas.cc (class GLCanvas): Split QOpenGLWidget parts into separate GLWidget class. GLCanvas now processes things related to the interpreter and forwards to GLWidget for rendering. Use unwind_action objects to ensure OpenGL context is restored. (GLCanvas::m_glwidget): New data member for GLWidget. * libbgui/graphics/module.mk (OCTAVE_GUI_GRAPHICS_MOC): Add moc-GLCanvas.cc to the list.
author John W. Eaton <jwe@octave.org>
date Fri, 20 Jan 2023 08:49:19 -0500
parents 345a3f5890e7
children 1d1eff97670e
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2011-2023 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_GLCanvas_h)
#define octave_GLCanvas_h 1

#include <QOffscreenSurface>
#include <QOpenGLContext>
#include <QOpenGLFramebufferObject>
#include <QOpenGLWidget>

#include "Canvas.h"

#include "gl-render.h"
#include "qopengl-functions.h"

OCTAVE_BEGIN_NAMESPACE(octave)

  class GLWidget : public QOpenGLWidget
  {
    Q_OBJECT

  public:

    GLWidget (Canvas& parent_canvas);

    ~GLWidget (void);

    void initializeGL (void);

    void draw (graphics_object go);
    uint8NDArray  do_getPixels (graphics_object go);
    void do_print (const QString& file_cmd, const QString& term,
                   graphics_object go);
    void drawZoomBox (const QPoint& p1, const QPoint& p2);
    void resize (int /* x */, int /* y */,
                 int /* width */, int /* height */) { }
    graphics_object selectFromAxes (const graphics_object& ax,
                                    const QPoint& pt);

    bool begin_rendering (void);
    void end_rendering (void);

  protected:

    void paintGL (void);
    void mouseDoubleClickEvent (QMouseEvent *event);
    void mouseMoveEvent (QMouseEvent *event);
    void mousePressEvent (QMouseEvent *event);
    void mouseReleaseEvent (QMouseEvent *event);
    void wheelEvent (QWheelEvent *event);
    void keyPressEvent (QKeyEvent *event);
    void keyReleaseEvent (QKeyEvent *event);

  private:

    Canvas& m_parent_canvas;

    qopengl_functions m_glfcns;
    opengl_renderer m_renderer;

    QOpenGLContext m_os_context;
    QOffscreenSurface m_os_surface;
  };

  class GLCanvas : public Canvas
  {
  public:

    GLCanvas (octave::interpreter& interp, const graphics_handle& handle,
              QWidget *parent);

    ~GLCanvas (void);

    void draw (const graphics_handle& handle);
    uint8NDArray  do_getPixels (const graphics_handle& handle);
    void do_print (const QString& file_cmd, const QString& term,
                   const graphics_handle& handle);
    void drawZoomBox (const QPoint& p1, const QPoint& p2);
    void resize (int /* x */, int /* y */,
                 int /* width */, int /* height */) { }
    graphics_object selectFromAxes (const graphics_object& ax,
                                    const QPoint& pt);

    QWidget * qWidget (void) { return m_glwidget; }

  private:

    GLWidget *m_glwidget;

    bool begin_rendering (void);
    void end_rendering (void);
  };

OCTAVE_END_NAMESPACE(octave)

#endif