2016-12-23 16:06:33 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
|
|
*
|
2017-02-16 02:40:35 +00:00
|
|
|
* Copyright (C) 2016-2017 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>
|
2019-03-22 21:15:26 +00:00
|
|
|
|
2016-12-23 15:21:00 +00:00
|
|
|
#include <wx/config.h>
|
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>
|
2019-03-22 21:15:26 +00:00
|
|
|
#include <dpi_scaling.h>
|
2019-04-11 19:35:52 +00:00
|
|
|
#include <pgm_base.h>
|
2017-02-16 02:40:35 +00:00
|
|
|
|
2017-01-11 15:19:58 +00:00
|
|
|
using namespace KIGFX;
|
|
|
|
|
2017-02-13 11:43:28 +00:00
|
|
|
/*
|
|
|
|
* Config option strings
|
|
|
|
*/
|
2017-02-13 11:53:58 +00:00
|
|
|
static const wxString GalGridStyleConfig( "GridStyle" );
|
2017-02-14 15:31:21 +00:00
|
|
|
static const wxString GalGridLineWidthConfig( "GridLineWidth" );
|
2017-02-13 03:47:50 +00:00
|
|
|
static const wxString GalGridMaxDensityConfig( "GridMaxDensity" );
|
2017-03-08 08:37:12 +00:00
|
|
|
static const wxString GalGridAxesEnabledConfig( "GridAxesEnabled" );
|
2017-03-19 20:51:59 +00:00
|
|
|
static const wxString GalFullscreenCursorConfig( "CursorFullscreen" );
|
2017-03-18 20:03:24 +00:00
|
|
|
static const wxString GalForceDisplayCursorConfig( "ForceDisplayCursor" );
|
2017-02-13 11:43:28 +00:00
|
|
|
|
2016-12-23 15:21:00 +00:00
|
|
|
|
2017-02-16 02:40:35 +00:00
|
|
|
static const UTIL::CFG_MAP<KIGFX::GRID_STYLE> gridStyleConfigVals =
|
|
|
|
{
|
|
|
|
{ KIGFX::GRID_STYLE::DOTS, 0 },
|
|
|
|
{ KIGFX::GRID_STYLE::LINES, 1 },
|
2017-03-01 09:29:19 +00:00
|
|
|
{ KIGFX::GRID_STYLE::SMALL_CROSS,2 },
|
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 ),
|
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
|
|
|
{}
|
2016-12-23 15:21:00 +00:00
|
|
|
|
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
void GAL_DISPLAY_OPTIONS::ReadAppConfig( wxConfigBase& aCfg, const wxString& aBaseName )
|
2017-01-11 15:19:58 +00:00
|
|
|
{
|
2019-04-11 19:35:52 +00:00
|
|
|
const wxString baseName = aBaseName + GAL_DISPLAY_OPTIONS_KEY;
|
|
|
|
|
2019-04-27 13:53:20 +00:00
|
|
|
wxLogTrace( traceGalDispOpts, "Reading options with base name '%s'", baseName );
|
|
|
|
|
2017-02-16 02:40:35 +00:00
|
|
|
long readLong; // Temp value buffer
|
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
aCfg.Read( baseName + GalGridStyleConfig, &readLong,
|
|
|
|
static_cast<long>( KIGFX::GRID_STYLE::DOTS ) );
|
2017-02-16 02:40:35 +00:00
|
|
|
m_gridStyle = UTIL::GetValFromConfig( gridStyleConfigVals, readLong );
|
2017-02-13 11:53:58 +00:00
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
aCfg.Read( baseName + GalGridLineWidthConfig, &m_gridLineWidth, 1.0 );
|
|
|
|
aCfg.Read( baseName + GalGridMaxDensityConfig, &m_gridMinSpacing, 10 );
|
|
|
|
aCfg.Read( baseName + GalGridAxesEnabledConfig, &m_axesEnabled, false );
|
|
|
|
aCfg.Read( baseName + GalFullscreenCursorConfig, &m_fullscreenCursor, false );
|
|
|
|
aCfg.Read( baseName + GalForceDisplayCursorConfig, &m_forceDisplayCursor, true );
|
|
|
|
|
|
|
|
NotifyChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GAL_DISPLAY_OPTIONS::ReadCommonConfig( wxConfigBase& aCommonConfig, wxWindow* aWindow )
|
|
|
|
{
|
2019-04-27 13:53:20 +00:00
|
|
|
wxLogTrace( traceGalDispOpts, "Reading common config" );
|
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
int temp;
|
|
|
|
aCommonConfig.Read(
|
|
|
|
GAL_ANTIALIASING_MODE_KEY, &temp, (int) KIGFX::OPENGL_ANTIALIASING_MODE::NONE );
|
|
|
|
gl_antialiasing_mode = (KIGFX::OPENGL_ANTIALIASING_MODE) temp;
|
|
|
|
|
|
|
|
aCommonConfig.Read(
|
|
|
|
CAIRO_ANTIALIASING_MODE_KEY, &temp, (int) KIGFX::CAIRO_ANTIALIASING_MODE::NONE );
|
|
|
|
cairo_antialiasing_mode = (KIGFX::CAIRO_ANTIALIASING_MODE) temp;
|
|
|
|
|
|
|
|
{
|
|
|
|
const DPI_SCALING dpi{ &aCommonConfig, aWindow };
|
|
|
|
m_scaleFactor = dpi.GetScaleFactor();
|
|
|
|
}
|
2017-03-18 20:03:24 +00:00
|
|
|
|
2017-01-11 15:19:58 +00:00
|
|
|
NotifyChanged();
|
|
|
|
}
|
2016-12-23 15:21:00 +00:00
|
|
|
|
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
void GAL_DISPLAY_OPTIONS::ReadConfig( wxConfigBase& aCommonConfig, wxConfigBase& aAppConfig,
|
|
|
|
const wxString& aBaseCfgName, wxWindow* aWindow )
|
|
|
|
{
|
2019-04-27 13:53:20 +00:00
|
|
|
wxLogTrace( traceGalDispOpts, "Reading common and app config (%s)", aBaseCfgName );
|
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
ReadAppConfig( aAppConfig, aBaseCfgName );
|
|
|
|
|
|
|
|
ReadCommonConfig( aCommonConfig, aWindow );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GAL_DISPLAY_OPTIONS::WriteConfig( wxConfigBase& aCfg, const wxString& aBaseName )
|
2017-01-11 15:19:58 +00:00
|
|
|
{
|
2019-04-11 19:35:52 +00:00
|
|
|
const wxString baseName = aBaseName + GAL_DISPLAY_OPTIONS_KEY;
|
|
|
|
|
2019-04-27 13:53:20 +00:00
|
|
|
wxLogTrace( traceGalDispOpts, "Writing app config (%s)", baseName );
|
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
aCfg.Write( baseName + GalGridStyleConfig,
|
2017-02-16 02:40:35 +00:00
|
|
|
UTIL::GetConfigForVal( gridStyleConfigVals, m_gridStyle ) );
|
2017-02-14 15:31:21 +00:00
|
|
|
|
2019-04-11 19:35:52 +00:00
|
|
|
aCfg.Write( baseName + GalGridLineWidthConfig, m_gridLineWidth );
|
|
|
|
aCfg.Write( baseName + GalGridMaxDensityConfig, m_gridMinSpacing );
|
|
|
|
aCfg.Write( baseName + GalGridAxesEnabledConfig, m_axesEnabled );
|
|
|
|
aCfg.Write( baseName + GalFullscreenCursorConfig, m_fullscreenCursor );
|
|
|
|
aCfg.Write( baseName + GalForceDisplayCursorConfig, m_forceDisplayCursor );
|
2017-01-11 15:19:58 +00:00
|
|
|
}
|
2016-12-23 15:21:00 +00:00
|
|
|
|
|
|
|
|
2017-01-11 15:19:58 +00:00
|
|
|
void GAL_DISPLAY_OPTIONS::NotifyChanged()
|
|
|
|
{
|
2019-04-27 13:53:20 +00:00
|
|
|
wxLogTrace( traceGalDispOpts, "Change notification" );
|
|
|
|
|
2017-01-11 15:19:58 +00:00
|
|
|
Notify( &GAL_DISPLAY_OPTIONS_OBSERVER::OnGalDisplayOptionsChanged, *this );
|
2019-04-11 19:35:52 +00:00
|
|
|
}
|