You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.3 KiB

  1. /*
  2. * This program source code file is part of KICAD, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2017 Bernhard Stegmaier <stegmaier@sw-systems.de>
  5. * Copyright (C) 2016-2021 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, 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. #ifndef HIDPI_GL_CANVAS_H
  27. #define HIDPI_GL_CANVAS_H
  28. #include <wx/glcanvas.h>
  29. /**
  30. * wxGLCanvas wrapper for HiDPI/Retina support.
  31. *
  32. * This is a small wrapper class to enable HiDPI/Retina support for wxGLCanvas.
  33. */
  34. class HIDPI_GL_CANVAS : public wxGLCanvas
  35. {
  36. public:
  37. // wxGLCanvas constructor
  38. HIDPI_GL_CANVAS( wxWindow *parent, wxWindowID id = wxID_ANY, const int* attribList = nullptr,
  39. const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
  40. long style = 0, const wxString& name = wxGLCanvasName,
  41. const wxPalette& palette = wxNullPalette );
  42. virtual wxSize GetNativePixelSize() const;
  43. /**
  44. * Convert the given point from client coordinates to native pixel coordinates.
  45. */
  46. wxPoint GetNativePosition( const wxPoint& aPoint ) const;
  47. /**
  48. * Set the canvas scale factor, probably for a hi-DPI display.
  49. */
  50. void SetScaleFactor( double aFactor );
  51. /**
  52. * Get the current scale factor
  53. */
  54. double GetScaleFactor() const;
  55. private:
  56. /**
  57. * The current scale factor (e.g. for hi-DPI displays)
  58. */
  59. double m_scale_factor;
  60. };
  61. #endif // HIDPI_GL_CANVAS_H