2017-12-07 15:57:47 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 Bernhard Stegmaier <stegmaier@sw-systems.de>
|
2021-07-15 19:26:35 +00:00
|
|
|
* Copyright (C) 2016-2021 Kicad Developers, see AUTHORS.txt for contributors.
|
2017-12-07 15:57:47 +00:00
|
|
|
*
|
|
|
|
* Base class for HiDPI aware wxGLCanvas implementations.
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HIDPI_GL_CANVAS_H
|
|
|
|
#define HIDPI_GL_CANVAS_H
|
|
|
|
|
|
|
|
#include <wx/glcanvas.h>
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-12-21 23:42:21 +00:00
|
|
|
* wxGLCanvas wrapper for HiDPI/Retina support.
|
2017-12-07 15:57:47 +00:00
|
|
|
*
|
|
|
|
* This is a small wrapper class to enable HiDPI/Retina support for wxGLCanvas.
|
|
|
|
*/
|
|
|
|
class HIDPI_GL_CANVAS : public wxGLCanvas
|
|
|
|
{
|
|
|
|
public:
|
2017-12-07 21:37:36 +00:00
|
|
|
// wxGLCanvas constructor
|
2021-07-15 19:26:35 +00:00
|
|
|
HIDPI_GL_CANVAS( wxWindow *parent, wxWindowID id = wxID_ANY, const int* attribList = nullptr,
|
2020-12-21 23:42:21 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0, const wxString& name = wxGLCanvasName,
|
|
|
|
const wxPalette& palette = wxNullPalette );
|
2017-12-07 21:37:36 +00:00
|
|
|
|
2019-01-21 18:42:06 +00:00
|
|
|
virtual wxSize GetNativePixelSize() const;
|
2019-03-22 21:15:26 +00:00
|
|
|
|
2021-10-10 16:49:58 +00:00
|
|
|
/**
|
|
|
|
* Convert the given point from client coordinates to native pixel coordinates.
|
|
|
|
*/
|
|
|
|
wxPoint GetNativePosition( const wxPoint& aPoint ) const;
|
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
/**
|
|
|
|
* Set the canvas scale factor, probably for a hi-DPI display.
|
|
|
|
*/
|
|
|
|
void SetScaleFactor( double aFactor );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current scale factor
|
|
|
|
*/
|
|
|
|
double GetScaleFactor() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* The current scale factor (e.g. for hi-DPI displays)
|
|
|
|
*/
|
|
|
|
double m_scale_factor;
|
2017-12-07 15:57:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HIDPI_GL_CANVAS_H
|