2016-12-23 17:06:33 +01:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
2020-09-10 20:07:56 -07:00
|
|
|
* Copyright (C) 2016-2020 Kicad Developers, see change_log.txt for contributors.
|
2016-12-23 17:06:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2016-12-23 16:21:00 +01:00
|
|
|
#include <gal/gal_display_options.h>
|
2020-01-12 20:44:19 -05:00
|
|
|
#include <settings/app_settings.h>
|
|
|
|
#include <settings/common_settings.h>
|
2019-03-22 21:15:26 +00:00
|
|
|
|
2019-04-27 14:53:20 +01:00
|
|
|
#include <wx/log.h>
|
2016-12-23 16:21:00 +01:00
|
|
|
|
2017-02-16 10:40:35 +08:00
|
|
|
#include <config_map.h>
|
2024-08-27 19:15:25 -04:00
|
|
|
#include <dpi_scaling.h>
|
2017-02-16 10:40:35 +08:00
|
|
|
|
2017-01-11 16:19:58 +01:00
|
|
|
using namespace KIGFX;
|
|
|
|
|
2017-02-16 10:40:35 +08:00
|
|
|
|
2019-04-27 14:53:20 +01:00
|
|
|
/**
|
2019-06-01 14:46:30 +01:00
|
|
|
* Flag to enable GAL_DISPLAY_OPTIONS logging
|
2019-04-27 14:53:20 +01:00
|
|
|
*
|
|
|
|
* Use "KICAD_GAL_DISPLAY_OPTIONS" to enable.
|
|
|
|
*
|
|
|
|
* @ingroup trace_env_vars
|
|
|
|
*/
|
|
|
|
static const wxChar* traceGalDispOpts = wxT( "KICAD_GAL_DISPLAY_OPTIONS" );
|
|
|
|
|
|
|
|
|
2017-01-11 16:19:58 +01:00
|
|
|
GAL_DISPLAY_OPTIONS::GAL_DISPLAY_OPTIONS()
|
2017-02-13 19:53:58 +08:00
|
|
|
: gl_antialiasing_mode( OPENGL_ANTIALIASING_MODE::NONE ),
|
2018-01-04 05:13:00 -07:00
|
|
|
cairo_antialiasing_mode( CAIRO_ANTIALIASING_MODE::NONE ),
|
2017-03-08 09:37:12 +01:00
|
|
|
m_gridStyle( GRID_STYLE::DOTS ),
|
2020-09-10 20:07:56 -07:00
|
|
|
m_gridSnapping( GRID_SNAPPING::ALWAYS ),
|
2019-02-23 19:26:04 -08:00
|
|
|
m_gridLineWidth( 1.0 ),
|
2017-03-19 04:03:24 +08:00
|
|
|
m_gridMinSpacing( 10.0 ),
|
|
|
|
m_axesEnabled( false ),
|
2017-03-20 04:51:59 +08:00
|
|
|
m_fullscreenCursor( false ),
|
2019-03-22 21:15:26 +00:00
|
|
|
m_forceDisplayCursor( false ),
|
|
|
|
m_scaleFactor( DPI_SCALING::GetDefaultScaleFactor() )
|
2017-01-11 16:19:58 +01:00
|
|
|
{
|
2020-02-21 17:57:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-11 16:19:58 +01:00
|
|
|
void GAL_DISPLAY_OPTIONS::NotifyChanged()
|
|
|
|
{
|
2023-01-16 19:07:41 -05:00
|
|
|
wxLogTrace( traceGalDispOpts, wxS( "Change notification" ) );
|
2019-04-27 14:53:20 +01:00
|
|
|
|
2017-01-11 16:19:58 +01:00
|
|
|
Notify( &GAL_DISPLAY_OPTIONS_OBSERVER::OnGalDisplayOptionsChanged, *this );
|
2023-09-22 23:17:53 -04:00
|
|
|
}
|