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.
		
		
		
		
		
			
		
			
				
					
					
						
							346 lines
						
					
					
						
							12 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							346 lines
						
					
					
						
							12 KiB
						
					
					
				| /* | |
|  * This program source code file is part of KiCad, a free EDA CAD application. | |
|  * | |
|  * Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com | |
|  * Copyright (C) 2008-2011 Wayne Stambaugh <stambaughw@verizon.net> | |
|  * Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors. | |
|  * | |
|  * 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 | |
|  */ | |
| 
 | |
| #ifndef CONFIG_PARAMS_H_ | |
| #define CONFIG_PARAMS_H_ | |
|  | |
| #include <set> | |
| #include <limits> | |
|  | |
| #include <wx/confbase.h> | |
| #include <wx/fileconf.h> | |
| #include <boost/ptr_container/ptr_vector.hpp> | |
| #include <gal/color4d.h> | |
|  | |
| using KIGFX::COLOR4D; | |
| 
 | |
| 
 | |
| 
 | |
| /** | |
|  * Function ConfigBaseWriteDouble | |
|  * This is a helper function to write doubles in config | |
|  * We cannot use wxConfigBase->Write for a double, because | |
|  * this function uses a format with very few digits in mantissa, | |
|  * and truncation issues are frequent. | |
|  * We use here a better floating format. | |
|  */ | |
| void ConfigBaseWriteDouble( wxConfigBase* aConfig, const wxString& aKey, double aValue ); | |
| 
 | |
| 
 | |
