2013-05-26 04:36:44 +00:00
///////////////////////////////////////////////////////////////////////////
2016-02-19 23:25:03 +00:00
// C++ code generated with wxFormBuilder (version Mar 28 2015)
2013-05-26 04:36:44 +00:00
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
# include "dialog_eeschema_config_fbp.h"
///////////////////////////////////////////////////////////////////////////
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
DIALOG_EESCHEMA_CONFIG_FBP : : DIALOG_EESCHEMA_CONFIG_FBP ( wxWindow * parent , wxWindowID id , const wxString & title , const wxPoint & pos , const wxSize & size , long style ) : DIALOG_SHIM ( parent , id , title , pos , size , style )
2013-05-26 04:36:44 +00:00
{
this - > SetSizeHints ( wxDefaultSize , wxDefaultSize ) ;
wxBoxSizer * bMainSizer ;
bMainSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxBoxSizer * bSizerUpper ;
bSizerUpper = new wxBoxSizer ( wxVERTICAL ) ;
m_staticTextLibsList = new wxStaticText ( this , wxID_ANY , _ ( " Component library files " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextLibsList - > Wrap ( - 1 ) ;
bSizerUpper - > Add ( m_staticTextLibsList , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
wxBoxSizer * bSizerLibsChoice ;
bSizerLibsChoice = new wxBoxSizer ( wxHORIZONTAL ) ;
m_ListLibr = new wxListBox ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 , NULL , wxLB_EXTENDED | wxLB_HSCROLL | wxLB_NEEDED_SB | wxLB_SINGLE ) ;
m_ListLibr - > SetToolTip ( _ ( " List of active library files. \n Only library files in this list are loaded by Eeschema. \n The order of this list is important: \n Eeschema searchs for a given component using this list order priority. " ) ) ;
m_ListLibr - > SetMinSize ( wxSize ( 400 , 250 ) ) ;
bSizerLibsChoice - > Add ( m_ListLibr , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
wxBoxSizer * bRightSizer ;
bRightSizer = new wxBoxSizer ( wxVERTICAL ) ;
m_buttonAddLib = new wxButton ( this , ID_ADD_LIB , _ ( " Add " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_buttonAddLib - > SetToolTip ( _ ( " Add a new library after the selected library, and load it " ) ) ;
2015-06-15 13:54:58 +00:00
bRightSizer - > Add ( m_buttonAddLib , 0 , wxLEFT | wxRIGHT | wxTOP | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
m_buttonIns = new wxButton ( this , wxID_ANY , _ ( " Insert " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_buttonIns - > SetToolTip ( _ ( " Add a new library before the selected library, and load it " ) ) ;
2015-06-15 13:54:58 +00:00
bRightSizer - > Add ( m_buttonIns , 0 , wxLEFT | wxRIGHT | wxTOP | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
m_buttonRemoveLib = new wxButton ( this , ID_REMOVE_LIB , _ ( " Remove " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_buttonRemoveLib - > SetToolTip ( _ ( " Unload the selected library " ) ) ;
2015-06-15 13:54:58 +00:00
bRightSizer - > Add ( m_buttonRemoveLib , 0 , wxALL | wxEXPAND , 5 ) ;
2013-05-26 04:36:44 +00:00
m_buttonUp = new wxButton ( this , wxID_ANY , _ ( " Up " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2015-09-12 20:20:16 +00:00
bRightSizer - > Add ( m_buttonUp , 0 , wxBOTTOM | wxEXPAND | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
m_buttonDown = new wxButton ( this , wxID_ANY , _ ( " Down " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2015-09-12 20:20:16 +00:00
bRightSizer - > Add ( m_buttonDown , 0 , wxBOTTOM | wxEXPAND | wxLEFT | wxRIGHT , 5 ) ;
2013-05-26 04:36:44 +00:00
bSizerLibsChoice - > Add ( bRightSizer , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
bSizerUpper - > Add ( bSizerLibsChoice , 1 , wxEXPAND , 5 ) ;
bMainSizer - > Add ( bSizerUpper , 2 , wxEXPAND , 5 ) ;
wxBoxSizer * bSizerMiddle ;
bSizerMiddle = new wxBoxSizer ( wxVERTICAL ) ;
m_staticTextPaths = new wxStaticText ( this , wxID_ANY , _ ( " User defined search path " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextPaths - > Wrap ( - 1 ) ;
bSizerMiddle - > Add ( m_staticTextPaths , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
wxBoxSizer * bSizerPathsChoice ;
bSizerPathsChoice = new wxBoxSizer ( wxHORIZONTAL ) ;
m_listUserPaths = new wxListBox ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 , NULL , wxLB_HSCROLL | wxLB_NEEDED_SB | wxLB_SINGLE ) ;
m_listUserPaths - > SetToolTip ( _ ( " Additional paths used in this project. The priority is higher than default KiCad paths. " ) ) ;
m_listUserPaths - > SetMinSize ( wxSize ( 400 , 90 ) ) ;
bSizerPathsChoice - > Add ( m_listUserPaths , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
wxBoxSizer * bUserPathsButtonsSizer ;
bUserPathsButtonsSizer = new wxBoxSizer ( wxVERTICAL ) ;
m_buttonAddPath = new wxButton ( this , ID_LIB_PATH_SEL , _ ( " Add " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bUserPathsButtonsSizer - > Add ( m_buttonAddPath , 0 , wxLEFT | wxRIGHT | wxTOP | wxEXPAND , 5 ) ;
m_buttonInsPath = new wxButton ( this , wxID_INSERT_PATH , _ ( " Insert " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bUserPathsButtonsSizer - > Add ( m_buttonInsPath , 0 , wxLEFT | wxRIGHT | wxTOP | wxEXPAND , 5 ) ;
m_buttonRemovePath = new wxButton ( this , wxID_REMOVE_PATH , _ ( " Remove " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bUserPathsButtonsSizer - > Add ( m_buttonRemovePath , 0 , wxALL | wxEXPAND , 5 ) ;
bSizerPathsChoice - > Add ( bUserPathsButtonsSizer , 0 , wxALIGN_CENTER_VERTICAL | wxALL , 5 ) ;
bSizerMiddle - > Add ( bSizerPathsChoice , 1 , wxEXPAND , 5 ) ;
bMainSizer - > Add ( bSizerMiddle , 1 , wxEXPAND , 5 ) ;
wxBoxSizer * bSizerLower ;
bSizerLower = new wxBoxSizer ( wxVERTICAL ) ;
m_staticTextPathlist = new wxStaticText ( this , wxID_ANY , _ ( " Current search path list " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticTextPathlist - > Wrap ( - 1 ) ;
bSizerLower - > Add ( m_staticTextPathlist , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
m_DefaultLibraryPathslistBox = new wxListBox ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , 0 , NULL , wxLB_NEEDED_SB ) ;
m_DefaultLibraryPathslistBox - > SetToolTip ( _ ( " System and user paths used to search and load library files and component doc files. \n Sorted by decreasing priority order. " ) ) ;
bSizerLower - > Add ( m_DefaultLibraryPathslistBox , 1 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
bMainSizer - > Add ( bSizerLower , 1 , wxEXPAND , 5 ) ;
2015-09-12 20:20:16 +00:00
m_cbRescue = new wxCheckBox ( this , wxID_ANY , _ ( " Check for cache/library conflicts when loading schematic " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
bMainSizer - > Add ( m_cbRescue , 0 , wxALL , 5 ) ;
2013-05-26 04:36:44 +00:00
m_staticline3 = new wxStaticLine ( this , wxID_ANY , wxDefaultPosition , wxDefaultSize , wxLI_HORIZONTAL ) ;
bMainSizer - > Add ( m_staticline3 , 0 , wxEXPAND | wxRIGHT | wxLEFT , 5 ) ;
m_sdbSizer1 = new wxStdDialogButtonSizer ( ) ;
m_sdbSizer1OK = new wxButton ( this , wxID_OK ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1OK ) ;
m_sdbSizer1Cancel = new wxButton ( this , wxID_CANCEL ) ;
m_sdbSizer1 - > AddButton ( m_sdbSizer1Cancel ) ;
m_sdbSizer1 - > Realize ( ) ;
bMainSizer - > Add ( m_sdbSizer1 , 0 , wxALL | wxEXPAND , 5 ) ;
this - > SetSizer ( bMainSizer ) ;
this - > Layout ( ) ;
bMainSizer - > Fit ( this ) ;
this - > Centre ( wxBOTH ) ;
// Connect Events
this - > Connect ( wxEVT_CLOSE_WINDOW , wxCloseEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnCloseWindow ) ) ;
m_ListLibr - > Connect ( wxEVT_COMMAND_LISTBOX_SELECTED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnFilesListClick ) , NULL , this ) ;
m_ListLibr - > Connect ( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnFilesListClick ) , NULL , this ) ;
m_buttonAddLib - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertLibClick ) , NULL , this ) ;
m_buttonIns - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertLibClick ) , NULL , this ) ;
m_buttonRemoveLib - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnRemoveLibClick ) , NULL , this ) ;
m_buttonUp - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnButtonUpClick ) , NULL , this ) ;
m_buttonDown - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnButtonDownClick ) , NULL , this ) ;
m_buttonAddPath - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertPath ) , NULL , this ) ;
m_buttonInsPath - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertPath ) , NULL , this ) ;
m_buttonRemovePath - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnRemoveUserPath ) , NULL , this ) ;
m_sdbSizer1Cancel - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnCancelClick ) , NULL , this ) ;
m_sdbSizer1OK - > Connect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnOkClick ) , NULL , this ) ;
}
DIALOG_EESCHEMA_CONFIG_FBP : : ~ DIALOG_EESCHEMA_CONFIG_FBP ( )
{
// Disconnect Events
this - > Disconnect ( wxEVT_CLOSE_WINDOW , wxCloseEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnCloseWindow ) ) ;
m_ListLibr - > Disconnect ( wxEVT_COMMAND_LISTBOX_SELECTED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnFilesListClick ) , NULL , this ) ;
m_ListLibr - > Disconnect ( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnFilesListClick ) , NULL , this ) ;
m_buttonAddLib - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertLibClick ) , NULL , this ) ;
m_buttonIns - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertLibClick ) , NULL , this ) ;
m_buttonRemoveLib - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnRemoveLibClick ) , NULL , this ) ;
m_buttonUp - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnButtonUpClick ) , NULL , this ) ;
m_buttonDown - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnButtonDownClick ) , NULL , this ) ;
m_buttonAddPath - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertPath ) , NULL , this ) ;
m_buttonInsPath - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnAddOrInsertPath ) , NULL , this ) ;
m_buttonRemovePath - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnRemoveUserPath ) , NULL , this ) ;
m_sdbSizer1Cancel - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnCancelClick ) , NULL , this ) ;
m_sdbSizer1OK - > Disconnect ( wxEVT_COMMAND_BUTTON_CLICKED , wxCommandEventHandler ( DIALOG_EESCHEMA_CONFIG_FBP : : OnOkClick ) , NULL , this ) ;
}