2011-10-19 20:32:21 +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
|
|
|
|
*/
|
|
|
|
|
2011-10-02 20:24:41 +00:00
|
|
|
/**
|
|
|
|
* @file wxEeschemaStruct.h
|
|
|
|
*/
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
#ifndef WX_EESCHEMA_STRUCT_H
|
|
|
|
#define WX_EESCHEMA_STRUCT_H
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_base_frame.h>
|
|
|
|
#include <param_config.h>
|
|
|
|
#include <class_undoredo_container.h>
|
|
|
|
#include <template_fieldnames.h>
|
|
|
|
#include <block_commande.h>
|
|
|
|
#include <class_sch_screen.h>
|
|
|
|
#include <sch_collectors.h>
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2010-11-19 16:28:46 +00:00
|
|
|
class LIB_EDIT_FRAME;
|
2010-11-20 21:59:00 +00:00
|
|
|
class LIB_VIEW_FRAME;
|
2009-02-04 15:25:03 +00:00
|
|
|
class DRAWSEGMENT;
|
2008-04-14 19:22:48 +00:00
|
|
|
class SCH_ITEM;
|
2009-12-02 21:44:03 +00:00
|
|
|
class SCH_NO_CONNECT;
|
2009-09-18 14:56:05 +00:00
|
|
|
class CMP_LIBRARY;
|
|
|
|
class LIB_COMPONENT;
|
2009-09-25 18:49:04 +00:00
|
|
|
class LIB_DRAW_ITEM;
|
2010-12-08 20:12:46 +00:00
|
|
|
class EDA_ITEM;
|
2013-04-01 10:35:20 +00:00
|
|
|
class SCH_BUS_ENTRY_BASE;
|
|
|
|
class SCH_BUS_WIRE_ENTRY;
|
|
|
|
class SCH_BUS_BUS_ENTRY;
|
2008-09-17 17:26:25 +00:00
|
|
|
class SCH_GLOBALLABEL;
|
|
|
|
class SCH_TEXT;
|
2011-08-31 14:59:20 +00:00
|
|
|
class SCH_BITMAP;
|
2009-11-04 20:46:53 +00:00
|
|
|
class SCH_SHEET;
|
2009-12-02 21:44:03 +00:00
|
|
|
class SCH_SHEET_PATH;
|
2009-11-04 20:46:53 +00:00
|
|
|
class SCH_SHEET_PIN;
|
2008-09-17 17:26:25 +00:00
|
|
|
class SCH_COMPONENT;
|
2009-12-02 21:44:03 +00:00
|
|
|
class SCH_FIELD;
|
2009-10-08 13:19:28 +00:00
|
|
|
class LIB_PIN;
|
2009-12-02 21:44:03 +00:00
|
|
|
class SCH_JUNCTION;
|
2010-03-16 18:22:59 +00:00
|
|
|
class DIALOG_SCH_FIND;
|
|
|
|
class wxFindDialogEvent;
|
|
|
|
class wxFindReplaceData;
|
|
|
|
|
2009-07-26 17:16:42 +00:00
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
/* enum used in RotationMiroir() */
|
2011-10-28 20:30:50 +00:00
|
|
|
enum COMPONENT_ORIENTATION_T {
|
2010-07-14 13:24:36 +00:00
|
|
|
CMP_NORMAL, // Normal orientation, no rotation or mirror
|
|
|
|
CMP_ROTATE_CLOCKWISE, // Rotate -90
|
|
|
|
CMP_ROTATE_COUNTERCLOCKWISE, // Rotate +90
|
|
|
|
CMP_ORIENT_0, // No rotation and no mirror id CMP_NORMAL
|
|
|
|
CMP_ORIENT_90, // Rotate 90, no mirror
|
|
|
|
CMP_ORIENT_180, // Rotate 180, no mirror
|
|
|
|
CMP_ORIENT_270, // Rotate -90, no mirror
|
|
|
|
CMP_MIRROR_X = 0x100, // Mirror around X axis
|
|
|
|
CMP_MIRROR_Y = 0x200 // Mirror around Y axis
|
2008-04-14 19:22:48 +00:00
|
|
|
};
|
|
|
|
|
2010-06-17 16:30:10 +00:00
|
|
|
|
2011-05-20 19:21:09 +00:00
|
|
|
/** Schematic annotation order options. */
|
|
|
|
enum ANNOTATE_ORDER_T {
|
|
|
|
SORT_BY_X_POSITION, ///< Annotate by X position from left to right.
|
|
|
|
SORT_BY_Y_POSITION, ///< Annotate by Y position from top to bottom.
|
|
|
|
UNSORTED, ///< Annotate by position of component in the schematic sheet
|
|
|
|
///< object list.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Schematic annotation type options. */
|
|
|
|
enum ANNOTATE_OPTION_T {
|
|
|
|
INCREMENTAL_BY_REF, ///< Annotate incrementally using the first free reference number.
|
|
|
|
SHEET_NUMBER_X_100, ///< Annotate using the first free reference number starting at
|
|
|
|
///< the sheet number * 100.
|
|
|
|
SHEET_NUMBER_X_1000, ///< Annotate using the first free reference number starting at
|
|
|
|
///< the sheet number * 1000.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-11-17 01:06:08 +00:00
|
|
|
/// Schematic search type used by the socket link with Pcbnew
|
|
|
|
enum SCH_SEARCH_T {
|
|
|
|
FIND_COMPONENT_ONLY, ///< Find a component in the schematic.
|
|
|
|
FIND_PIN, ///< Find a component pin in the schematic.
|
|
|
|
FIND_REFERENCE, ///< Find an item by it's reference designator.
|
|
|
|
FIND_VALUE, ///< Find an item by it's value field.
|
|
|
|
FIND_FIELD ///< Find a component field.
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-09-22 12:27:57 +00:00
|
|
|
/**
|
2011-09-30 18:15:37 +00:00
|
|
|
* Schematic editor (Eeschema) main window.
|
2009-09-22 12:27:57 +00:00
|
|
|
*/
|
2012-01-09 17:24:01 +00:00
|
|
|
class SCH_EDIT_FRAME : public SCH_BASE_FRAME
|
2008-04-14 19:22:48 +00:00
|
|
|
{
|
|
|
|
private:
|
2013-06-07 20:56:55 +00:00
|
|
|
SCH_SHEET_PATH* m_CurrentSheet; ///< which sheet we are presently working on.
|
|
|
|
wxString m_DefaultSchematicFileName;
|
|
|
|
int m_TextFieldSize;
|
|
|
|
PARAM_CFG_ARRAY m_projectFileParams;
|
|
|
|
PARAM_CFG_ARRAY m_configSettings;
|
|
|
|
wxPageSetupDialogData m_pageSetupData;
|
|
|
|
wxFindReplaceData* m_findReplaceData;
|
|
|
|
wxPoint m_previewPosition;
|
|
|
|
wxSize m_previewSize;
|
|
|
|
wxPoint m_printDialogPosition;
|
|
|
|
wxSize m_printDialogSize;
|
|
|
|
bool m_printMonochrome; ///< Print monochrome instead of grey scale.
|
|
|
|
bool m_printSheetReference;
|
|
|
|
DIALOG_SCH_FIND* m_dlgFindReplace;
|
|
|
|
wxPoint m_findDialogPosition;
|
|
|
|
wxSize m_findDialogSize;
|
|
|
|
wxArrayString m_findStringHistoryList;
|
|
|
|
wxArrayString m_replaceStringHistoryList;
|
|
|
|
BLOCK_SELECTOR m_blockItems; ///< List of selected items.
|
2013-08-05 21:02:41 +00:00
|
|
|
SCH_ITEM* m_item_to_repeat; ///< Last item to insert by the repeat command.
|
2013-06-07 20:56:55 +00:00
|
|
|
int m_repeatLabelDelta; ///< Repeat label number increment step.
|
|
|
|
SCH_COLLECTOR m_collectedItems; ///< List of collected items.
|
|
|
|
SCH_FIND_COLLECTOR m_foundItems; ///< List of find/replace items.
|
|
|
|
SCH_ITEM* m_undoItem; ///< Copy of the current item being edited.
|
|
|
|
wxString m_simulatorCommand; ///< Command line used to call the circuit
|
|
|
|
///< simulator (gnucap, spice, ...)
|
|
|
|
wxString m_netListerCommand; ///< Command line to call a custom net list
|
|
|
|
///< generator.
|
|
|
|
|
|
|
|
bool m_forceHVLines; ///< force H or V directions for wires, bus, line
|
|
|
|
int m_defaultLabelSize; ///< size of a new label
|
2012-09-28 17:47:41 +00:00
|
|
|
|
|
|
|
|
2011-12-01 16:49:28 +00:00
|
|
|
/// An index to the last find item in the found items list #m_foundItems.
|
2013-06-07 20:56:55 +00:00
|
|
|
int m_foundItemIndex;
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2011-12-09 16:37:11 +00:00
|
|
|
/// Flag to indicate show hidden pins.
|
2013-06-07 20:56:55 +00:00
|
|
|
bool m_showAllPins;
|
2011-12-09 16:37:11 +00:00
|
|
|
|
2012-03-12 10:04:40 +00:00
|
|
|
/// The name of the format to use when generating a net list.
|
2013-06-07 20:56:55 +00:00
|
|
|
wxString m_netListFormat;
|
2011-12-09 16:37:11 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
/// Add X prefix to component references when generating spice net lists.
|
2013-06-07 20:56:55 +00:00
|
|
|
bool m_addReferencPrefix;
|
2011-12-09 16:37:11 +00:00
|
|
|
|
2013-06-07 20:56:55 +00:00
|
|
|
wxString m_userLibraryPath;
|
2011-12-09 16:37:11 +00:00
|
|
|
|
|
|
|
wxArrayString m_componentLibFiles;
|
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
static int m_lastSheetPinType; ///< Last sheet pin type.
|
|
|
|
static wxSize m_lastSheetPinTextSize; ///< Last sheet pin text size.
|
|
|
|
static wxPoint m_lastSheetPinPosition; ///< Last sheet pin position.
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
protected:
|
|
|
|
TEMPLATES m_TemplateFieldNames;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function doAutoSave
|
|
|
|
* saves the schematic files that have been modified and not yet saved.
|
|
|
|
*
|
|
|
|
* @return true if the auto save was successful otherwise false.
|
|
|
|
*/
|
|
|
|
virtual bool doAutoSave();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function autoSaveRequired
|
|
|
|
* returns true if the schematic has been modified.
|
|
|
|
*/
|
|
|
|
virtual bool isAutoSaveRequired() const;
|
|
|
|
|
2012-01-04 22:08:46 +00:00
|
|
|
/**
|
|
|
|
* Function addCurrentItemToList
|
|
|
|
* adds the item currently being edited to the schematic and adds the changes to
|
|
|
|
* the undo/redo container.
|
|
|
|
*
|
|
|
|
* @param aDC A pointer the device context to draw on when not NULL.
|
|
|
|
*/
|
|
|
|
void addCurrentItemToList( wxDC* aDC );
|
2011-03-30 19:26:05 +00:00
|
|
|
|
2013-10-27 18:21:53 +00:00
|
|
|
void updateFindReplaceView( wxFindDialogEvent& aEvent );
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
public:
|
2012-09-12 09:53:11 +00:00
|
|
|
SCH_EDIT_FRAME( wxWindow* aParent, const wxString& aTitle,
|
|
|
|
const wxPoint& aPosition, const wxSize& aSize,
|
|
|
|
long aStyle = KICAD_DEFAULT_DRAWFRAME_STYLE );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
~SCH_EDIT_FRAME();
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2012-01-09 17:24:01 +00:00
|
|
|
SCH_SCREEN* GetScreen() const; // overload SCH_BASE_FRAME
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnCloseWindow( wxCloseEvent& Event );
|
2011-12-08 21:05:43 +00:00
|
|
|
|
2012-09-28 18:45:04 +00:00
|
|
|
int GetDefaultLabelSize() const { return m_defaultLabelSize; }
|
2012-09-28 17:47:41 +00:00
|
|
|
void SetDefaultLabelSize( int aLabelSize ) { m_defaultLabelSize = aLabelSize; }
|
|
|
|
|
|
|
|
bool GetForceHVLines() const { return m_forceHVLines; }
|
|
|
|
void SetForceHVLines( bool aForceHVdirection ) { m_forceHVLines = aForceHVdirection; }
|
|
|
|
|
2011-12-09 16:37:11 +00:00
|
|
|
bool GetShowAllPins() const { return m_showAllPins; }
|
|
|
|
|
|
|
|
void SetShowAllPins( bool aEnable ) { m_showAllPins = aEnable; }
|
|
|
|
|
2012-03-12 10:04:40 +00:00
|
|
|
const wxString GetNetListFormatName() const { return m_netListFormat; }
|
2011-12-09 16:37:11 +00:00
|
|
|
|
2012-03-12 10:04:40 +00:00
|
|
|
void SetNetListFormatName( const wxString& aFormat ) { m_netListFormat = aFormat; }
|
2011-12-09 16:37:11 +00:00
|
|
|
|
|
|
|
bool GetAddReferencePrefix() const { return m_addReferencPrefix; }
|
|
|
|
|
|
|
|
void SetAddReferencePrefix( bool aEnable ) { m_addReferencPrefix = aEnable; }
|
|
|
|
|
|
|
|
wxString GetUserLibraryPath() const { return m_userLibraryPath; }
|
|
|
|
|
|
|
|
void SetUserLibraryPath( const wxString& aPath ) { m_userLibraryPath = aPath; }
|
|
|
|
|
|
|
|
const wxArrayString& GetComponentLibraries() const { return m_componentLibFiles; }
|
|
|
|
|
|
|
|
void SetComponentLibraries( const wxArrayString& aList ) { m_componentLibFiles = aList; }
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void Process_Special_Functions( wxCommandEvent& event );
|
|
|
|
void OnColorConfig( wxCommandEvent& aEvent );
|
|
|
|
void Process_Config( wxCommandEvent& event );
|
|
|
|
void OnSelectTool( wxCommandEvent& aEvent );
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void GeneralControl( wxDC* aDC, const wxPoint& aPosition, int aHotKey = 0 );
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2011-08-18 19:25:12 +00:00
|
|
|
/**
|
2013-07-19 18:27:22 +00:00
|
|
|
* Function GetProjectFileParametersList
|
2011-09-30 18:15:37 +00:00
|
|
|
* returns the project file parameter list for Eeschema.
|
2011-08-18 19:25:12 +00:00
|
|
|
*
|
|
|
|
*<p?
|
2011-09-30 18:15:37 +00:00
|
|
|
* Populate the project file parameter array specific to Eeschema if it hasn't
|
2011-08-18 19:25:12 +00:00
|
|
|
* already been populated and return a reference to the array to the caller.
|
|
|
|
* Creating the parameter list at run time has the advantage of being able to
|
|
|
|
* define local variables. The old method of statically building the array at
|
|
|
|
* compile time required global variable definitions.
|
|
|
|
* </p>
|
|
|
|
*/
|
2013-07-19 18:27:22 +00:00
|
|
|
PARAM_CFG_ARRAY& GetProjectFileParametersList( void );
|
2011-08-18 19:25:12 +00:00
|
|
|
|
|
|
|
/**
|
2013-07-19 18:27:22 +00:00
|
|
|
* Function SaveProjectSettings
|
2011-08-18 19:25:12 +00:00
|
|
|
* saves changes to the project settings to the project (.pro) file.
|
2013-07-19 18:27:22 +00:00
|
|
|
* @param aAskForSave = true to open a dialog before saving the settings
|
2011-08-18 19:25:12 +00:00
|
|
|
*/
|
2013-07-19 18:27:22 +00:00
|
|
|
void SaveProjectSettings( bool aAskForSave );
|
2011-08-18 19:25:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function LoadProjectFile
|
2011-11-17 01:06:08 +00:00
|
|
|
* loads the KiCad project file (*.pro) settings specific to Eeschema.
|
2011-08-18 19:25:12 +00:00
|
|
|
*
|
|
|
|
* @param aFileName The project file name to load.
|
|
|
|
* @param aForceReread Force the project file to be reread if true.
|
|
|
|
* @return True if the project file was loaded correctly.
|
|
|
|
*/
|
|
|
|
bool LoadProjectFile( const wxString& aFileName, bool aForceReread );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2010-06-17 16:30:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetDefaultFieldName
|
|
|
|
* returns a default symbol field name for field \a aFieldNdx for all components.
|
2011-03-29 15:21:35 +00:00
|
|
|
* These field names are not modifiable, but template field names are.
|
2010-06-17 16:30:10 +00:00
|
|
|
* @param aFieldNdx The field number index
|
|
|
|
*/
|
2011-08-18 19:25:12 +00:00
|
|
|
static wxString GetDefaultFieldName( int aFieldNdx );
|
2010-06-17 16:30:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function AddTemplateFieldName
|
2011-03-29 15:21:35 +00:00
|
|
|
* inserts or appends a wanted symbol field name into the field names
|
2010-06-17 16:30:10 +00:00
|
|
|
* template. Should be used for any symbol property editor. If the name
|
|
|
|
* already exists, it overwrites the same name.
|
|
|
|
*
|
|
|
|
* @param aFieldName is a full description of the wanted field, and it must not match
|
2011-03-29 15:21:35 +00:00
|
|
|
* any of the default field names.
|
2010-06-17 16:30:10 +00:00
|
|
|
* @return int - the index within the config container at which aFieldName was
|
2011-03-29 15:21:35 +00:00
|
|
|
* added, or -1 if the name is illegal because it matches a default field name.
|
2010-06-17 16:30:10 +00:00
|
|
|
*/
|
|
|
|
int AddTemplateFieldName( const TEMPLATE_FIELDNAME& aFieldName )
|
|
|
|
{
|
|
|
|
return m_TemplateFieldNames.AddTemplateFieldName( aFieldName );
|
|
|
|
}
|
|
|
|
|
2010-07-14 13:24:36 +00:00
|
|
|
|
2010-06-17 16:30:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetTemplateFieldName
|
2011-03-29 15:21:35 +00:00
|
|
|
* returns a template field names list for read only access.
|
2010-06-17 16:30:10 +00:00
|
|
|
*/
|
|
|
|
const TEMPLATE_FIELDNAMES& GetTemplateFieldNames()
|
|
|
|
{
|
|
|
|
return m_TemplateFieldNames.GetTemplateFieldNames();
|
|
|
|
}
|
|
|
|
|
2010-07-14 13:24:36 +00:00
|
|
|
|
2011-08-30 19:24:28 +00:00
|
|
|
/**
|
|
|
|
* Function GetTemplates
|
|
|
|
* returns the field names template for read only access.
|
|
|
|
*/
|
|
|
|
const TEMPLATES& GetTemplates()
|
|
|
|
{
|
|
|
|
return m_TemplateFieldNames;
|
|
|
|
}
|
|
|
|
|
2010-06-17 16:30:10 +00:00
|
|
|
/**
|
|
|
|
* Function DeleteAllTemplateFieldNames
|
2011-03-29 15:21:35 +00:00
|
|
|
* removes all template field names.
|
2010-06-17 16:30:10 +00:00
|
|
|
*/
|
|
|
|
void DeleteAllTemplateFieldNames()
|
|
|
|
{
|
|
|
|
m_TemplateFieldNames.DeleteAllTemplateFieldNames();
|
|
|
|
}
|
|
|
|
|
2011-08-18 19:25:12 +00:00
|
|
|
/**
|
|
|
|
* Function GetConfigurationSettings
|
2011-11-17 01:06:08 +00:00
|
|
|
* returns the Eeschema applications settings.
|
2011-08-18 19:25:12 +00:00
|
|
|
* <p>
|
|
|
|
* This replaces the old statically define list that had the project file settings and
|
|
|
|
* the application settings mixed together. This was confusing and caused some settings
|
|
|
|
* to get saved and loaded incorrectly. Currently, only the settings that are needed at
|
|
|
|
* start up by the main window are defined here. There are other locally used settings
|
2011-09-30 18:15:37 +00:00
|
|
|
* scattered throughout the Eeschema source code. If you need to define a configuration
|
2011-08-18 19:25:12 +00:00
|
|
|
* setting that need to be loaded at run time, this is the place to define it.
|
|
|
|
* </p>
|
|
|
|
*/
|
2009-05-21 17:42:42 +00:00
|
|
|
PARAM_CFG_ARRAY& GetConfigurationSettings( void );
|
2011-08-18 19:25:12 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void LoadSettings();
|
|
|
|
void SaveSettings();
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void RedrawActiveWindow( wxDC* DC, bool EraseBg );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void CreateScreens();
|
|
|
|
void ReCreateHToolbar();
|
|
|
|
void ReCreateVToolbar();
|
|
|
|
void ReCreateOptToolbar();
|
|
|
|
void ReCreateMenuBar();
|
|
|
|
void OnHotKey( wxDC* aDC, int aHotKey, const wxPoint& aPosition, EDA_ITEM* aItem = NULL );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2010-11-12 16:59:16 +00:00
|
|
|
* Function OnModify
|
2010-02-18 20:07:29 +00:00
|
|
|
* Must be called after a schematic change
|
|
|
|
* in order to set the "modify" flag of the current screen
|
|
|
|
* and update the date in frame reference
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnModify();
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2013-09-11 09:34:10 +00:00
|
|
|
virtual wxString GetScreenDesc() const;
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void InstallConfigFrame( wxCommandEvent& event );
|
2014-01-08 14:18:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute a remote command send by Pcbnew via a socket,
|
|
|
|
* port KICAD_SCH_PORT_SERVICE_NUMBER (currently 4243)
|
|
|
|
* this is a virtual function called by EDA_DRAW_FRAME::OnSockRequest().
|
|
|
|
* @param cmdline = received command from socket
|
|
|
|
*/
|
|
|
|
virtual void ExecuteRemoteCommand( const char* cmdline );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnLeftClick( wxDC* aDC, const wxPoint& aPosition );
|
|
|
|
void OnLeftDClick( wxDC* aDC, const wxPoint& aPosition );
|
|
|
|
bool OnRightClick( const wxPoint& aPosition, wxMenu* PopMenu );
|
|
|
|
void OnSelectOptionToolbar( wxCommandEvent& event );
|
|
|
|
double BestZoom();
|
2009-04-10 14:53:24 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
/**
|
|
|
|
* Function LocateAndShowItem
|
|
|
|
* checks the schematic at \a aPosition in logical (drawing) units for a item
|
2011-05-20 19:21:09 +00:00
|
|
|
* matching the types in \a aFilterList.
|
2011-03-25 19:16:05 +00:00
|
|
|
* <p>
|
|
|
|
* The search is first performed at the nearest grid position to \a aPosition. If no
|
|
|
|
* item if found on grid, then \a aPosition is tested for any items. If the item found
|
2011-09-30 18:15:37 +00:00
|
|
|
* can be cross probed, a message is send to Pcbnew and the selected item is highlighted
|
2011-03-25 19:16:05 +00:00
|
|
|
* in PCB editor.
|
|
|
|
* </p>
|
|
|
|
* @param aPosition The wxPoint on the schematic to search.
|
|
|
|
* @param aFilterList A list of #KICAD_T types to to filter.
|
|
|
|
* @param aHotKeyCommandId A hot key command ID for performing additional tests when
|
|
|
|
* multiple items are found at \a aPosition.
|
|
|
|
* @return A SCH_ITEM pointer of the item found or NULL if no item found
|
|
|
|
*/
|
|
|
|
SCH_ITEM* LocateAndShowItem( const wxPoint& aPosition,
|
|
|
|
const KICAD_T aFilterList[] = SCH_COLLECTOR::AllItems,
|
|
|
|
int aHotKeyCommandId = 0 );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-03-10 19:36:30 +00:00
|
|
|
/**
|
2011-03-25 19:16:05 +00:00
|
|
|
* Function LocateItem
|
2011-05-20 19:21:09 +00:00
|
|
|
* checks for items at \a aPosition matching the types in \a aFilterList.
|
2011-03-10 19:36:30 +00:00
|
|
|
* <p>
|
2011-03-25 19:16:05 +00:00
|
|
|
* If multiple items are located at \a aPosition, a context menu is displayed to clarify
|
|
|
|
* which item the user intended to select. If the user aborts the context menu, NULL is
|
|
|
|
* returned and the abort request flag will be set to true. Make sure to clear this flag
|
|
|
|
* before attempting to display any other context menus.
|
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @param aPosition The wxPoint location where to search.
|
|
|
|
* @param aFilterList A list of #KICAD_T types to to filter.
|
|
|
|
* @param aHotKeyCommandId A hot key command ID for performing additional tests when
|
|
|
|
* multiple items are found at \a aPosition.
|
|
|
|
* @return The SCH_ITEM pointer of the item found or NULL if no item found.
|
|
|
|
*/
|
|
|
|
SCH_ITEM* LocateItem( const wxPoint& aPosition,
|
|
|
|
const KICAD_T aFilterList[] = SCH_COLLECTOR::AllItems,
|
|
|
|
int aHotKeyCommandId = 0 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function DeleteItemAtCrossHair
|
|
|
|
* delete the item found under the cross hair. If multiple items are found at the
|
|
|
|
* cross hair position, a context menu is displayed to clarify which item to delete.
|
|
|
|
* See LocateItem() for more information on locating multiple items.
|
|
|
|
*
|
2011-03-10 19:36:30 +00:00
|
|
|
* @param aDC The device context to update if and item is deleted.
|
|
|
|
* @return True if an item was deleted.
|
|
|
|
*/
|
2011-03-29 15:21:35 +00:00
|
|
|
bool DeleteItemAtCrossHair( wxDC* aDC );
|
2008-11-24 06:53:43 +00:00
|
|
|
|
2011-10-19 20:32:21 +00:00
|
|
|
/**
|
|
|
|
* Function FindComponentAndItem
|
2011-11-17 01:06:08 +00:00
|
|
|
* finds a component in the schematic and an item in this component.
|
|
|
|
* @param aReference The component reference designator to find.
|
|
|
|
* @param aSearchHierarchy If false, search the current sheet only. Otherwise,
|
|
|
|
* the entire hierarchy
|
|
|
|
* @param aSearchType A #SCH_SEARCH_T value used to determine what to search for.
|
|
|
|
* @param aSearchText The text to search for, either in value, reference or elsewhere.
|
|
|
|
* @param aWarpMouse If true, then move the mouse cursor to the item.
|
|
|
|
*/
|
|
|
|
SCH_ITEM* FindComponentAndItem( const wxString& aReference,
|
|
|
|
bool aSearchHierarchy,
|
|
|
|
SCH_SEARCH_T aSearchType,
|
|
|
|
const wxString& aSearchText,
|
|
|
|
bool aWarpMouse );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SendMessageToPcbnew
|
|
|
|
* send a remote to Pcbnew via a socket connection.
|
|
|
|
* @param objectToSync Item to be located on board (footprint, pad or text)
|
|
|
|
* @param LibItem Component in library if objectToSync is a sub item of a component
|
|
|
|
* <p>
|
|
|
|
* Commands are
|
|
|
|
* $PART: reference put cursor on footprint anchor
|
|
|
|
* $PIN: number $PART: reference put cursor on the footprint pad
|
|
|
|
* </p>
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void SendMessageToPCBNEW( EDA_ITEM* objectToSync, SCH_COMPONENT* LibItem );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2013-09-27 12:30:35 +00:00
|
|
|
/**
|
|
|
|
* BuildNetListBase
|
|
|
|
* netlist generation:
|
|
|
|
* Creates a flat list which stores all connected objects, and mainly
|
|
|
|
* pins and labels.
|
|
|
|
* @return a pointer to the list
|
|
|
|
*/
|
|
|
|
NETLIST_OBJECT_LIST * BuildNetListBase();
|
2010-07-14 13:24:36 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function CreateNetlist
|
2012-01-26 09:37:36 +00:00
|
|
|
* <ul>
|
|
|
|
* <li> test for some issues (missing or duplicate references and sheet names)
|
|
|
|
* <li> build netlist info
|
|
|
|
* <li> create the netlist file (different formats)
|
|
|
|
* </ul>
|
2010-07-14 13:24:36 +00:00
|
|
|
* @param aFormat = netlist format (NET_TYPE_PCBNEW ...)
|
|
|
|
* @param aFullFileName = full netlist file name
|
2012-01-26 09:37:36 +00:00
|
|
|
* @param aNetlistOptions = netlist options using OR'ed bits.
|
|
|
|
* <p>
|
|
|
|
* For SPICE netlist only:
|
|
|
|
* if NET_USE_NETNAMES is set, use net names from labels in schematic
|
|
|
|
* else use net numbers (net codes)
|
|
|
|
* if NET_USE_X_PREFIX is set : change "U" and "IC" refernce prefix to "X"
|
|
|
|
* </p>
|
2010-07-14 13:24:36 +00:00
|
|
|
* @return true if success.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
bool CreateNetlist( int aFormat,
|
|
|
|
const wxString& aFullFileName,
|
2012-01-26 09:37:36 +00:00
|
|
|
unsigned aNetlistOptions );
|
2010-07-14 13:24:36 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function WriteNetListFile
|
2010-07-14 13:24:36 +00:00
|
|
|
* Create the netlist file. Netlist info must be existing
|
2013-09-27 12:30:35 +00:00
|
|
|
* (BuildNetListBase() creates this info)
|
|
|
|
* @param aConnectedItemsList = the initialized list of connected items
|
2010-07-14 13:24:36 +00:00
|
|
|
* @param aFormat = netlist format (NET_TYPE_PCBNEW ...)
|
|
|
|
* @param aFullFileName = full netlist file name
|
2012-01-26 09:37:36 +00:00
|
|
|
* @param aNetlistOptions = netlist options using OR'ed bits.
|
|
|
|
* <p>
|
|
|
|
* For SPICE netlist only:
|
|
|
|
* if NET_USE_NETNAMES is set, use net names from labels in schematic
|
|
|
|
* else use net numbers (net codes)
|
|
|
|
* if NET_USE_X_PREFIX is set : change "U" and "IC" refernce prefix to "X"
|
|
|
|
* </p>
|
2010-07-14 13:24:36 +00:00
|
|
|
* @return true if success.
|
|
|
|
*/
|
2013-09-27 12:30:35 +00:00
|
|
|
bool WriteNetListFile( NETLIST_OBJECT_LIST * aConnectedItemsList,
|
|
|
|
int aFormat,
|
2011-10-15 13:25:57 +00:00
|
|
|
const wxString& aFullFileName,
|
2012-01-26 09:37:36 +00:00
|
|
|
unsigned aNetlistOptions );
|
2008-11-24 06:53:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function DeleteAnnotation
|
2011-05-20 19:21:09 +00:00
|
|
|
* clears the current component annotation.
|
|
|
|
* @param aCurrentSheetOnly Clear the entire schematic annotation if true. Otherwise
|
|
|
|
* only clear the annotation for the current sheet.
|
2009-04-10 14:53:24 +00:00
|
|
|
*/
|
2011-05-20 19:21:09 +00:00
|
|
|
void DeleteAnnotation( bool aCurrentSheetOnly );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-01-01 17:28:21 +00:00
|
|
|
/**
|
2011-05-20 19:21:09 +00:00
|
|
|
* Function AnnotateComponents
|
2011-01-01 17:28:21 +00:00
|
|
|
*
|
2011-05-20 19:21:09 +00:00
|
|
|
* annotates the components in the schematic that are not currently annotated.
|
|
|
|
*
|
|
|
|
* @param aAnnotateSchematic Annotate the entire schematic if true. Otherwise annotate
|
|
|
|
* the current sheet only.
|
|
|
|
* @param aSortOption Define the annotation order. See #ANNOTATE_ORDER_T.
|
|
|
|
* @param aAlgoOption Define the annotation style. See #ANNOTATE_OPTION_T.
|
|
|
|
* @param aResetAnnotation Clear any previous annotation if true. Otherwise, keep the
|
|
|
|
* existing component annotation.
|
|
|
|
* @param aRepairTimestamps Test for and repair any duplicate time stamps if true.
|
|
|
|
* Otherwise, keep the existing time stamps. This option
|
|
|
|
* could change previous annotation because time stamps are
|
|
|
|
* used to handle annotation in complex hierarchies.
|
|
|
|
*
|
|
|
|
* When the sheet number is used in annotation, each sheet annotation starts from sheet
|
|
|
|
* number * 100. In other words the first sheet uses 100 to 199, the second sheet uses
|
|
|
|
* 200 to 299, and so on.
|
|
|
|
*/
|
|
|
|
void AnnotateComponents( bool aAnnotateSchematic, ANNOTATE_ORDER_T aSortOption,
|
|
|
|
ANNOTATE_OPTION_T aAlgoOption, bool aResetAnnotation,
|
|
|
|
bool aRepairTimestamps );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function CheckAnnotate
|
|
|
|
* checks for annotation errors.
|
|
|
|
*
|
|
|
|
* <p>
|
|
|
|
* The following list of items are checked:
|
|
|
|
* <ul>
|
|
|
|
* <li> Components that are not annotated.
|
|
|
|
* <li> Duplicate component references.
|
|
|
|
* <li> Multiple part per package components where the part\n
|
|
|
|
* number is greater number of parts in the package.
|
|
|
|
* <li> Multiple part per package components where the reference\n
|
|
|
|
* designator is different between parts.
|
|
|
|
* </ul>
|
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @return Number of annotation errors found.
|
|
|
|
* @param aMessageList A wxArrayString to store error messages.
|
|
|
|
* @param aOneSheetOnly Check the current sheet only if true. Otherwise check
|
|
|
|
* the entire schematic.
|
|
|
|
*/
|
|
|
|
int CheckAnnotate( wxArrayString* aMessageList, bool aOneSheetOnly );
|
2011-02-05 02:21:11 +00:00
|
|
|
|
2009-01-08 20:29:07 +00:00
|
|
|
// Functions used for hierarchy handling
|
2011-12-08 21:05:43 +00:00
|
|
|
SCH_SHEET_PATH& GetCurrentSheet();
|
|
|
|
|
|
|
|
void SetCurrentSheet( const SCH_SHEET_PATH& aSheet );
|
|
|
|
|
2011-02-05 02:21:11 +00:00
|
|
|
/**
|
|
|
|
* Function DisplayCurrentSheet
|
|
|
|
* draws the current sheet on the display.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void DisplayCurrentSheet();
|
2009-04-10 14:53:24 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetUniqueFilenameForCurrentSheet
|
2009-01-08 20:29:07 +00:00
|
|
|
* @return a filename that can be used in plot and print functions
|
2009-11-04 20:46:53 +00:00
|
|
|
* for the current screen and sheet path.
|
|
|
|
* This filename is unique and must be used instead of the screen filename
|
|
|
|
* (or screen filename) when one must creates file for each sheet in the
|
|
|
|
* hierarchy. because in complex hierarchies a sheet and a SCH_SCREEN is
|
2009-09-22 12:27:57 +00:00
|
|
|
* used more than once
|
2010-12-14 21:39:31 +00:00
|
|
|
* Name is <root sheet filename>-<sheet path> and has no extension.
|
|
|
|
* However if filename is too long name is <sheet filename>-<sheet number>
|
2009-01-08 20:29:07 +00:00
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
wxString GetUniqueFilenameForCurrentSheet();
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
/**
|
|
|
|
* Function SetSheetNumberAndCount
|
2012-05-27 00:19:12 +00:00
|
|
|
* Set the m_ScreenNumber and m_NumberOfScreens members for screens
|
2009-09-22 12:27:57 +00:00
|
|
|
* must be called after a delete or add sheet command, and when entering
|
|
|
|
* a sheet
|
2008-04-30 17:04:22 +00:00
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void SetSheetNumberAndCount();
|
2008-04-30 17:04:22 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
/**
|
|
|
|
* Show the print dialog
|
2010-01-01 13:30:39 +00:00
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnPrint( wxCommandEvent& event );
|
2010-02-02 15:01:09 +00:00
|
|
|
|
|
|
|
wxPageSetupDialogData& GetPageSetupData() { return m_pageSetupData; }
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void SetPreviewPosition( const wxPoint& aPoint ) { m_previewPosition = aPoint; }
|
|
|
|
void SetPreviewSize( const wxSize& aSize ) { m_previewSize = aSize; }
|
2010-07-14 13:24:36 +00:00
|
|
|
const wxPoint& GetPreviewPosition() { return m_previewPosition; }
|
2011-10-15 13:25:57 +00:00
|
|
|
const wxSize& GetPreviewSize() { return m_previewSize; }
|
2010-02-02 15:01:09 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void SetPrintDialogPosition( const wxPoint& aPoint )
|
2010-02-02 15:01:09 +00:00
|
|
|
{
|
|
|
|
m_printDialogPosition = aPoint;
|
|
|
|
}
|
2010-07-14 13:24:36 +00:00
|
|
|
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void SetPrintDialogSize( const wxSize& aSize ) { m_printDialogSize = aSize; }
|
2010-07-14 13:24:36 +00:00
|
|
|
const wxPoint& GetPrintDialogPosition() { return m_printDialogPosition; }
|
2011-10-15 13:25:57 +00:00
|
|
|
const wxSize& GetPrintDialogSize() { return m_printDialogSize; }
|
2010-02-02 15:01:09 +00:00
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
bool GetPrintMonochrome() { return m_printMonochrome; }
|
|
|
|
void SetPrintMonochrome( bool aMonochrome ) { m_printMonochrome = aMonochrome; }
|
|
|
|
bool GetPrintSheetReference() { return m_printSheetReference; }
|
|
|
|
void SetPrintSheetReference( bool aShow ) { m_printSheetReference = aShow; }
|
2010-01-01 13:30:39 +00:00
|
|
|
|
2008-04-30 17:04:22 +00:00
|
|
|
// Plot functions:
|
2012-09-17 17:42:27 +00:00
|
|
|
// void ToPostProcess( wxCommandEvent& event );
|
|
|
|
void PlotSchematic( wxCommandEvent& event );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2008-04-30 17:04:22 +00:00
|
|
|
// read and save files
|
2011-08-18 19:25:12 +00:00
|
|
|
void Save_File( wxCommandEvent& event );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function OnSaveProject
|
|
|
|
* is the command event handler to save the entire project and create a component library
|
|
|
|
* archive.
|
|
|
|
*
|
|
|
|
* The component library archive name is <root_name>-cache.lib
|
|
|
|
*/
|
|
|
|
void OnSaveProject( wxCommandEvent& aEvent );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function LoadOneEEProject
|
|
|
|
* load an entire project into the schematic editor.
|
|
|
|
*
|
|
|
|
* This function loads schematic root file and it's subhierarchies, the project
|
|
|
|
* configuration, and the component libraries which are not already loaded.
|
|
|
|
*
|
|
|
|
* @param aFileName The full path an file name to load.
|
|
|
|
* @param aIsNew True indicates that this is a new project and the default project
|
|
|
|
* template is loaded.
|
|
|
|
* @return True if the project loaded properly.
|
|
|
|
*/
|
|
|
|
bool LoadOneEEProject( const wxString& aFileName, bool aIsNew );
|
|
|
|
|
2013-01-24 17:46:37 +00:00
|
|
|
/**
|
|
|
|
* Function AppendOneEEProject
|
|
|
|
* read an entire project and loads it into the schematic editor *whitout* replacing the
|
|
|
|
* existing contents.
|
|
|
|
* @return True if the project was imported properly.
|
|
|
|
*/
|
|
|
|
bool AppendOneEEProject();
|
|
|
|
|
2011-08-18 19:25:12 +00:00
|
|
|
/**
|
|
|
|
* Function LoadOneEEFile
|
|
|
|
* loads the schematic (.sch) file \a aFullFileName into \a aScreen.
|
|
|
|
*
|
|
|
|
* @param aScreen Pointer to the associated SCH_SCREEN object in which to load
|
|
|
|
* \a aFullFileName.
|
|
|
|
* @param aFullFileName A reference to a wxString object containing the absolute path
|
|
|
|
* and file name to load.
|
2013-01-24 17:46:37 +00:00
|
|
|
* @param append True if loaded file is being appended to the currently open file instead
|
|
|
|
* of replacing it.
|
2011-08-18 19:25:12 +00:00
|
|
|
* @return True if \a aFullFileName has been loaded (at least partially.)
|
|
|
|
*/
|
2013-01-24 17:46:37 +00:00
|
|
|
bool LoadOneEEFile( SCH_SCREEN* aScreen, const wxString& aFullFileName, bool append = false );
|
2011-08-18 19:25:12 +00:00
|
|
|
|
2013-02-02 17:39:59 +00:00
|
|
|
/**
|
|
|
|
* Function ReadCmpToFootprintLinkFile
|
|
|
|
* Loads a .cmp file from CvPcb and update the footprin field
|
|
|
|
* of components
|
|
|
|
* Prepares parameters and calls ProcessCmpToFootprintLinkFile
|
|
|
|
* to actually read the file and update Fp fields
|
|
|
|
*/
|
|
|
|
bool LoadCmpToFootprintLinkFile();
|
2008-05-07 23:41:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ProcessStuffFile
|
|
|
|
* gets footprint info from each line in the Stuff File by Ref Desg
|
2010-12-14 15:56:30 +00:00
|
|
|
*
|
2013-02-02 17:39:59 +00:00
|
|
|
* Read a Cmp To Footprint Link file created by CvPcb (the .cmp file).
|
2010-12-14 15:56:30 +00:00
|
|
|
* That file has lines like:
|
2013-02-02 17:39:59 +00:00
|
|
|
* BeginCmp
|
|
|
|
* TimeStamp = /32307DE2/AA450F67;
|
|
|
|
* Reference = C1;
|
|
|
|
* ValeurCmp = 47uF;
|
|
|
|
* IdModule = CP6;
|
|
|
|
* EndCmp
|
2010-12-14 15:56:30 +00:00
|
|
|
*
|
2013-02-02 17:39:59 +00:00
|
|
|
* @param aFullFilename = the full filename to read
|
2013-02-11 18:50:55 +00:00
|
|
|
* @param aForceFieldsVisibleAttribute = true to change the footprint field flag
|
|
|
|
* visible or invisible
|
|
|
|
* false = keep old state.
|
|
|
|
* @param aFieldsVisibleAttributeState = footprint field flag visible new state
|
2013-02-02 17:39:59 +00:00
|
|
|
* @return bool = true if success.
|
2008-05-07 23:41:05 +00:00
|
|
|
*/
|
2013-02-02 17:39:59 +00:00
|
|
|
bool ProcessCmpToFootprintLinkFile( wxString& aFullFilename,
|
2013-02-11 18:50:55 +00:00
|
|
|
bool aForceFieldsVisibleAttribute,
|
|
|
|
bool aFieldsVisibleAttributeState );
|
2008-05-07 23:41:05 +00:00
|
|
|
|
2011-08-18 19:25:12 +00:00
|
|
|
/**
|
|
|
|
* Function SaveEEFile
|
|
|
|
* saves \a aScreen to a schematic file.
|
|
|
|
*
|
|
|
|
* @param aScreen A pointer to the SCH_SCREEN object to save. A NULL pointer saves
|
|
|
|
* the current screen.
|
2012-09-28 17:47:41 +00:00
|
|
|
* @param aSaveUnderNewName Controls how the file is to be saved;: using previous name
|
|
|
|
* or under a new name .
|
2011-10-15 13:25:57 +00:00
|
|
|
* @param aCreateBackupFile Creates a back of the file associated with \a aScreen
|
2012-09-28 17:47:41 +00:00
|
|
|
* if true.
|
|
|
|
* Helper definitions #CREATE_BACKUP_FILE and
|
2011-10-15 13:25:57 +00:00
|
|
|
* #NO_BACKUP_FILE are defined for improved code readability.
|
2011-08-18 19:25:12 +00:00
|
|
|
* @return True if the file has been saved.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
bool SaveEEFile( SCH_SCREEN* aScreen,
|
2012-09-28 17:47:41 +00:00
|
|
|
bool aSaveUnderNewName = false,
|
2011-10-15 13:25:57 +00:00
|
|
|
bool aCreateBackupFile = CREATE_BACKUP_FILE );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
// General search:
|
|
|
|
|
|
|
|
private:
|
2011-10-27 13:34:28 +00:00
|
|
|
/**
|
|
|
|
* Function OnMoveItem
|
|
|
|
* handles the #ID_SCH_MOVE_ITEM event used to move schematic itams.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnMoveItem( wxCommandEvent& aEvent );
|
2011-10-26 20:46:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function OnRotate
|
2011-10-28 20:30:50 +00:00
|
|
|
* handles the #ID_SCH_ROTATE_CLOCKWISE and #ID_SCH_ROTATE_COUNTERCLOCKWISE events
|
|
|
|
* used to rotate schematic itams and blocks.
|
2011-10-26 20:46:04 +00:00
|
|
|
*/
|
|
|
|
void OnRotate( wxCommandEvent& aEvent );
|
|
|
|
|
2011-10-27 13:34:28 +00:00
|
|
|
/**
|
|
|
|
* Function OnEditItem
|
|
|
|
* handles the #ID_SCH_EDIT_ITEM event used to edit schematic itams.
|
|
|
|
*/
|
|
|
|
void OnEditItem( wxCommandEvent& aEvent );
|
|
|
|
|
2011-10-27 17:51:22 +00:00
|
|
|
/**
|
|
|
|
* Function OnDragItem
|
|
|
|
* handles the #ID_SCH_DRAG_ITEM event used to drag schematic itams.
|
|
|
|
*/
|
|
|
|
void OnDragItem( wxCommandEvent& aEvent );
|
|
|
|
|
2011-10-28 20:30:50 +00:00
|
|
|
/**
|
|
|
|
* Function OnOrient
|
|
|
|
* handles the #ID_SCH_MIRROR_X, #ID_SCH_MIRROR_Y, and #ID_SCH_ORIENT_NORMAL events
|
|
|
|
* used to orient schematic itams and blocks.
|
|
|
|
*/
|
|
|
|
void OnOrient( wxCommandEvent& aEvent );
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnExit( wxCommandEvent& event );
|
|
|
|
void OnAnnotate( wxCommandEvent& event );
|
|
|
|
void OnErc( wxCommandEvent& event );
|
|
|
|
void OnCreateNetlist( wxCommandEvent& event );
|
|
|
|
void OnCreateBillOfMaterials( wxCommandEvent& event );
|
|
|
|
void OnFindItems( wxCommandEvent& event );
|
|
|
|
void OnFindDialogClose( wxFindDialogEvent& event );
|
|
|
|
void OnFindDrcMarker( wxFindDialogEvent& event );
|
|
|
|
void OnFindCompnentInLib( wxFindDialogEvent& event );
|
2011-10-19 20:32:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function OnFindSchematicItem
|
|
|
|
* finds an item in the schematic matching the search criteria in \a aEvent.
|
|
|
|
*
|
|
|
|
* @param aEvent - Find dialog event containing the find parameters.
|
|
|
|
*/
|
|
|
|
void OnFindSchematicItem( wxFindDialogEvent& aEvent );
|
|
|
|
|
2011-11-17 01:06:08 +00:00
|
|
|
/**
|
|
|
|
* Function OnReplace
|
|
|
|
* performs a search and replace of text in an item in the schematic matching the
|
|
|
|
* search and replace criteria in \a aEvent.
|
|
|
|
*
|
|
|
|
* @param aEvent - Find dialog event containing the search and replace parameters.
|
|
|
|
*/
|
|
|
|
void OnFindReplace( wxFindDialogEvent& aEvent );
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnLoadFile( wxCommandEvent& event );
|
2013-02-02 17:39:59 +00:00
|
|
|
void OnLoadCmpToFootprintLinkFile( wxCommandEvent& event );
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnNewProject( wxCommandEvent& event );
|
|
|
|
void OnLoadProject( wxCommandEvent& event );
|
2013-01-24 17:46:37 +00:00
|
|
|
void OnAppendProject( wxCommandEvent& event );
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnOpenPcbnew( wxCommandEvent& event );
|
|
|
|
void OnOpenCvpcb( wxCommandEvent& event );
|
|
|
|
void OnOpenLibraryEditor( wxCommandEvent& event );
|
|
|
|
void OnSetOptions( wxCommandEvent& event );
|
|
|
|
void OnCancelCurrentCommand( wxCommandEvent& aEvent );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
void OnSelectItem( wxCommandEvent& aEvent );
|
|
|
|
|
2011-10-19 20:32:21 +00:00
|
|
|
/**
|
|
|
|
* Function OnCopySchematicItemRequest
|
|
|
|
* is the command event handler for duplicating the item at the current location.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnCopySchematicItemRequest( wxCommandEvent& event );
|
2010-01-09 08:50:30 +00:00
|
|
|
|
2009-04-29 17:09:00 +00:00
|
|
|
/* User interface update event handlers. */
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnUpdateBlockSelected( wxUpdateUIEvent& event );
|
|
|
|
void OnUpdatePaste( wxUpdateUIEvent& event );
|
|
|
|
void OnUpdateHiddenPins( wxUpdateUIEvent& event );
|
|
|
|
void OnUpdateBusOrientation( wxUpdateUIEvent& event );
|
|
|
|
void OnUpdateSelectTool( wxUpdateUIEvent& aEvent );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function SetLanguage
|
2010-03-20 19:57:59 +00:00
|
|
|
* called on a language menu selection
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void SetLanguage( wxCommandEvent& event );
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2012-01-14 11:52:46 +00:00
|
|
|
/**
|
|
|
|
* Function UpdateTitle
|
|
|
|
* sets the main window title bar text.
|
|
|
|
* <p>
|
|
|
|
* If file name defined by SCH_SCREEN::m_FileName is not set, the title is set to the
|
|
|
|
* application name appended with no file.
|
|
|
|
* Otherwise, the title is set to the hierarchical sheet path and the full file name,
|
|
|
|
* and read only is appended to the title if the user does not have write
|
|
|
|
* access to the file.
|
|
|
|
* </p>
|
|
|
|
*/
|
|
|
|
void UpdateTitle();
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
// Bus Entry
|
2013-04-01 10:35:20 +00:00
|
|
|
SCH_BUS_WIRE_ENTRY* CreateBusWireEntry( wxDC* DC );
|
|
|
|
SCH_BUS_BUS_ENTRY* CreateBusBusEntry( wxDC* DC );
|
|
|
|
void SetBusEntryShape( wxDC* DC, SCH_BUS_ENTRY_BASE* BusEntry, char entry_shape );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-02-03 19:27:28 +00:00
|
|
|
/**
|
|
|
|
* Function AddNoConnect
|
|
|
|
* add a no connect item to the current schematic sheet at \a aPosition.
|
|
|
|
* @param aDC The device context to draw the no connect to.
|
|
|
|
* @param aPosition The position in logical (drawing) units to add the no connect.
|
|
|
|
* @return The no connect item added.
|
|
|
|
*/
|
|
|
|
SCH_NO_CONNECT* AddNoConnect( wxDC* aDC, const wxPoint& aPosition );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/**
|
|
|
|
* Function AddJunction
|
|
|
|
* adds a new junction at \a aPosition.
|
|
|
|
*/
|
2011-11-08 16:37:25 +00:00
|
|
|
SCH_JUNCTION* AddJunction( wxDC* aDC, const wxPoint& aPosition, bool aPutInUndoList = false );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-10-19 20:32:21 +00:00
|
|
|
/**
|
|
|
|
* Function MoveItem
|
|
|
|
* start moving \a aItem using the mouse.
|
|
|
|
*
|
|
|
|
* @param aItem A pointer to an SCH_ITEM to move.
|
|
|
|
* @param aDC The device context to draw \a aItem.
|
|
|
|
*/
|
|
|
|
void MoveItem( SCH_ITEM* aItem, wxDC* aDC );
|
|
|
|
|
2011-04-05 14:46:51 +00:00
|
|
|
// Text, label, glabel
|
2011-10-15 13:25:57 +00:00
|
|
|
SCH_TEXT* CreateNewText( wxDC* aDC, int aType );
|
|
|
|
void EditSchematicText( SCH_TEXT* TextStruct );
|
|
|
|
void ChangeTextOrient( SCH_TEXT* aTextItem, wxDC* aDC );
|
2011-03-03 01:58:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function OnCovertTextType
|
|
|
|
* is a command event handler to change a text type to an other one. The new text,
|
|
|
|
* label, hierarchical label, or global label is created from the old text and the
|
|
|
|
* old text is deleted.
|
|
|
|
*/
|
|
|
|
void OnConvertTextType( wxCommandEvent& aEvent );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/**
|
|
|
|
* Function BeginSegment
|
|
|
|
* creates a new segment ( WIRE, BUS ) or terminates the current segment in progress.
|
|
|
|
*
|
|
|
|
* If the end of the current segment is on an other segment, place a junction if needed
|
|
|
|
* and terminates the command. If the end of the current segment is on a pin, terminate
|
|
|
|
* the command. In all other cases starts a new segment.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void BeginSegment( wxDC* DC, int type );
|
2011-11-10 15:55:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function EndSegment
|
|
|
|
* called to terminate a bus, wire, or line creation
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void EndSegment( wxDC* DC );
|
2011-11-10 15:55:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function DeleteCurrentSegment
|
|
|
|
* erases the last segment at the current mouse position.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void DeleteCurrentSegment( wxDC* DC );
|
|
|
|
void DeleteConnection( bool DeleteFullConnection );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
// graphic lines
|
2011-10-15 13:25:57 +00:00
|
|
|
void Edge( DRAWSEGMENT* Segment, wxDC* DC );
|
|
|
|
void SetNewWidth( DRAWSEGMENT* DrawSegm, wxDC* DC );
|
|
|
|
void Layer( DRAWSEGMENT* Segment, wxDC* DC );
|
|
|
|
DRAWSEGMENT* Begin_Edge( DRAWSEGMENT* Segment, wxDC* DC );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-08-31 14:59:20 +00:00
|
|
|
// Images:
|
2011-10-15 13:25:57 +00:00
|
|
|
SCH_BITMAP* CreateNewImage( wxDC* aDC );
|
|
|
|
void MoveImage( SCH_BITMAP* aItem, wxDC* aDC );
|
|
|
|
void RotateImage( SCH_BITMAP* aItem );
|
2011-08-31 14:59:20 +00:00
|
|
|
/**
|
|
|
|
* Function MirrorImage
|
|
|
|
* Mirror a bitmap
|
|
|
|
* @param aItem = the SCH_BITMAP item to mirror
|
|
|
|
* @param Is_X_axis = true to mirror relative to Horizontal axis
|
|
|
|
* false to mirror relative to vertical axis
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void MirrorImage( SCH_BITMAP* aItem, bool Is_X_axis );
|
|
|
|
void EditImage( SCH_BITMAP* aItem );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
// Hierarchical Sheet & PinSheet
|
2013-08-05 21:02:41 +00:00
|
|
|
void InstallHierarchyFrame( wxDC* DC, wxPoint& pos );
|
|
|
|
SCH_SHEET* CreateSheet( wxDC* DC );
|
|
|
|
void ReSizeSheet( SCH_SHEET* Sheet, wxDC* DC );
|
|
|
|
|
|
|
|
/// Loads the cache library associated to the aFileName
|
|
|
|
bool LoadCacheLibrary( const wxString& aFileName );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
public:
|
2011-06-07 15:29:01 +00:00
|
|
|
/**
|
|
|
|
* Function EditSheet
|
|
|
|
* is used to edit an existing sheet or add a new sheet to the schematic.
|
|
|
|
* <p>
|
|
|
|
* When \a aSheet is a new sheet:
|
|
|
|
* <ul>
|
|
|
|
* <li>and the file name already exists in the schematic hierarchy, the screen associated
|
|
|
|
* with the sheet found in the hierarchy is associated with \a aSheet.</li>
|
|
|
|
* <li>and the file name already exists on the system, then \a aSheet is loaded with the
|
|
|
|
* existing file.</li>
|
|
|
|
* <li>and the file name does not exist in the schematic hierarchy or on the file system,
|
|
|
|
* then a new screen is created and associated with \a aSheet.</li>
|
|
|
|
* </ul> </p> <p>
|
|
|
|
* When \a aSheet is an existing sheet:
|
|
|
|
* <ul>
|
|
|
|
* <li>and the file name already exists in the schematic hierarchy, the current associated
|
|
|
|
* screen is replace by the one found in the hierarchy.</li>
|
|
|
|
* <li>and the file name already exists on the system, the current associated screen file
|
|
|
|
* name is changed and the file is loaded.</li>
|
|
|
|
* <li>and the file name does not exist in the schematic hierarchy or on the file system,
|
|
|
|
* the current associated screen file name is changed and saved to disk.</li>
|
|
|
|
* </ul> </p>
|
|
|
|
*/
|
|
|
|
bool EditSheet( SCH_SHEET* aSheet, wxDC* aDC );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-03-30 19:26:05 +00:00
|
|
|
wxPoint GetLastSheetPinPosition() const { return m_lastSheetPinPosition; }
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
private:
|
2011-10-15 13:25:57 +00:00
|
|
|
void StartMoveSheet( SCH_SHEET* sheet, wxDC* DC );
|
2011-03-30 19:26:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function CreateSheetPin
|
|
|
|
* creates a new SCH_SHEET_PIN object and add it to \a aSheet at the current cursor position.
|
|
|
|
* @param aSheet The sheet to add the new sheet pin to.
|
|
|
|
* @param aDC The device context to draw on.
|
|
|
|
* @return The new sheet pin object created or NULL if the task was aborted by the user.
|
|
|
|
*/
|
|
|
|
SCH_SHEET_PIN* CreateSheetPin( SCH_SHEET* aSheet, wxDC* aDC );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function EditSheetPin
|
|
|
|
* displays the dialog for editing the parameters of \a aSheetPin.
|
|
|
|
* @param aSheetPin The sheet pin item to edit.
|
|
|
|
* @param aDC The device context to draw on.
|
|
|
|
* @return The user response from the edit dialog.
|
|
|
|
*/
|
|
|
|
int EditSheetPin( SCH_SHEET_PIN* aSheetPin, wxDC* aDC );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function ImportSheetPin
|
|
|
|
* automatically creates a sheet pin from the hierarchical labels in the schematic
|
|
|
|
* referenced by \a aSheet.
|
|
|
|
* @param aSheet The sheet to import the new sheet pin to.
|
|
|
|
* @param aDC The device context to draw on.
|
|
|
|
* @return The new sheet pin object importd or NULL if the task was aborted by the user.
|
|
|
|
*/
|
|
|
|
SCH_SHEET_PIN* ImportSheetPin( SCH_SHEET* aSheet, wxDC* aDC );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
public:
|
2011-03-10 19:36:30 +00:00
|
|
|
/**
|
|
|
|
* Function DeleteItem
|
|
|
|
* removes \a aItem from the current screen and saves it in the undo list.
|
|
|
|
* @param aItem The item to remove from the current screen.
|
|
|
|
*/
|
|
|
|
void DeleteItem( SCH_ITEM* aItem );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-01-12 21:47:54 +00:00
|
|
|
int GetLabelIncrement() const { return m_repeatLabelDelta; }
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
private:
|
|
|
|
|
2013-05-24 23:58:29 +00:00
|
|
|
/**
|
|
|
|
* Function Load_Component
|
|
|
|
* loads from a library and places a component.
|
|
|
|
* if libname != "", search in lib "libname"
|
|
|
|
* else search in all loaded libs
|
2014-02-18 21:41:27 +00:00
|
|
|
*
|
|
|
|
* @param aHistoryList list remembering recently used component names.
|
|
|
|
* @param aHistoryLastUnit remembering last unit in last component.
|
|
|
|
* (TODO(hzeller): This really should be a class doing history, but didn't
|
|
|
|
* want to change too much while other refactoring is going on)
|
2013-05-24 23:58:29 +00:00
|
|
|
*/
|
2010-07-14 13:24:36 +00:00
|
|
|
SCH_COMPONENT* Load_Component( wxDC* DC,
|
|
|
|
const wxString& libname,
|
2014-02-18 21:41:27 +00:00
|
|
|
wxArrayString& aHistoryList,
|
|
|
|
int& aHistoryLastUnit,
|
2010-07-14 13:24:36 +00:00
|
|
|
bool UseLibBrowser );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-08-30 19:24:28 +00:00
|
|
|
/**
|
|
|
|
* Function EditComponent
|
|
|
|
* displays the edit component dialog to edit the parameters of \a aComponent.
|
|
|
|
*
|
|
|
|
* @param aComponent is a pointer to the SCH_COMPONENT object to be edited.
|
|
|
|
*/
|
|
|
|
void EditComponent( SCH_COMPONENT* aComponent );
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
public:
|
2013-05-24 23:58:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function OrientComponent
|
|
|
|
* rotates and mirrors a component.
|
|
|
|
*/
|
2011-10-28 20:30:50 +00:00
|
|
|
void OrientComponent( COMPONENT_ORIENTATION_T aOrientation = CMP_NORMAL );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
private:
|
2011-10-15 13:25:57 +00:00
|
|
|
void OnSelectUnit( wxCommandEvent& aEvent );
|
|
|
|
void ConvertPart( SCH_COMPONENT* DrawComponent, wxDC* DC );
|
|
|
|
void SetInitCmp( SCH_COMPONENT* DrawComponent, wxDC* DC );
|
2011-03-29 15:21:35 +00:00
|
|
|
|
2012-06-03 11:16:08 +00:00
|
|
|
/**
|
|
|
|
* Function EditComponentFieldText
|
|
|
|
* displays the edit field dialog to edit the parameters of \a aField.
|
|
|
|
*
|
|
|
|
* @param aField is a pointer to the SCH_FIELD object to be edited.
|
|
|
|
*/
|
|
|
|
void EditComponentFieldText( SCH_FIELD* aField );
|
|
|
|
|
2011-03-29 15:21:35 +00:00
|
|
|
void RotateField( SCH_FIELD* aField, wxDC* aDC );
|
2010-07-14 13:24:36 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/**
|
|
|
|
* Function PastListOfItems
|
|
|
|
* pastes a list of items from the block stack.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void PasteListOfItems( wxDC* DC );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
/* Undo - redo */
|
|
|
|
public:
|
2009-07-26 17:16:42 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function SaveCopyInUndoList.
|
2010-12-14 21:39:31 +00:00
|
|
|
* Create a copy of the current schematic item, and put it in the undo list.
|
|
|
|
*
|
|
|
|
* flag_type_command =
|
|
|
|
* UR_CHANGED
|
|
|
|
* UR_NEW
|
|
|
|
* UR_DELETED
|
|
|
|
* UR_WIRE_IMAGE
|
|
|
|
* UR_MOVED
|
|
|
|
*
|
|
|
|
* If it is a delete command, items are put on list with the .Flags member
|
|
|
|
* set to UR_DELETED. When it will be really deleted, the GetDrawItems() and the
|
|
|
|
* sub-hierarchy will be deleted. If it is only a copy, the GetDrawItems() and the
|
|
|
|
* sub-hierarchy must NOT be deleted.
|
|
|
|
*
|
2010-12-28 11:24:42 +00:00
|
|
|
* @note
|
2010-12-14 21:39:31 +00:00
|
|
|
* Edit wires and buses is a bit complex.
|
2010-12-28 11:24:42 +00:00
|
|
|
* because when a new wire is added, a lot of modifications in wire list is made
|
|
|
|
* (wire concatenation): modified items, deleted items and new items
|
2010-12-14 21:39:31 +00:00
|
|
|
* so flag_type_command is UR_WIRE_IMAGE: the struct ItemToCopy is a list of
|
|
|
|
* wires saved in Undo List (for Undo or Redo commands, saved wires will be
|
|
|
|
* exchanged with current wire list
|
2009-07-26 17:16:42 +00:00
|
|
|
* @param aItemToCopy = the schematic item modified by the command to undo
|
2011-04-05 14:46:51 +00:00
|
|
|
* @param aTypeCommand = command type (see enum UNDO_REDO_T)
|
2009-09-22 12:27:57 +00:00
|
|
|
* @param aTransformPoint = the reference point of the transformation,
|
|
|
|
* for commands like move
|
2009-07-26 17:16:42 +00:00
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
void SaveCopyInUndoList( SCH_ITEM* aItemToCopy,
|
2011-04-05 14:46:51 +00:00
|
|
|
UNDO_REDO_T aTypeCommand,
|
2010-12-14 21:39:31 +00:00
|
|
|
const wxPoint& aTransformPoint = wxPoint( 0, 0 ) );
|
2009-07-26 17:16:42 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function SaveCopyInUndoList (overloaded).
|
2009-07-26 17:16:42 +00:00
|
|
|
* Creates a new entry in undo list of commands.
|
|
|
|
* add a list of pickers to handle a list of items
|
|
|
|
* @param aItemsList = the list of items modified by the command to undo
|
2011-04-05 14:46:51 +00:00
|
|
|
* @param aTypeCommand = command type (see enum UNDO_REDO_T)
|
2009-09-22 12:27:57 +00:00
|
|
|
* @param aTransformPoint = the reference point of the transformation,
|
|
|
|
* for commands like move
|
2009-07-26 17:16:42 +00:00
|
|
|
*/
|
2009-09-22 12:27:57 +00:00
|
|
|
void SaveCopyInUndoList( PICKED_ITEMS_LIST& aItemsList,
|
2011-04-05 14:46:51 +00:00
|
|
|
UNDO_REDO_T aTypeCommand,
|
2010-12-14 21:39:31 +00:00
|
|
|
const wxPoint& aTransformPoint = wxPoint( 0, 0 ) );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
|
|
|
private:
|
2010-07-14 13:24:36 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2010-11-12 16:59:16 +00:00
|
|
|
* Function PutDataInPreviousState
|
2010-12-14 21:39:31 +00:00
|
|
|
* is used in undo or redo command to put data pointed by List in the previous state, i.e.
|
|
|
|
* the state stored in \a aList
|
|
|
|
* @param aList a PICKED_ITEMS_LIST pointer to the list of items to undo/redo
|
|
|
|
* @param aRedoCommand a bool: true for redo, false for undo
|
2009-08-01 19:26:05 +00:00
|
|
|
*/
|
2010-12-14 21:39:31 +00:00
|
|
|
void PutDataInPreviousState( PICKED_ITEMS_LIST* aList, bool aRedoCommand );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetSchematicFromRedoList
|
2009-08-01 19:26:05 +00:00
|
|
|
* Redo the last edition:
|
|
|
|
* - Save the current schematic in Undo list
|
|
|
|
* - Get an old version of the schematic from Redo list
|
|
|
|
* @return none
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void GetSchematicFromRedoList( wxCommandEvent& event );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetSchematicFromUndoList
|
2010-12-14 21:39:31 +00:00
|
|
|
* performs an undo the last edition:
|
2009-08-01 19:26:05 +00:00
|
|
|
* - Save the current schematic in Redo list
|
|
|
|
* - Get an old version of the schematic from Undo list
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void GetSchematicFromUndoList( wxCommandEvent& event );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-01-07 19:24:24 +00:00
|
|
|
/**
|
|
|
|
* Function copyBlockItems
|
|
|
|
* copies the list of block item.
|
|
|
|
* @sa m_blockItems
|
2011-06-07 15:29:01 +00:00
|
|
|
* @param aItemsList List to copy the block select items into.
|
2011-01-07 19:24:24 +00:00
|
|
|
*/
|
|
|
|
void copyBlockItems( PICKED_ITEMS_LIST& aItemsList );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-05-20 19:21:09 +00:00
|
|
|
/**
|
|
|
|
* Function addJunctionMenuEntries
|
|
|
|
* adds the context menu items to \a aMenu for \a aJunction.
|
2011-06-07 15:29:01 +00:00
|
|
|
* @param aMenu The menu to add the items to.
|
|
|
|
* @param aJunction The SCH_JUNCTION object selected.
|
2011-05-20 19:21:09 +00:00
|
|
|
*/
|
|
|
|
void addJunctionMenuEntries( wxMenu* aMenu, SCH_JUNCTION* aJunction );
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
public:
|
2011-10-15 13:25:57 +00:00
|
|
|
void Key( wxDC* DC, int hotkey, EDA_ITEM* DrawStruct );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/**
|
|
|
|
* Function InitBlockPasteInfos
|
|
|
|
* initializes the parameters used by the block paste command.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void InitBlockPasteInfos();
|
2011-11-10 15:55:05 +00:00
|
|
|
|
2010-11-13 11:02:24 +00:00
|
|
|
/**
|
|
|
|
* Function ReturnBlockCommand
|
|
|
|
* Returns the block command internat code (BLOCK_MOVE, BLOCK_COPY...)
|
|
|
|
* corresponding to the keys pressed (ALT, SHIFT, SHIFT ALT ..) when
|
|
|
|
* block command is started by dragging the mouse.
|
|
|
|
* @param aKey = the key modifiers (Alt, Shift ...)
|
|
|
|
* @return the block command id (BLOCK_MOVE, BLOCK_COPY...)
|
|
|
|
*/
|
2011-11-10 15:55:05 +00:00
|
|
|
virtual int ReturnBlockCommand( int aKey );
|
2010-11-13 11:02:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-12-14 21:39:31 +00:00
|
|
|
* Function HandleBlockPlace
|
2010-11-13 11:02:24 +00:00
|
|
|
* Called after HandleBlockEnd, when a block command needs to be
|
|
|
|
* executed after the block is moved to its new place
|
|
|
|
* (bloc move, drag, copy .. )
|
|
|
|
* Parameters must be initialized in GetScreen()->m_BlockLocate
|
|
|
|
*/
|
|
|
|
virtual void HandleBlockPlace( wxDC* DC );
|
|
|
|
|
|
|
|
/**
|
2010-12-14 21:39:31 +00:00
|
|
|
* Function HandleBlockEnd
|
2010-11-13 11:02:24 +00:00
|
|
|
* Handle the "end" of a block command,
|
|
|
|
* i.e. is called at the end of the definition of the area of a block.
|
|
|
|
* depending on the current block command, this command is executed
|
|
|
|
* or parameters are initialized to prepare a call to HandleBlockPlace
|
|
|
|
* in GetScreen()->m_BlockLocate
|
2013-10-15 16:18:30 +00:00
|
|
|
*
|
|
|
|
* @param aDC is a device context to draw on.
|
2010-11-13 11:02:24 +00:00
|
|
|
* @return false if no item selected, or command finished,
|
|
|
|
* true if some items found and HandleBlockPlace must be called later
|
|
|
|
*/
|
2013-10-15 16:18:30 +00:00
|
|
|
virtual bool HandleBlockEnd( wxDC* aDC );
|
2010-11-13 11:02:24 +00:00
|
|
|
|
2011-11-10 15:55:05 +00:00
|
|
|
/**
|
|
|
|
* Function RepeatDrawItem
|
|
|
|
* repeats the last item placement if the last item was a bus, bus entry,
|
|
|
|
* label, or component.
|
|
|
|
*
|
|
|
|
* Labels that end with a number will be incremented.
|
|
|
|
*/
|
2011-10-15 13:25:57 +00:00
|
|
|
void RepeatDrawItem( wxDC* DC );
|
2008-04-14 19:22:48 +00:00
|
|
|
|
2013-08-05 21:02:41 +00:00
|
|
|
/**
|
|
|
|
* Function SetRepeatItem
|
|
|
|
* clones aItem and owns that clone in this container.
|
|
|
|
*/
|
|
|
|
void SetRepeatItem( SCH_ITEM* aItem );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetRepeatItem
|
|
|
|
* returns the item which is to be repeated with the insert key. Such object
|
|
|
|
* is owned by this container, and must be cloned.
|
|
|
|
*/
|
|
|
|
SCH_ITEM* GetRepeatItem() const { return m_item_to_repeat; }
|
2011-01-12 21:47:54 +00:00
|
|
|
|
2011-04-05 14:46:51 +00:00
|
|
|
/**
|
|
|
|
* Function SetUndoItem
|
|
|
|
* clones \a aItem which can be used to restore the state of the item being edited
|
|
|
|
* when the user cancels the editing in progress.
|
|
|
|
*
|
|
|
|
* @param aItem The item to make a clone of for undoing the last change. Set to
|
|
|
|
* NULL to free the current undo item.
|
|
|
|
*/
|
|
|
|
void SetUndoItem( const SCH_ITEM* aItem );
|
|
|
|
|
|
|
|
SCH_ITEM* GetUndoItem() const { return m_undoItem; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SaveUndoItemInUndoList
|
2011-04-12 14:19:59 +00:00
|
|
|
* swaps the cloned item in member variable m_undoItem with \a aItem and saves it to
|
|
|
|
* the undo list then swap the data back. This swaps the internal structure of the
|
|
|
|
* item with the cloned item. It does not swap the actual item pointers themselves.
|
2011-04-05 14:46:51 +00:00
|
|
|
*
|
|
|
|
* @param aItem The item to swap with the current undo item.
|
|
|
|
*/
|
|
|
|
void SaveUndoItemInUndoList( SCH_ITEM* aItem );
|
|
|
|
|
2009-09-18 14:56:05 +00:00
|
|
|
/**
|
2011-10-02 20:24:41 +00:00
|
|
|
* Function LoadLibraries
|
|
|
|
*
|
|
|
|
* Clear all libraries currently loaded and load all of the project libraries.
|
2009-09-18 14:56:05 +00:00
|
|
|
*/
|
2011-06-15 18:44:24 +00:00
|
|
|
void LoadLibraries( void );
|
2009-07-05 12:09:41 +00:00
|
|
|
|
2013-01-21 19:58:02 +00:00
|
|
|
/**
|
|
|
|
* Function CreateArchiveLibraryCacheFile
|
|
|
|
* creates a library file with the name of the root document plus the '-cache' suffix,
|
|
|
|
* That file will contain all components used in the current schematic.
|
|
|
|
*
|
2013-05-07 18:32:06 +00:00
|
|
|
* @param aUseCurrentSheetFilename = false to use the root shhet filename
|
|
|
|
* (default) or true to use the currently opened sheet.
|
|
|
|
* @return true if the file was written successfully.
|
2013-01-21 19:58:02 +00:00
|
|
|
*/
|
2013-05-07 18:32:06 +00:00
|
|
|
bool CreateArchiveLibraryCacheFile( bool aUseCurrentSheetFilename = false );
|
2013-01-21 19:58:02 +00:00
|
|
|
|
2011-11-11 20:10:24 +00:00
|
|
|
/**
|
|
|
|
* Function CreateArchiveLibrary
|
|
|
|
* creates a library \a aFileName that contains all components used in the current schematic.
|
|
|
|
*
|
|
|
|
* @param aFileName The full path and file name of the archive library.
|
|
|
|
* @return True if \a aFileName was written successfully.
|
|
|
|
*/
|
|
|
|
bool CreateArchiveLibrary( const wxString& aFileName );
|
|
|
|
|
2011-03-29 15:21:35 +00:00
|
|
|
/**
|
|
|
|
* Function PrintPage
|
|
|
|
* plots or prints the current sheet to the clipboard.
|
2011-03-28 19:26:31 +00:00
|
|
|
* @param aDC = wxDC given by the calling print function
|
|
|
|
* @param aPrintMask = not used here
|
|
|
|
* @param aPrintMirrorMode = not used here (Set when printing in mirror mode)
|
|
|
|
* @param aData = a pointer on an auxiliary data (not always used, NULL if not used)
|
|
|
|
*/
|
2013-03-30 17:24:04 +00:00
|
|
|
virtual void PrintPage( wxDC* aDC, LAYER_MSK aPrintMask,
|
2011-03-28 19:26:31 +00:00
|
|
|
bool aPrintMirrorMode, void* aData = NULL );
|
|
|
|
|
2011-06-15 18:44:24 +00:00
|
|
|
void SetSimulatorCommand( const wxString& aCommand ) { m_simulatorCommand = aCommand; }
|
|
|
|
|
|
|
|
wxString GetSimulatorCommand() const { return m_simulatorCommand; }
|
|
|
|
|
|
|
|
void SetNetListerCommand( const wxString& aCommand ) { m_netListerCommand = aCommand; }
|
|
|
|
|
|
|
|
wxString GetNetListerCommand() const { return m_netListerCommand; }
|
|
|
|
|
2008-04-14 19:22:48 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // WX_EESCHEMA_STRUCT_H
|