KiCad PCB EDA Suite
Loading...
Searching...
No Matches
hidpi_gl_canvas.h
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 The KiCad Developers, see AUTHORS.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, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef HIDPI_GL_CANVAS_H
24#define HIDPI_GL_CANVAS_H
25
26#include <kicad_gl/kiglad.h> // Must be included first
27#include <wx/glcanvas.h>
28
29#include <view/view_controls.h>
30#include <gal/gal.h>
31
32
38class GAL_API HIDPI_GL_CANVAS : public wxGLCanvas
39{
40public:
41 // wxGLCanvas constructor
42 HIDPI_GL_CANVAS( const KIGFX::VC_SETTINGS& aSettings, wxWindow* aParent,
43 const wxGLAttributes& aGLAttribs, wxWindowID aId = wxID_ANY,
44 const wxPoint& aPos = wxDefaultPosition, const wxSize& aSize = wxDefaultSize,
45 long aStyle = 0, const wxString& aName = wxGLCanvasName,
46 const wxPalette& aPalette = wxNullPalette );
47
48 virtual wxSize GetNativePixelSize() const;
49
53 wxPoint GetNativePosition( const wxPoint& aPoint ) const;
54
58 double GetScaleFactor() const;
59
60 void SetVcSettings( const KIGFX::VC_SETTINGS& aVcSettings ) { m_settings = aVcSettings; }
61
62protected:
65};
66
67#endif // HIDPI_GL_CANVAS_H
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)
KIGFX::VC_SETTINGS m_settings
< Current VIEW_CONTROLS settings.
virtual wxSize GetNativePixelSize() const
void SetVcSettings(const KIGFX::VC_SETTINGS &aVcSettings)
wxPoint GetNativePosition(const wxPoint &aPoint) const
Convert the given point from client coordinates to native pixel coordinates.
double GetScaleFactor() const
Get the current scale factor.
#define GAL_API
Definition gal.h:27
Structure to keep VIEW_CONTROLS settings for easy store/restore operations.