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