Thu, 23 Feb 2017 23:29:16 +0200
Turned GLRenderer::pixelCapture to GLRenderer::screenCapture() which encapsulates screen capturing properly and returns a ready image.
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013 - 2017 Teemu Piippo * * This program 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. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ #pragma once #include <QGLWidget> #include "main.h" #include "model.h" #include "glShared.h" #include "glcamera.h" #include "hierarchyelement.h" class GLCompiler; class MessageManager; class QDialogButtonBox; class QDoubleSpinBox; class QSpinBox; class QLineEdit; class QTimer; class MagicWandMode; struct CameraInfo { CameraInfo(const CameraInfo&) = delete; int glrotate[3]; Axis localX; Axis localY; bool negatedX; bool negatedY; bool negatedDepth; // is greater depth value closer to camera? }; enum class Camera { Top, Front, Left, Bottom, Back, Right, Free, _End }; struct CameraIcon { QPixmap image; QRect sourceRect; QRect targetRect; QRect hitRect; Camera camera; }; MAKE_ITERABLE_ENUM(Camera) // The main renderer object, draws the brick on the screen, manages the camera and selection picking. class GLRenderer : public QGLWidget, protected QOpenGLFunctions, public HierarchyElement { Q_OBJECT public: GLRenderer(const Model* model, QWidget* parent = nullptr); ~GLRenderer(); Camera camera() const; GLCamera& currentCamera(); const GLCamera& currentCamera() const; Qt::KeyboardModifiers keyboardModifiers() const; const Model* model() const; QPoint const& mousePosition() const; QPointF const& mousePositionF() const; LDObject* objectAtCursor() const; QSet<LDObject*> pick(const QRect& range); LDObject* pick(int mouseX, int mouseY); void resetAllAngles(); void resetAngles(); QImage screenCapture(); void setBackground(); void setCamera(Camera cam); QPen textPen() const; static const QPen thinBorderPen; static const GLRotationMatrix topCameraMatrix; static const GLRotationMatrix frontCameraMatrix; static const GLRotationMatrix leftCameraMatrix; static const GLRotationMatrix bottomCameraMatrix; static const GLRotationMatrix backCameraMatrix; static const GLRotationMatrix rightCameraMatrix; static const GLRotationMatrix ldrawToGLAdapterMatrix; signals: void objectHighlightingChanged(LDObject* object); protected: void initializeGL(); void keyPressEvent(QKeyEvent* event); void keyReleaseEvent(QKeyEvent* event); void leaveEvent(QEvent* event); void mousePressEvent(QMouseEvent* event); void mouseMoveEvent(QMouseEvent* ev); void mouseReleaseEvent(QMouseEvent* ev); void paintEvent(QPaintEvent*); void resizeGL(int w, int h); void wheelEvent(QWheelEvent* ev); QColor backgroundColor() const; virtual bool freeCameraAllowed() const; bool isDrawingSelectionScene() const; Qt::MouseButtons lastButtons() const; bool mouseHasMoved() const; virtual void overpaint(QPainter& painter); double panning (Axis ax) const; const QGenericMatrix<4, 4, GLfloat>& rotationMatrix() const; double zoom(); template<typename... Args> QString format (QString fmtstr, Args... args) { return ::format (fmtstr, args...); } private: const Model* const m_model; GLCompiler* m_compiler; LDObject* m_objectAtCursor = nullptr; CameraIcon m_cameraIcons[7]; QTimer* m_toolTipTimer; Qt::MouseButtons m_lastButtons; Qt::KeyboardModifiers m_currentKeyboardModifiers; QGenericMatrix<4, 4, GLfloat> m_rotationMatrix; GLCamera m_cameras[7]; bool m_useDarkBackground = false; bool m_panning = false; bool m_initialized = false; bool m_isDrawingSelectionScene = false; bool m_isCameraMoving = false; bool m_needZoomToFit = true; bool m_axesInitialized = false; QPoint m_mousePosition; QPoint m_globalpos; QPointF m_mousePositionF; Camera m_camera; GLuint m_axeslist; int m_totalMouseMove; QColor m_backgroundColor; GLuint m_axesVbo; GLuint m_axesColorVbo; void calcCameraIcons(); void drawGLScene(); void drawVbos(VboClass surface, VboSubclass colors); void freeAxes(); void highlightCursorObject(); void initializeAxes(); void initializeLighting(); void initGLData(); void needZoomToFit(); Q_SLOT void removeObject(LDObject* object); void setPicking(bool picking); Q_SLOT void showCameraIconTooltip(); void zoomToFit(); void zoomAllToFit(); };