2011-11-07 19:04:24 +00:00
|
|
|
/*
|
|
|
|
* 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) 2004-2011 KiCad Developers, see change_log.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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file viewlib_frame.h
|
|
|
|
*/
|
|
|
|
|
2012-01-09 17:24:01 +00:00
|
|
|
#ifndef LIBVIEWFRM_H_
|
|
|
|
#define LIBVIEWFRM_H_
|
2009-09-22 12:27:57 +00:00
|
|
|
|
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
|
2012-01-09 17:24:01 +00:00
|
|
|
#include <sch_base_frame.h>
|
|
|
|
#include <class_sch_screen.h>
|
2010-11-10 15:30:12 +00:00
|
|
|
|
|
|
|
class wxSashLayoutWindow;
|
|
|
|
class wxListBox;
|
|
|
|
class wxSemaphore;
|
2009-09-22 12:27:57 +00:00
|
|
|
class CMP_LIBRARY;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component library viewer main window.
|
|
|
|
*/
|
2012-01-09 17:24:01 +00:00
|
|
|
class LIB_VIEW_FRAME : public SCH_BASE_FRAME
|
2009-09-22 12:27:57 +00:00
|
|
|
{
|
|
|
|
private:
|
2011-04-19 19:19:41 +00:00
|
|
|
wxComboBox* SelpartBox;
|
2009-09-22 12:27:57 +00:00
|
|
|
|
|
|
|
// List of libraries (for selection )
|
|
|
|
wxSashLayoutWindow* m_LibListWindow;
|
|
|
|
wxListBox* m_LibList; // The list of libs
|
|
|
|
wxSize m_LibListSize; // size of the window
|
|
|
|
|
|
|
|
// List of components in the selected library
|
|
|
|
wxSashLayoutWindow* m_CmpListWindow;
|
|
|
|
wxListBox* m_CmpList; // The list of components
|
|
|
|
wxSize m_CmpListSize; // size of the window
|
|
|
|
|
|
|
|
// Flags
|
|
|
|
wxSemaphore* m_Semaphore; // != NULL if the frame must emulate a modal dialog
|
2011-12-09 16:37:11 +00:00
|
|
|
wxString m_configPath; // subpath for configuration
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2009-12-21 12:05:36 +00:00
|
|
|
protected:
|
|
|
|
static wxString m_libraryName;
|
|
|
|
static wxString m_entryName;
|
2010-11-20 10:59:59 +00:00
|
|
|
static wxString m_exportToEeschemaCmpName; // When the viewer is used to select a component
|
|
|
|
// in schematic, the selected component is here
|
2009-12-21 12:05:36 +00:00
|
|
|
static int m_unit;
|
|
|
|
static int m_convert;
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
public:
|
2010-11-20 21:59:00 +00:00
|
|
|
LIB_VIEW_FRAME( wxWindow* father, CMP_LIBRARY* Library = NULL, wxSemaphore* semaphore = NULL );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2010-11-20 21:59:00 +00:00
|
|
|
~LIB_VIEW_FRAME();
|
2009-09-22 12:27:57 +00:00
|
|
|
|
|
|
|
void OnSize( wxSizeEvent& event );
|
2011-11-07 19:04:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function OnSashDrag
|
|
|
|
* resizes the child windows when dragging a sash window border.
|
|
|
|
*/
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
void OnSashDrag( wxSashEvent& event );
|
2011-11-07 19:04:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
void ReCreateListLib();
|
2011-11-07 19:04:24 +00:00
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
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 );
|
2011-07-05 12:46:14 +00:00
|
|
|
double BestZoom();
|
2009-09-22 12:27:57 +00:00
|
|
|
void ClickOnLibList( wxCommandEvent& event );
|
|
|
|
void ClickOnCmpList( wxCommandEvent& event );
|
2009-10-16 17:18:23 +00:00
|
|
|
void OnSetRelativeOffset( wxCommandEvent& event );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2011-02-22 16:43:03 +00:00
|
|
|
void GeneralControl( wxDC* aDC, const wxPoint& aPosition, int aHotKey = 0 );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2011-11-07 19:04:24 +00:00
|
|
|
/**
|
|
|
|
* Function LoadSettings
|
|
|
|
* loads the library viewer frame specific configuration settings.
|
|
|
|
*
|
|
|
|
* Don't forget to call this base method from any derived classes or the
|
|
|
|
* settings will not get loaded.
|
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
void LoadSettings();
|
2011-11-07 19:04:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SaveSettings
|
|
|
|
* save library viewer frame specific configuration settings.
|
|
|
|
*
|
|
|
|
* Don't forget to call this base method from any derived classes or the
|
|
|
|
* settings will not get saved.
|
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
void SaveSettings();
|
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
wxString& GetEntryName( void ) const { return m_entryName; }
|
2010-11-20 10:59:59 +00:00
|
|
|
wxString& GetSelectedComponent( void ) const { return m_exportToEeschemaCmpName; }
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2009-10-16 17:18:23 +00:00
|
|
|
int GetUnit( void ) { return m_unit; }
|
|
|
|
int GetConvert( void ) { return m_convert; }
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
private:
|
2011-11-07 19:04:24 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
2009-12-22 20:08:56 +00:00
|
|
|
*/
|
2011-11-07 19:04:24 +00:00
|
|
|
virtual void OnActivate( wxActivateEvent& event );
|
2009-12-22 20:08:56 +00:00
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
void SelectCurrentLibrary();
|
|
|
|
void SelectAndViewLibraryPart( int option );
|
2011-11-07 19:04:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ExportToSchematicLibraryPart
|
|
|
|
* exports the current component to schematic and close the library browser.
|
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
void ExportToSchematicLibraryPart( wxCommandEvent& event );
|
|
|
|
void ViewOneLibraryContent( CMP_LIBRARY* Lib, int Flag );
|
|
|
|
bool OnRightClick( const wxPoint& MousePos, wxMenu* PopMenu );
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
2012-01-09 17:24:01 +00:00
|
|
|
#endif // LIBVIEWFRM_H_
|