2012-09-11 19:03:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2014-01-19 16:36:12 +00:00
|
|
|
* Copyright (C) 2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 2008-2014 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2004-2014 KiCad Developers, see change_log.txt for contributors.
|
2012-09-11 19:03:21 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file viewlib_frame.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBVIEWFRM_H_
|
|
|
|
#define LIBVIEWFRM_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
|
|
|
|
#include <sch_base_frame.h>
|
|
|
|
#include <class_sch_screen.h>
|
|
|
|
|
|
|
|
class wxSashLayoutWindow;
|
|
|
|
class wxListBox;
|
|
|
|
class wxSemaphore;
|
|
|
|
class CMP_LIBRARY;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component library viewer main window.
|
|
|
|
*/
|
|
|
|
class LIB_VIEW_FRAME : public SCH_BASE_FRAME
|
|
|
|
{
|
|
|
|
public:
|
* 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
|
|
|
LIB_VIEW_FRAME( KIWAY* aKiway, SCH_BASE_FRAME* aParent,
|
|
|
|
CMP_LIBRARY* aLibrary = NULL, wxSemaphore* aSemaphore = NULL,
|
|
|
|
long aStyle = KICAD_DEFAULT_DRAWFRAME_STYLE );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
|
|
|
~LIB_VIEW_FRAME();
|
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
/**
|
|
|
|
* Function GetLibViewerFrameName (static)
|
|
|
|
* @return the frame name used when creating the frame
|
|
|
|
* used to get a reference to this frame, if exists
|
|
|
|
*/
|
|
|
|
static const wxChar* GetLibViewerFrameName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetActiveLibraryViewer (static)
|
|
|
|
* @return a reference to the current opened Library viewer
|
|
|
|
* or NULL if no Library viewer currently opened
|
|
|
|
*/
|
* 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
|
|
|
static LIB_VIEW_FRAME* GetActiveLibraryViewer( const wxWindow* aParent );
|
2012-09-12 09:53:11 +00:00
|
|
|
|
2012-09-11 19:03:21 +00:00
|
|
|
void OnSize( wxSizeEvent& event );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ReCreateListLib
|
|
|
|
*
|
|
|
|
* Creates or recreates the list of current loaded libraries.
|
|
|
|
* This list is sorted, with the library cache always at end of the list
|
|
|
|
*/
|
|
|
|
void ReCreateListLib();
|
|
|
|
|
|
|
|
void ReCreateListCmp();
|
|
|
|
void Process_Special_Functions( wxCommandEvent& event );
|
|
|
|
void DisplayLibInfos();
|
|
|
|
void RedrawActiveWindow( wxDC* DC, bool EraseBg );
|
|
|
|
void OnCloseWindow( wxCloseEvent& Event );
|
|
|
|
void ReCreateHToolbar();
|
|
|
|
void ReCreateVToolbar();
|
|
|
|
void OnLeftClick( wxDC* DC, const wxPoint& MousePos );
|
|
|
|
double BestZoom();
|
|
|
|
void ClickOnLibList( wxCommandEvent& event );
|
|
|
|
void ClickOnCmpList( wxCommandEvent& event );
|
|
|
|
void OnSetRelativeOffset( wxCommandEvent& event );
|
|
|
|
|
|
|
|
void GeneralControl( wxDC* aDC, const wxPoint& aPosition, int aHotKey = 0 );
|
|
|
|
|
* 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
|
|
|
void LoadSettings( wxConfigBase* aCfg );
|
|
|
|
void SaveSettings( wxConfigBase* aCfg );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2014-02-24 10:52:08 +00:00
|
|
|
/**
|
|
|
|
* Set the selected library in the library window.
|
|
|
|
*
|
|
|
|
* @param aLibName name of the library to be selected.
|
|
|
|
*/
|
|
|
|
void SetSelectedLibrary( const wxString& aLibName );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the selected component.
|
|
|
|
*
|
|
|
|
* @param the alias name of the component to be selected.
|
|
|
|
*/
|
|
|
|
void SetSelectedComponent( const wxString& aComponentName );
|
|
|
|
const wxString& GetSelectedComponent( void ) const { return m_exportToEeschemaCmpName; }
|
|
|
|
|
|
|
|
void SetUnit( int aUnit ) { m_unit = aUnit; }
|
|
|
|
int GetUnit( void ) { return m_unit; }
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2014-02-24 10:52:08 +00:00
|
|
|
void SetConvert( int aConvert ) { m_convert = aConvert; }
|
|
|
|
int GetConvert( void ) { return m_convert; }
|
2012-09-11 19:03:21 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* Function OnActivate
|
|
|
|
* is called when the frame frame is activate to reload the libraries and component lists
|
|
|
|
* that can be changed by the schematic editor or the library editor.
|
|
|
|
*/
|
|
|
|
virtual void OnActivate( wxActivateEvent& event );
|
|
|
|
|
|
|
|
void SelectCurrentLibrary();
|
|
|
|
void SelectAndViewLibraryPart( int option );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ExportToSchematicLibraryPart
|
|
|
|
* exports the current component to schematic and close the library browser.
|
|
|
|
*/
|
|
|
|
void ExportToSchematicLibraryPart( wxCommandEvent& event );
|
|
|
|
void ViewOneLibraryContent( CMP_LIBRARY* Lib, int Flag );
|
|
|
|
bool OnRightClick( const wxPoint& MousePos, wxMenu* PopMenu );
|
2012-12-04 19:04:04 +00:00
|
|
|
void DClickOnCmpList( wxCommandEvent& event );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2014-02-24 10:52:08 +00:00
|
|
|
wxComboBox* m_selpartBox;
|
|
|
|
|
|
|
|
// List of libraries (for selection )
|
|
|
|
wxListBox* m_libList; // The list of libs
|
|
|
|
int m_libListWidth; // Last width of the window
|
|
|
|
|
|
|
|
// List of components in the selected library
|
|
|
|
wxListBox* m_cmpList; // The list of components
|
|
|
|
int m_cmpListWidth; // Last width of the window
|
|
|
|
|
|
|
|
// Flags
|
|
|
|
wxSemaphore* m_semaphore; // != NULL if the frame must emulate a modal dialog
|
|
|
|
wxString m_configPath; // subpath for configuration
|
|
|
|
|
|
|
|
// TODO(hzeller): looks like these members were chosen to be static to survive different
|
|
|
|
// instances of this browser and communicate it to the next instance. This looks like an
|
|
|
|
// ugly hack, and should be solved differently.
|
|
|
|
static wxString m_libraryName;
|
|
|
|
|
|
|
|
// TODO(hzeller): figure out what the difference between these is and the motivation to
|
|
|
|
// have this distinction. Shouldn't these essentially be the same ?
|
|
|
|
static wxString m_entryName;
|
|
|
|
static wxString m_exportToEeschemaCmpName; // When the viewer is used to select a component
|
|
|
|
// in schematic, the selected component is here
|
|
|
|
static int m_unit;
|
|
|
|
static int m_convert;
|
|
|
|
|
2012-09-11 19:03:21 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LIBVIEWFRM_H_
|