| /** Type of parameter in the configuration file */ | |
| enum paramcfg_id { | |
|     PARAM_INT, | |
|     PARAM_INT_WITH_SCALE, | |
|     PARAM_DOUBLE, | |
|     PARAM_BOOL, | |
|     PARAM_LIBNAME_LIST, | |
|     PARAM_WXSTRING, | |
|     PARAM_WXSTRING_SET, | |
|     PARAM_FILENAME, | |
|     PARAM_COMMAND_ERASE, | |
|     PARAM_LAYERS, | |
|     PARAM_TRACKWIDTHS, | |
|     PARAM_VIADIMENSIONS, | |
|     PARAM_DIFFPAIRDIMENSIONS, | |
|     PARAM_NETCLASSES, | |
|     PARAM_SEVERITIES | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * PARAM_CFG | |
|  * is a base class which establishes the interface functions ReadParam and SaveParam, | |
|  * which are implemented by a number of derived classes, and these function's | |
|  * doxygen comments are inherited also. | |
|  * <p> | |
|  * See kicad.odt or kicad.pdf, chapter 2 : | |
|  * "Installation and configuration/Initialization of the default config". | |
|  */ | |
| class PARAM_CFG | |
| { | |
| public: | |
|     wxString    m_Ident;  ///<  Keyword in config data | |
|     paramcfg_id m_Type;   ///<  Type of parameter | |
|     wxString    m_Group;  ///<  Group name (this is like a path in the config data) | |
|     bool        m_Setup;  ///<  Install or Project based parameter, true == install | |
|  | |
|     // If the m_Ident keyword isn't found, fall back and read values from m_Ident_legacy. | |
|     // Note that values are always written to the current, non-legacy keyword. | |
|     wxString    m_Ident_legacy; | |
| 
 | |
| public: | |
|     PARAM_CFG( const wxString& ident, const paramcfg_id type, const wxChar* group = NULL, | |
|                const wxString& legacy_ident = wxEmptyString ); | |
|     virtual ~PARAM_CFG() {} | |
| 
 | |
|     /** | |
|      * Function ReadParam | |
|      * reads the value of the parameter stored in aConfig | |
|      * @param aConfig = the wxConfigBase that holds the parameter | |
|      */ | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const {}; | |
| 
 | |
|     /** | |
|      * Function SaveParam | |
|      * saves the value of the parameter stored in aConfig | |
|      * @param aConfig = the wxConfigBase that can store the parameter | |
|      */ | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const {}; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Configuration parameter - Integer Class | |
|  * | |
|  */ | |
| class PARAM_CFG_INT      : public PARAM_CFG | |
| { | |
| public: | |
|     int* m_Pt_param;    ///<  Pointer to the parameter value | |
|     int  m_Min, m_Max;  ///<  Minimum and maximum values of the param type | |
|     int  m_Default;     ///<  The default value of the parameter | |
|  | |
| public: | |
|     PARAM_CFG_INT( const wxString& ident, int* ptparam, int default_val = 0, | |
|                    int min = std::numeric_limits<int>::min(), | |
|                    int max = std::numeric_limits<int>::max(), | |
|                    const wxChar* group = nullptr, | |
|                    const wxString& legacy_ident = wxEmptyString ); | |
|     PARAM_CFG_INT( bool Insetup, const wxString& ident, int* ptparam, int default_val = 0, | |
|                    int min = std::numeric_limits<int>::min(), | |
|                    int max = std::numeric_limits<int>::max(), | |
|                    const wxChar* group = nullptr, | |
|                    const wxString& legacy_ident = wxEmptyString ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| /** | |
|  * Configuration parameter - Integer Class | |
|  * with unit conversion. | |
|  * Mainly used to store an integer value in millimeters (or inches) | |
|  * and retrieve it in internal units | |
|  * the stored value is a floating number | |
|  */ | |
| class PARAM_CFG_INT_WITH_SCALE : public PARAM_CFG_INT | |
| { | |
| public: | |
|     double   m_BIU_to_cfgunit;   ///<  the factor to convert the saved value in internal value | |
|  | |
| public: | |
|     PARAM_CFG_INT_WITH_SCALE( const wxString& ident, int* ptparam, int default_val = 0, | |
|                               int min = std::numeric_limits<int>::min(), | |
|                               int max = std::numeric_limits<int>::max(), | |
|                               const wxChar* group = NULL, double aBiu2cfgunit = 1.0, | |
|                               const wxString& legacy_ident = wxEmptyString ); | |
|     PARAM_CFG_INT_WITH_SCALE( bool insetup, const wxString& ident, int* ptparam, | |
|                               int default_val = 0, | |
|                               int min = std::numeric_limits<int>::min(), | |
|                               int max = std::numeric_limits<int>::max(), | |
|                               const wxChar* group = NULL, double aBiu2cfgunit = 1.0, | |
|                               const wxString& legacy_ident = wxEmptyString ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Configuration parameter - Double Precision Class | |
|  * | |
|  */ | |
| class PARAM_CFG_DOUBLE   : public PARAM_CFG | |
| { | |
| public: | |
|     double* m_Pt_param;     ///<  Pointer to the parameter value | |
|     double  m_Default;      ///<  The default value of the parameter | |
|     double  m_Min, m_Max;   ///<  Minimum and maximum values of the param type | |
|  | |
| public: | |
|     PARAM_CFG_DOUBLE( const wxString& ident, double* ptparam, | |
|                           double default_val = 0.0, double min = 0.0, double max = 10000.0, | |
|                           const wxChar* group = NULL ); | |
|     PARAM_CFG_DOUBLE( bool Insetup, const wxString& ident, double* ptparam, | |
|                       double default_val = 0.0, double min = 0.0, double max = 10000.0, | |
|                       const wxChar* group = NULL ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Configuration parameter - Boolean Class | |
|  * | |
|  */ | |
| class PARAM_CFG_BOOL     : public PARAM_CFG | |
| { | |
| public: | |
|     bool* m_Pt_param;       ///<  Pointer to the parameter value | |
|     int   m_Default;        ///<  The default value of the parameter | |
|  | |
| public: | |
|     PARAM_CFG_BOOL( const wxString& ident, bool* ptparam, | |
|                     int default_val = false, const wxChar* group = NULL, | |
|                     const wxString& legacy_ident = wxEmptyString ); | |
|     PARAM_CFG_BOOL( bool Insetup, const wxString& ident, bool* ptparam, | |
|                     int default_val = false, const wxChar* group = NULL, | |
|                     const wxString& legacy_ident = wxEmptyString ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Configuration parameter - wxString Class | |
|  * | |
|  */ | |
| class PARAM_CFG_WXSTRING : public PARAM_CFG | |
| { | |
| public: | |
|     wxString* m_Pt_param;       ///<  Pointer to the parameter value | |
|     wxString  m_default;        ///<  The default value of the parameter | |
|  | |
| public: | |
|     PARAM_CFG_WXSTRING( const wxString& ident, wxString* ptparam, const wxChar* group = NULL ); | |
| 
 | |
|     PARAM_CFG_WXSTRING( bool            Insetup, | |
|                         const wxString& ident, | |
|                         wxString*       ptparam, | |
|                         const wxString& default_val = wxEmptyString, | |
|                         const wxChar* group = NULL ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Configuration parameter - std::set<wxString> | |
|  * | |
|  */ | |
| class PARAM_CFG_WXSTRING_SET : public PARAM_CFG | |
| { | |
| public: | |
|     std::set<wxString>* m_Pt_param;       ///<  Pointer to the parameter value | |
|  | |
| public: | |
|     PARAM_CFG_WXSTRING_SET( const wxString& ident, std::set<wxString>* ptparam, const wxChar* group = NULL ); | |
| 
 | |
|     PARAM_CFG_WXSTRING_SET( bool                Insetup, | |
|                             const wxString&     ident, | |
|                             std::set<wxString>* ptparam, | |
|                             const wxChar* group = NULL ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Configuration parameter - PARAM_CFG_FILENAME Class | |
|  * Same as PARAM_CFG_WXSTRING, but stores "\" as "/". | |
|  * and replace "/" by "\" under Windows. | |
|  * Used to store paths and filenames in config files | |
|  */ | |
| class PARAM_CFG_FILENAME     : public PARAM_CFG | |
| { | |
| public: | |
|     wxString* m_Pt_param;    ///<  Pointer to the parameter value | |
|  | |
| public: | |
|     PARAM_CFG_FILENAME( const wxString& ident, wxString* ptparam, | |
|             const wxChar* group = NULL ); | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| class PARAM_CFG_LIBNAME_LIST : public PARAM_CFG | |
| { | |
| public: | |
|     wxArrayString* m_Pt_param;     ///<  Pointer to the parameter value | |
|  | |
| public: | |
|     PARAM_CFG_LIBNAME_LIST( const wxChar*  ident, | |
|                                 wxArrayString* ptparam, | |
|                                 const wxChar*  group = NULL ); | |
| 
 | |
|     virtual void ReadParam( wxConfigBase* aConfig ) const override; | |
|     virtual void SaveParam( wxConfigBase* aConfig ) const override; | |
| }; | |
| 
 | |
| 
 | |
| /** | |
|  * Function wxConfigSaveSetups | |
|  * writes @a aList of PARAM_CFG to save configuration values to @a aCfg. | |
|  * Only elements with m_Setup set true will be saved, hence the function name. | |
|  * | |
|  * @param aCfg where to save | |
|  * @param aList holds some configuration parameters, not all of which will | |
|  *  necessarily be saved. | |
|  */ | |
| void wxConfigSaveSetups( wxConfigBase* aCfg, const std::vector<PARAM_CFG*>& aList ); | |
| 
 | |
| /** | |
|  * Function wxConfigSaveParams | |
|  * writes @a aList of PARAM_CFG to save configuration values to @a aCfg. | |
|  * Only elements with m_Setup set false will be saved, hence the function name. | |
|  * | |
|  * @param aCfg where to save | |
|  * @param aList holds some configuration parameters, not all of which will necessarily be saved. | |
|  * @param aGroup indicates in which group the value should be saved, unless the PARAM_CFG provides | |
|  *               its own group, in which case it will take precedence.  aGroup may be empty. | |
|  */ | |
| void wxConfigSaveParams( wxConfigBase* aCfg, const std::vector<PARAM_CFG*>& aList, | |
|                          const wxString& aGroup ); | |
| 
 | |
| /** | |
|  * Function wxConfigLoadSetups | |
|  * uses @a aList of PARAM_CFG to load configuration values from @a aCfg. | |
|  * Only elements whose m_Setup field is true will be loaded. | |
|  * | |
|  * @param aCfg where to load from. | |
|  * @param aList holds some configuration parameters, not all of which will necessarily be loaded. | |
|  */ | |
| void wxConfigLoadSetups( wxConfigBase* aCfg, const std::vector<PARAM_CFG*>& aList ); | |
| 
 | |
| /** | |
|  * Function wxConfigLoadParams | |
|  * uses @a aList of PARAM_CFG to load configuration values from @a aCfg. | |
|  * Only elements whose m_Setup field is false will be loaded. | |
|  * | |
|  * @param aCfg where to load from. | |
|  * @param aList holds some configuration parameters, not all of which will necessarily be loaded. | |
|  * @param aGroup indicates in which group the value should be saved, unless the PARAM_CFG provides | |
|  *               its own group, in which case it will take precedence.  aGroup may be empty. | |
|  */ | |
| void wxConfigLoadParams( wxConfigBase* aCfg, const std::vector<PARAM_CFG*>& aList, | |
|                          const wxString& aGroup ); | |
| 
 | |
| 
 | |
| #endif  // CONFIG_PARAMS_H_
 |