KiCad PCB EDA Suite
Loading...
Searching...
No Matches
hidpi_gl_canvas.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KICAD, a free EDA CAD application.
3 *
4 * Copyright (C) 2017 Bernhard Stegmaier <[email protected]>
5 * Copyright (C) 2016-2017 Kicad Developers, see change_log.txt for contributors.
6 *
7 * Base class for HiDPI aware wxGLCanvas implementations.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#include <gal/hidpi_gl_canvas.h>
28
29#include <gal/dpi_scaling.h>
30
31
32HIDPI_GL_CANVAS::HIDPI_GL_CANVAS( const KIGFX::VC_SETTINGS& aSettings, wxWindow* aParent,
33 const wxGLAttributes& aGLAttribs, wxWindowID aId,
34 const wxPoint& aPos, const wxSize& aSize, long aStyle,
35 const wxString& aName, const wxPalette& aPalette ) :
36 wxGLCanvas( aParent, aGLAttribs, aId, aPos, aSize, aStyle, aName, aPalette ),
37 m_settings( aSettings ),
38 m_scale_factor( DPI_SCALING::GetDefaultScaleFactor() )
39{
40}
41
42
44{
45 wxSize size = wxGLCanvas::GetClientSize();
46
47 const double scaleFactor = GetScaleFactor();
48 size.x *= scaleFactor;
49 size.y *= scaleFactor;
50
51 return size;
52}
53
54
55wxPoint HIDPI_GL_CANVAS::GetNativePosition( const wxPoint& aPoint ) const
56{
57 wxPoint nativePoint = aPoint;
58
59 const double scaleFactor = GetScaleFactor();
60 nativePoint.x *= scaleFactor;
61 nativePoint.y *= scaleFactor;
62
63 return nativePoint;
64}
65
66
67void HIDPI_GL_CANVAS::SetScaleFactor( double aNewScaleFactor )
68{
69 m_scale_factor = aNewScaleFactor;
70}
71
72
74{
75 return m_scale_factor;
76}
Class to handle configuration and automatic determination of the DPI scale to use for canvases.
Definition: dpi_scaling.h:36
HIDPI_GL_CANVAS(const KIGFX::VC_SETTINGS &aSettings, wxWindow *aParent, const wxGLAttributes &aGLAttribs, wxWindowID aId=wxID_ANY, const wxPoint &aPos=wxDefaultPosition, const wxSize &aSize=wxDefaultSize, long aStyle=0, const wxString &aName=wxGLCanvasName, const wxPalette &aPalette=wxNullPalette)
void SetScaleFactor(double aFactor)
Set the canvas scale factor, probably for a hi-DPI display.
virtual wxSize GetNativePixelSize() const
wxPoint GetNativePosition(const wxPoint &aPoint) const
Convert the given point from client coordinates to native pixel coordinates.
double m_scale_factor
The current scale factor (e.g.
double GetScaleFactor() const
Get the current scale factor.
Structure to keep VIEW_CONTROLS settings for easy store/restore operations.
Definition: view_controls.h:43