Preparing hotkeys/shortcuts changes in place menu.
This commit is contained in:
parent
edd35b4e90
commit
8db19bbd6a
|
@ -143,7 +143,7 @@ void LAYER_BOX_SELECTOR::Resync()
|
||||||
layername = board->GetLayerName( layerid );
|
layername = board->GetLayerName( layerid );
|
||||||
|
|
||||||
if( m_layerhotkeys && m_hotkeys != NULL )
|
if( m_layerhotkeys && m_hotkeys != NULL )
|
||||||
layername = AddHotkeyName( layername, m_hotkeys, layerhk[layerid], false );
|
layername = AddHotkeyName( layername, m_hotkeys, layerhk[layerid], IS_COMMENT );
|
||||||
|
|
||||||
Append( layername, layerbmp, (void*) layerid );
|
Append( layername, layerbmp, (void*) layerid );
|
||||||
}
|
}
|
||||||
|
|
|
@ -171,17 +171,40 @@ wxString ReturnKeyNameFromKeyCode( int aKeycode, bool* aIsFound )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* helper function use in AddHotkeyName to calculate an accelerator string
|
||||||
|
* In some menus, accelerators do not perform exactely the same action as
|
||||||
|
* the hotkey that perfoms a similar action.
|
||||||
|
* this is usually the case when this action uses the current mouse position
|
||||||
|
* for instance zoom action is ran from the F1 key or the Zoom menu.
|
||||||
|
* a zoom uses the mouse position from a hot key and not from the menu
|
||||||
|
* In this case, the accelerator if Shift+<hotkey>
|
||||||
|
* But for some keys, the Shift modifier is not usable, and the accelerator is Alt+<hotkey>
|
||||||
|
*/
|
||||||
|
static void AddModifierToKey( wxString& aFullKey, const wxString & aKey )
|
||||||
|
{
|
||||||
|
#if 1 // set to 0 for new behavior, 1 for old
|
||||||
|
aFullKey << wxT( " <" ) << aKey << wxT( ">" );
|
||||||
|
#else
|
||||||
|
if( aKey.IsSameAs(wxT( "/" ) ) )
|
||||||
|
aFullKey << wxT( "\t" ) << MODIFIER_ALT << aKey;
|
||||||
|
else
|
||||||
|
aFullKey << wxT( "\t" ) << MODIFIER_SHIFT << aKey;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/* AddHotkeyName
|
/* AddHotkeyName
|
||||||
* Add the key name from the Command id value ( m_Idcommand member value)
|
* Add the key name from the Command id value ( m_Idcommand member value)
|
||||||
* aText = a wxString. returns aText + key name
|
* aText = a wxString. returns aText + key name
|
||||||
* aList = pointer to a Ki_HotkeyInfo list of commands
|
* aList = pointer to a Ki_HotkeyInfo list of commands
|
||||||
* aCommandId = Command Id value
|
* aCommandId = Command Id value
|
||||||
* aIsShortCut = true to add <tab><keyname> (active shortcuts in menus)
|
* aShortCutType = IS_HOTKEY to add <tab><keyname> (shortcuts in menus, same as hotkeys)
|
||||||
* = false to add <spaces><(keyname)>
|
* IS_ACCELERATOR to add <tab><Shift+keyname> (accelerators in menus, not hotkeys)
|
||||||
|
* IS_COMMENT to add <spaces><(keyname)> mainly in tooltips
|
||||||
* Return a wxString (aTest + key name) if key found or aText without modification
|
* Return a wxString (aTest + key name) if key found or aText without modification
|
||||||
*/
|
*/
|
||||||
wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
||||||
int aCommandId, bool aIsShortCut )
|
int aCommandId, HOTKEY_ACTION_TYPE aShortCutType )
|
||||||
{
|
{
|
||||||
wxString msg = aText;
|
wxString msg = aText;
|
||||||
wxString keyname;
|
wxString keyname;
|
||||||
|
@ -191,10 +214,18 @@ wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
||||||
|
|
||||||
if( !keyname.IsEmpty() )
|
if( !keyname.IsEmpty() )
|
||||||
{
|
{
|
||||||
if( aIsShortCut )
|
switch( aShortCutType )
|
||||||
msg << wxT( "\t" ) << keyname;
|
{
|
||||||
else
|
case IS_HOTKEY:
|
||||||
msg << wxT( " <" ) << keyname << wxT( ">" );
|
msg << wxT( "\t" ) << keyname;
|
||||||
|
break;
|
||||||
|
case IS_ACCELERATOR:
|
||||||
|
AddModifierToKey( msg, keyname );
|
||||||
|
break;
|
||||||
|
case IS_COMMENT:
|
||||||
|
msg << wxT( " (" ) << keyname << wxT( ")" );
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return msg;
|
return msg;
|
||||||
|
@ -206,14 +237,15 @@ wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
||||||
* aText = a wxString. returns aText + key name
|
* aText = a wxString. returns aText + key name
|
||||||
* aList = pointer to a Ki_HotkeyInfoSectionDescriptor DescrList of commands
|
* aList = pointer to a Ki_HotkeyInfoSectionDescriptor DescrList of commands
|
||||||
* aCommandId = Command Id value
|
* aCommandId = Command Id value
|
||||||
* aIsShortCut = true to add <tab><keyname> (active shortcuts in menus)
|
* aShortCutType = IS_HOTKEY to add <tab><keyname> (active shortcuts in menus)
|
||||||
* = false to add <spaces><(keyname)>
|
* IS_ACCELERATOR to add <tab><Shift+keyname> (active accelerators in menus)
|
||||||
|
* IS_COMMENT to add <spaces><(keyname)>
|
||||||
* Return a wxString (aText + key name) if key found or aText without modification
|
* Return a wxString (aText + key name) if key found or aText without modification
|
||||||
*/
|
*/
|
||||||
wxString AddHotkeyName( const wxString& aText,
|
wxString AddHotkeyName( const wxString& aText,
|
||||||
struct Ki_HotkeyInfoSectionDescriptor* aDescList,
|
struct Ki_HotkeyInfoSectionDescriptor* aDescList,
|
||||||
int aCommandId,
|
int aCommandId,
|
||||||
bool aIsShortCut )
|
HOTKEY_ACTION_TYPE aShortCutType )
|
||||||
{
|
{
|
||||||
wxString msg = aText;
|
wxString msg = aText;
|
||||||
wxString keyname;
|
wxString keyname;
|
||||||
|
@ -228,11 +260,18 @@ wxString AddHotkeyName( const wxString& aText,
|
||||||
|
|
||||||
if( !keyname.IsEmpty() )
|
if( !keyname.IsEmpty() )
|
||||||
{
|
{
|
||||||
if( aIsShortCut )
|
switch( aShortCutType )
|
||||||
msg << wxT( "\t" ) << keyname;
|
{
|
||||||
else
|
case IS_HOTKEY:
|
||||||
msg << wxT( " <" ) << keyname << wxT( ">" );
|
msg << wxT( "\t" ) << keyname;
|
||||||
|
break;
|
||||||
|
case IS_ACCELERATOR:
|
||||||
|
AddModifierToKey( msg, keyname );
|
||||||
|
break;
|
||||||
|
case IS_COMMENT:
|
||||||
|
msg << wxT( " (" ) << keyname << wxT( ")" );
|
||||||
|
break;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,17 +42,17 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// New
|
// New
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
ID_NEW_PROJECT,
|
ID_NEW_PROJECT,
|
||||||
_( "&New\tCtrl+N" ),
|
_( "&New\tCtrl+N" ),
|
||||||
_( "New schematic project" ),
|
_( "New schematic project" ),
|
||||||
KiBitmap( new_xpm ) );
|
KiBitmap( new_xpm ) );
|
||||||
|
|
||||||
// Open
|
// Open
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
ID_LOAD_PROJECT,
|
ID_LOAD_PROJECT,
|
||||||
_( "&Open\tCtrl+O" ),
|
_( "&Open\tCtrl+O" ),
|
||||||
_( "Open an existing schematic project" ),
|
_( "Open an existing schematic project" ),
|
||||||
KiBitmap( open_document_xpm ) );
|
KiBitmap( open_document_xpm ) );
|
||||||
|
|
||||||
// Open Recent submenu
|
// Open Recent submenu
|
||||||
static wxMenu* openRecentMenu;
|
static wxMenu* openRecentMenu;
|
||||||
|
@ -66,106 +66,106 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
wxGetApp().m_fileHistory.UseMenu( openRecentMenu );
|
wxGetApp().m_fileHistory.UseMenu( openRecentMenu );
|
||||||
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
||||||
AddMenuItem( fileMenu, openRecentMenu,
|
AddMenuItem( fileMenu, openRecentMenu,
|
||||||
wxID_ANY, _( "Open &Recent" ),
|
wxID_ANY, _( "Open &Recent" ),
|
||||||
_( "Open a recent opened schematic project" ),
|
_( "Open a recent opened schematic project" ),
|
||||||
KiBitmap( open_project_xpm ) );
|
KiBitmap( open_project_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
fileMenu->AppendSeparator();
|
fileMenu->AppendSeparator();
|
||||||
|
|
||||||
// Save schematic project
|
// Save schematic project
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
ID_SAVE_PROJECT,
|
ID_SAVE_PROJECT,
|
||||||
_( "&Save Whole Schematic Project\tCtrl+S" ),
|
_( "&Save Whole Schematic Project\tCtrl+S" ),
|
||||||
_( "Save all sheets in the schematic project" ),
|
_( "Save all sheets in the schematic project" ),
|
||||||
KiBitmap( save_project_xpm ) );
|
KiBitmap( save_project_xpm ) );
|
||||||
|
|
||||||
// Save current sheet
|
// Save current sheet
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
ID_SAVE_ONE_SHEET,
|
ID_SAVE_ONE_SHEET,
|
||||||
_( "Save &Current Sheet Only" ),
|
_( "Save &Current Sheet Only" ),
|
||||||
_( "Save only current schematic sheet" ),
|
_( "Save only current schematic sheet" ),
|
||||||
KiBitmap( save_xpm ) );
|
KiBitmap( save_xpm ) );
|
||||||
|
|
||||||
// Save current sheet as
|
// Save current sheet as
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
ID_SAVE_ONE_SHEET_AS,
|
ID_SAVE_ONE_SHEET_AS,
|
||||||
_( "Save Current Sheet &as" ),
|
_( "Save Current Sheet &as" ),
|
||||||
_( "Save current schematic sheet as..." ),
|
_( "Save current schematic sheet as..." ),
|
||||||
KiBitmap( save_as_xpm ) );
|
KiBitmap( save_as_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
fileMenu->AppendSeparator();
|
fileMenu->AppendSeparator();
|
||||||
|
|
||||||
// Page settings
|
// Page settings
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
ID_SHEET_SET,
|
ID_SHEET_SET,
|
||||||
_( "P&age Settings" ),
|
_( "P&age Settings" ),
|
||||||
_( "Settigns for page size and information" ),
|
_( "Settigns for page size and information" ),
|
||||||
KiBitmap( sheetset_xpm ) );
|
KiBitmap( sheetset_xpm ) );
|
||||||
|
|
||||||
// Print
|
// Print
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
wxID_PRINT,
|
wxID_PRINT,
|
||||||
_( "P&rint" ),
|
_( "P&rint" ),
|
||||||
_( "Print schematic" ),
|
_( "Print schematic" ),
|
||||||
KiBitmap( print_button_xpm ) );
|
KiBitmap( print_button_xpm ) );
|
||||||
|
|
||||||
// Plot submenu
|
// Plot submenu
|
||||||
wxMenu* choice_plot_fmt = new wxMenu;
|
wxMenu* choice_plot_fmt = new wxMenu;
|
||||||
|
|
||||||
// Plot PostScript
|
// Plot PostScript
|
||||||
AddMenuItem( choice_plot_fmt, ID_GEN_PLOT_PS,
|
AddMenuItem( choice_plot_fmt, ID_GEN_PLOT_PS,
|
||||||
_( "Plot PostScript" ),
|
_( "Plot PostScript" ),
|
||||||
_( "Plot schematic sheet in PostScript format" ),
|
_( "Plot schematic sheet in PostScript format" ),
|
||||||
KiBitmap( plot_ps_xpm ) );
|
KiBitmap( plot_ps_xpm ) );
|
||||||
|
|
||||||
// Plot HPGL
|
// Plot HPGL
|
||||||
AddMenuItem( choice_plot_fmt,
|
AddMenuItem( choice_plot_fmt,
|
||||||
ID_GEN_PLOT_HPGL,
|
ID_GEN_PLOT_HPGL,
|
||||||
_( "Plot HPGL" ),
|
_( "Plot HPGL" ),
|
||||||
_( "Plot schematic sheet in HPGL format" ),
|
_( "Plot schematic sheet in HPGL format" ),
|
||||||
KiBitmap( plot_hpg_xpm ) );
|
KiBitmap( plot_hpg_xpm ) );
|
||||||
|
|
||||||
// Plot SVG
|
// Plot SVG
|
||||||
AddMenuItem( choice_plot_fmt,
|
AddMenuItem( choice_plot_fmt,
|
||||||
ID_GEN_PLOT_SVG,
|
ID_GEN_PLOT_SVG,
|
||||||
_( "Plot SVG" ),
|
_( "Plot SVG" ),
|
||||||
_( "Plot schematic sheet in SVG format" ),
|
_( "Plot schematic sheet in SVG format" ),
|
||||||
KiBitmap( plot_xpm ) );
|
KiBitmap( plot_xpm ) );
|
||||||
|
|
||||||
// Plot DXF
|
// Plot DXF
|
||||||
AddMenuItem( choice_plot_fmt,
|
AddMenuItem( choice_plot_fmt,
|
||||||
ID_GEN_PLOT_DXF,
|
ID_GEN_PLOT_DXF,
|
||||||
_( "Plot DXF" ),
|
_( "Plot DXF" ),
|
||||||
_( "Plot schematic sheet in DXF format" ),
|
_( "Plot schematic sheet in DXF format" ),
|
||||||
KiBitmap( plot_xpm ) );
|
KiBitmap( plot_xpm ) );
|
||||||
|
|
||||||
// Plot to Clipboard (Windows only)
|
// Plot to Clipboard (Windows only)
|
||||||
#ifdef __WINDOWS__
|
#ifdef __WINDOWS__
|
||||||
|
|
||||||
AddMenuItem( choice_plot_fmt, ID_GEN_COPY_SHEET_TO_CLIPBOARD,
|
AddMenuItem( choice_plot_fmt, ID_GEN_COPY_SHEET_TO_CLIPBOARD,
|
||||||
_( "Plot to Clipboard" ),
|
_( "Plot to Clipboard" ),
|
||||||
_( "Export drawings to clipboard" ),
|
_( "Export drawings to clipboard" ),
|
||||||
KiBitmap( copy_button_xpm ) );
|
KiBitmap( copy_button_xpm ) );
|
||||||
|
|
||||||
#endif // __WINDOWS__
|
#endif // __WINDOWS__
|
||||||
|
|
||||||
// Plot submenu
|
// Plot submenu
|
||||||
AddMenuItem( fileMenu, choice_plot_fmt,
|
AddMenuItem( fileMenu, choice_plot_fmt,
|
||||||
ID_GEN_PLOT, _( "&Plot" ),
|
ID_GEN_PLOT, _( "&Plot" ),
|
||||||
_( "Plot schematic sheet in HPGL, PostScript or SVG format" ),
|
_( "Plot schematic sheet in HPGL, PostScript or SVG format" ),
|
||||||
KiBitmap( plot_xpm ) );
|
KiBitmap( plot_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
fileMenu->AppendSeparator();
|
fileMenu->AppendSeparator();
|
||||||
|
|
||||||
// Quit
|
// Quit
|
||||||
AddMenuItem( fileMenu,
|
AddMenuItem( fileMenu,
|
||||||
wxID_EXIT,
|
wxID_EXIT,
|
||||||
_( "&Quit" ),
|
_( "&Quit" ),
|
||||||
_( "Quit EESchema" ),
|
_( "Quit EESchema" ),
|
||||||
KiBitmap( exit_xpm ) );
|
KiBitmap( exit_xpm ) );
|
||||||
|
|
||||||
// Menu Edit:
|
// Menu Edit:
|
||||||
wxMenu* editMenu = new wxMenu;
|
wxMenu* editMenu = new wxMenu;
|
||||||
|
@ -183,8 +183,8 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
// Delete
|
// Delete
|
||||||
editMenu->AppendSeparator();
|
editMenu->AppendSeparator();
|
||||||
AddMenuItem( editMenu, ID_SCHEMATIC_DELETE_ITEM_BUTT,
|
AddMenuItem( editMenu, ID_SCHEMATIC_DELETE_ITEM_BUTT,
|
||||||
_( "Delete" ), HELP_DELETE_ITEMS,
|
_( "Delete" ), HELP_DELETE_ITEMS,
|
||||||
KiBitmap( delete_body_xpm ) );
|
KiBitmap( delete_body_xpm ) );
|
||||||
|
|
||||||
// Find
|
// Find
|
||||||
editMenu->AppendSeparator();
|
editMenu->AppendSeparator();
|
||||||
|
@ -194,10 +194,10 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
// Backannotate
|
// Backannotate
|
||||||
editMenu->AppendSeparator();
|
editMenu->AppendSeparator();
|
||||||
AddMenuItem( editMenu,
|
AddMenuItem( editMenu,
|
||||||
ID_BACKANNO_ITEMS,
|
ID_BACKANNO_ITEMS,
|
||||||
_( "&Backannotate" ),
|
_( "&Backannotate" ),
|
||||||
_( "Back annotate the footprint fields" ),
|
_( "Back annotate the footprint fields" ),
|
||||||
KiBitmap( import_footprint_names_xpm ) );
|
KiBitmap( import_footprint_names_xpm ) );
|
||||||
|
|
||||||
// Menu View:
|
// Menu View:
|
||||||
wxMenu* viewMenu = new wxMenu;
|
wxMenu* viewMenu = new wxMenu;
|
||||||
|
@ -219,12 +219,12 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// Zoom in
|
// Zoom in
|
||||||
text = AddHotkeyName( _( "Zoom In" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Zoom In" ), s_Schematic_Hokeys_Descr,
|
||||||
ID_ZOOM_IN, false ); // add comment, not a shortcut
|
HK_ZOOM_IN, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( viewMenu, ID_ZOOM_IN, text, HELP_ZOOM_IN, KiBitmap( zoom_in_xpm ) );
|
AddMenuItem( viewMenu, ID_ZOOM_IN, text, HELP_ZOOM_IN, KiBitmap( zoom_in_xpm ) );
|
||||||
|
|
||||||
// Zoom out
|
// Zoom out
|
||||||
text = AddHotkeyName( _( "Zoom Out" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Zoom Out" ), s_Schematic_Hokeys_Descr,
|
||||||
ID_ZOOM_OUT, false ); // add comment, not a shortcut
|
HK_ZOOM_OUT, IS_ACCELERATOR ); // add accelerator, not a shortcut
|
||||||
AddMenuItem( viewMenu, ID_ZOOM_OUT, text, HELP_ZOOM_OUT, KiBitmap( zoom_out_xpm ) );
|
AddMenuItem( viewMenu, ID_ZOOM_OUT, text, HELP_ZOOM_OUT, KiBitmap( zoom_out_xpm ) );
|
||||||
|
|
||||||
// Fit on screen
|
// Fit on screen
|
||||||
|
@ -237,10 +237,10 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// Hierarchy
|
// Hierarchy
|
||||||
AddMenuItem( viewMenu,
|
AddMenuItem( viewMenu,
|
||||||
ID_HIERARCHY,
|
ID_HIERARCHY,
|
||||||
_( "H&ierarchy" ),
|
_( "H&ierarchy" ),
|
||||||
_( "Navigate schematic hierarchy" ),
|
_( "Navigate schematic hierarchy" ),
|
||||||
KiBitmap( hierarchy_nav_xpm ) );
|
KiBitmap( hierarchy_nav_xpm ) );
|
||||||
|
|
||||||
// Redraw
|
// Redraw
|
||||||
text = AddHotkeyName( _( "Redraw" ), s_Schematic_Hokeys_Descr, HK_ZOOM_REDRAW );
|
text = AddHotkeyName( _( "Redraw" ), s_Schematic_Hokeys_Descr, HK_ZOOM_REDRAW );
|
||||||
|
@ -252,155 +252,155 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// Component
|
// Component
|
||||||
text = AddHotkeyName( _( "Component" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Component" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_NEW_COMPONENT, false ); // add comment, not a shortcut
|
HK_ADD_NEW_COMPONENT, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_SCH_PLACE_COMPONENT, text,
|
AddMenuItem( placeMenu, ID_SCH_PLACE_COMPONENT, text,
|
||||||
HELP_PLACE_COMPONENTS,
|
HELP_PLACE_COMPONENTS,
|
||||||
KiBitmap( add_component_xpm ) );
|
KiBitmap( add_component_xpm ) );
|
||||||
|
|
||||||
// Power port
|
// Power port
|
||||||
text = AddHotkeyName( _( "Power Port" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Power Port" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_NEW_POWER, false ); // add comment, not a shortcut
|
HK_ADD_NEW_POWER, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_PLACE_POWER_BUTT, text,
|
AddMenuItem( placeMenu, ID_PLACE_POWER_BUTT, text,
|
||||||
HELP_PLACE_POWERPORT,
|
HELP_PLACE_POWERPORT,
|
||||||
KiBitmap( add_power_xpm ) );
|
KiBitmap( add_power_xpm ) );
|
||||||
|
|
||||||
// Wire
|
// Wire
|
||||||
text = AddHotkeyName( _( "Wire" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Wire" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_BEGIN_WIRE, false ); // add comment, not a shortcut
|
HK_BEGIN_WIRE, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_WIRE_BUTT, text,
|
AddMenuItem( placeMenu, ID_WIRE_BUTT, text,
|
||||||
HELP_PLACE_WIRE,
|
HELP_PLACE_WIRE,
|
||||||
KiBitmap( add_line_xpm ) );
|
KiBitmap( add_line_xpm ) );
|
||||||
|
|
||||||
// Bus
|
// Bus
|
||||||
text = AddHotkeyName( _( "Bus" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Bus" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_BEGIN_BUS, false ); // add comment, not a shortcut
|
HK_BEGIN_BUS, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_BUS_BUTT, text,
|
AddMenuItem( placeMenu, ID_BUS_BUTT, text,
|
||||||
HELP_PLACE_BUS,
|
HELP_PLACE_BUS,
|
||||||
KiBitmap( add_bus_xpm ) );
|
KiBitmap( add_bus_xpm ) );
|
||||||
|
|
||||||
// Wire to Bus entry
|
// Wire to Bus entry
|
||||||
text = AddHotkeyName( _( "Wire to Bus Entry" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Wire to Bus Entry" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_WIRE_ENTRY, false ); // add comment, not a shortcut
|
HK_ADD_WIRE_ENTRY, IS_ACCELERATOR ); // addan accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_WIRETOBUS_ENTRY_BUTT, text,
|
AddMenuItem( placeMenu, ID_WIRETOBUS_ENTRY_BUTT, text,
|
||||||
HELP_PLACE_WIRE2BUS_ENTRY,
|
HELP_PLACE_WIRE2BUS_ENTRY,
|
||||||
KiBitmap( add_line2bus_xpm ) );
|
KiBitmap( add_line2bus_xpm ) );
|
||||||
|
|
||||||
// Bus to Bus entry
|
// Bus to Bus entry
|
||||||
text = AddHotkeyName( _( "Bus to Bus Entry" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Bus to Bus Entry" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_BUS_ENTRY, false ); // add comment, not a shortcut
|
HK_ADD_BUS_ENTRY, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_BUSTOBUS_ENTRY_BUTT, text,
|
AddMenuItem( placeMenu, ID_BUSTOBUS_ENTRY_BUTT, text,
|
||||||
HELP_PLACE_BUS2BUS_ENTRY,
|
HELP_PLACE_BUS2BUS_ENTRY,
|
||||||
KiBitmap( add_bus2bus_xpm ) );
|
KiBitmap( add_bus2bus_xpm ) );
|
||||||
|
|
||||||
// No Connect Flag
|
// No Connect Flag
|
||||||
text = AddHotkeyName( _( "No Connect Flag" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "No Connect Flag" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_NOCONN_FLAG, false ); // add comment, not a shortcut
|
HK_ADD_NOCONN_FLAG, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_NOCONN_BUTT, text, HELP_PLACE_NC_FLAG, KiBitmap( noconn_xpm ) );
|
AddMenuItem( placeMenu, ID_NOCONN_BUTT, text, HELP_PLACE_NC_FLAG, KiBitmap( noconn_xpm ) );
|
||||||
|
|
||||||
// Net name
|
// Net name
|
||||||
text = AddHotkeyName( _( "Label" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Label" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_LABEL, false ); // add comment, not a shortcut
|
HK_ADD_LABEL, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_LABEL_BUTT, text,
|
AddMenuItem( placeMenu, ID_LABEL_BUTT, text,
|
||||||
HELP_PLACE_NETLABEL,
|
HELP_PLACE_NETLABEL,
|
||||||
KiBitmap( add_line_label_xpm ) );
|
KiBitmap( add_line_label_xpm ) );
|
||||||
|
|
||||||
// Global label
|
// Global label
|
||||||
text = AddHotkeyName( _( "Global Label" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Global Label" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_GLABEL, false ); // add comment, not a shortcut
|
HK_ADD_GLABEL, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_GLABEL_BUTT, text,
|
AddMenuItem( placeMenu, ID_GLABEL_BUTT, text,
|
||||||
HELP_PLACE_GLOBALLABEL,
|
HELP_PLACE_GLOBALLABEL,
|
||||||
KiBitmap( add_glabel_xpm ) );
|
KiBitmap( add_glabel_xpm ) );
|
||||||
|
|
||||||
// Junction
|
// Junction
|
||||||
text = AddHotkeyName( _( "Junction" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Junction" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_JUNCTION, false ); // add comment, not a shortcut
|
HK_ADD_JUNCTION, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_JUNCTION_BUTT, text,
|
AddMenuItem( placeMenu, ID_JUNCTION_BUTT, text,
|
||||||
HELP_PLACE_JUNCTION,
|
HELP_PLACE_JUNCTION,
|
||||||
KiBitmap( add_junction_xpm ) );
|
KiBitmap( add_junction_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
placeMenu->AppendSeparator();
|
placeMenu->AppendSeparator();
|
||||||
|
|
||||||
// Hierarchical label
|
// Hierarchical label
|
||||||
text = AddHotkeyName( _( "Hierarchical Label" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Hierarchical Label" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_HLABEL, false ); // add comment, not a shortcut
|
HK_ADD_HLABEL, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
text = AddHotkeyName( _( "Hierarchical Label" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Hierarchical Label" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_HLABEL, false ); // add comment, not a shortcut
|
HK_ADD_HLABEL, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_HIERLABEL_BUTT,
|
AddMenuItem( placeMenu, ID_HIERLABEL_BUTT,
|
||||||
text, HELP_PLACE_HIER_LABEL,
|
text, HELP_PLACE_HIER_LABEL,
|
||||||
KiBitmap( add_hierarchical_label_xpm ) );
|
KiBitmap( add_hierarchical_label_xpm ) );
|
||||||
|
|
||||||
|
|
||||||
// Hierarchical sheet
|
// Hierarchical sheet
|
||||||
text = AddHotkeyName( _( "Hierarchical Sheet" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Hierarchical Sheet" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_HIER_SHEET, false ); // add comment, not a shortcut
|
HK_ADD_HIER_SHEET, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_SHEET_SYMBOL_BUTT, text,
|
AddMenuItem( placeMenu, ID_SHEET_SYMBOL_BUTT, text,
|
||||||
HELP_PLACE_SHEET,
|
HELP_PLACE_SHEET,
|
||||||
KiBitmap( add_hierarchical_subsheet_xpm ) );
|
KiBitmap( add_hierarchical_subsheet_xpm ) );
|
||||||
|
|
||||||
// Import hierarchical sheet
|
// Import hierarchical sheet
|
||||||
AddMenuItem( placeMenu,
|
AddMenuItem( placeMenu,
|
||||||
ID_IMPORT_HLABEL_BUTT,
|
ID_IMPORT_HLABEL_BUTT,
|
||||||
_( "Import Hierarchical Label" ),
|
_( "Import Hierarchical Label" ),
|
||||||
HELP_IMPORT_SHEETPIN,
|
HELP_IMPORT_SHEETPIN,
|
||||||
KiBitmap( import_hierarchical_label_xpm ) );
|
KiBitmap( import_hierarchical_label_xpm ) );
|
||||||
|
|
||||||
// Add hierarchical Pin to Sheet
|
// Add hierarchical Pin to Sheet
|
||||||
AddMenuItem( placeMenu,
|
AddMenuItem( placeMenu,
|
||||||
ID_SHEET_PIN_BUTT,
|
ID_SHEET_PIN_BUTT,
|
||||||
_( "Hierarchical Pin to Sheet" ),
|
_( "Hierarchical Pin to Sheet" ),
|
||||||
HELP_PLACE_SHEETPIN,
|
HELP_PLACE_SHEETPIN,
|
||||||
KiBitmap( add_hierar_pin_xpm ) );
|
KiBitmap( add_hierar_pin_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
placeMenu->AppendSeparator();
|
placeMenu->AppendSeparator();
|
||||||
|
|
||||||
// Graphic line or polygon
|
// Graphic line or polygon
|
||||||
text = AddHotkeyName( _( "Graphic Polyline" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Graphic Polyline" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_GRAPHIC_POLYLINE, false ); // add comment, not a shortcut
|
HK_ADD_GRAPHIC_POLYLINE, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_LINE_COMMENT_BUTT, text,
|
AddMenuItem( placeMenu, ID_LINE_COMMENT_BUTT, text,
|
||||||
HELP_PLACE_GRAPHICLINES,
|
HELP_PLACE_GRAPHICLINES,
|
||||||
KiBitmap( add_dashed_line_xpm ) );
|
KiBitmap( add_dashed_line_xpm ) );
|
||||||
|
|
||||||
// Graphic text
|
// Graphic text
|
||||||
text = AddHotkeyName( _( "Graphic Text" ), s_Schematic_Hokeys_Descr,
|
text = AddHotkeyName( _( "Graphic Text" ), s_Schematic_Hokeys_Descr,
|
||||||
HK_ADD_GRAPHIC_TEXT, false ); // add comment, not a shortcut
|
HK_ADD_GRAPHIC_TEXT, IS_ACCELERATOR ); // add an accelerator, not a shortcut
|
||||||
AddMenuItem( placeMenu, ID_TEXT_COMMENT_BUTT, text,
|
AddMenuItem( placeMenu, ID_TEXT_COMMENT_BUTT, text,
|
||||||
HELP_PLACE_GRAPHICTEXTS,
|
HELP_PLACE_GRAPHICTEXTS,
|
||||||
KiBitmap( add_text_xpm ) );
|
KiBitmap( add_text_xpm ) );
|
||||||
|
|
||||||
// Graphic image
|
// Graphic image
|
||||||
AddMenuItem( placeMenu, ID_ADD_IMAGE_BUTT, _("Image"),
|
AddMenuItem( placeMenu, ID_ADD_IMAGE_BUTT, _( "Image" ),
|
||||||
HELP_PLACE_GRAPHICIMAGES,
|
HELP_PLACE_GRAPHICIMAGES,
|
||||||
KiBitmap( image_xpm ) );
|
KiBitmap( image_xpm ) );
|
||||||
|
|
||||||
// Menu Preferences:
|
// Menu Preferences:
|
||||||
wxMenu* preferencesMenu = new wxMenu;
|
wxMenu* preferencesMenu = new wxMenu;
|
||||||
|
|
||||||
// Library
|
// Library
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
ID_CONFIG_REQ,
|
ID_CONFIG_REQ,
|
||||||
_( "&Library" ),
|
_( "&Library" ),
|
||||||
_( "Library preferences" ),
|
_( "Library preferences" ),
|
||||||
KiBitmap( library_xpm ) );
|
KiBitmap( library_xpm ) );
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
ID_COLORS_SETUP,
|
ID_COLORS_SETUP,
|
||||||
_( "&Colors" ),
|
_( "&Colors" ),
|
||||||
_( "Color preferences" ),
|
_( "Color preferences" ),
|
||||||
KiBitmap( palette_xpm ) );
|
KiBitmap( palette_xpm ) );
|
||||||
|
|
||||||
// Options (Preferences on WXMAC)
|
// Options (Preferences on WXMAC)
|
||||||
|
|
||||||
#ifdef __WXMAC__
|
#ifdef __WXMAC__
|
||||||
preferencesMenu->Append(wxID_PREFERENCES);
|
preferencesMenu->Append( wxID_PREFERENCES );
|
||||||
#else
|
#else
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
wxID_PREFERENCES,
|
wxID_PREFERENCES,
|
||||||
_( "&Options" ),
|
_( "&Options" ),
|
||||||
_( "EESchema preferences" ),
|
_( "EESchema preferences" ),
|
||||||
KiBitmap( preference_xpm ) );
|
KiBitmap( preference_xpm ) );
|
||||||
#endif // __WXMAC__
|
#endif // __WXMAC__
|
||||||
|
|
||||||
|
|
||||||
|
@ -415,83 +415,83 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// Save preferences
|
// Save preferences
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
ID_CONFIG_SAVE,
|
ID_CONFIG_SAVE,
|
||||||
_( "&Save Preferences" ),
|
_( "&Save Preferences" ),
|
||||||
_( "Save application preferences" ),
|
_( "Save application preferences" ),
|
||||||
KiBitmap( save_setup_xpm ) );
|
KiBitmap( save_setup_xpm ) );
|
||||||
|
|
||||||
// Read preferences
|
// Read preferences
|
||||||
AddMenuItem( preferencesMenu,
|
AddMenuItem( preferencesMenu,
|
||||||
ID_CONFIG_READ,
|
ID_CONFIG_READ,
|
||||||
_( "&Read Preferences" ),
|
_( "&Read Preferences" ),
|
||||||
_( "Read application preferences" ),
|
_( "Read application preferences" ),
|
||||||
KiBitmap( read_setup_xpm ) );
|
KiBitmap( read_setup_xpm ) );
|
||||||
|
|
||||||
// Menu Tools:
|
// Menu Tools:
|
||||||
wxMenu* toolsMenu = new wxMenu;
|
wxMenu* toolsMenu = new wxMenu;
|
||||||
|
|
||||||
// Library viewer
|
// Library viewer
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_TO_LIBRARY,
|
ID_TO_LIBRARY,
|
||||||
_( "Library &Browser" ),
|
_( "Library &Browser" ),
|
||||||
_( "Library browser" ),
|
_( "Library browser" ),
|
||||||
KiBitmap( library_browse_xpm ) );
|
KiBitmap( library_browse_xpm ) );
|
||||||
|
|
||||||
|
|
||||||
// Library editor
|
// Library editor
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_TO_LIBRARY,
|
ID_TO_LIBRARY,
|
||||||
_( "Library &Editor" ),
|
_( "Library &Editor" ),
|
||||||
_( "Library editor" ),
|
_( "Library editor" ),
|
||||||
KiBitmap( libedit_xpm ) );
|
KiBitmap( libedit_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
toolsMenu->AppendSeparator();
|
toolsMenu->AppendSeparator();
|
||||||
|
|
||||||
// Annotate
|
// Annotate
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_GET_ANNOTATE,
|
ID_GET_ANNOTATE,
|
||||||
_( "&Annotate" ),
|
_( "&Annotate" ),
|
||||||
_( "Annotate the components in the schematic" ),
|
_( "Annotate the components in the schematic" ),
|
||||||
KiBitmap( annotate_xpm ) );
|
KiBitmap( annotate_xpm ) );
|
||||||
|
|
||||||
// ERC
|
// ERC
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_GET_ERC,
|
ID_GET_ERC,
|
||||||
_( "ER&C" ),
|
_( "ER&C" ),
|
||||||
_( "Perform electrical rule check" ),
|
_( "Perform electrical rule check" ),
|
||||||
KiBitmap( erc_xpm ) );
|
KiBitmap( erc_xpm ) );
|
||||||
|
|
||||||
// Generate netlist
|
// Generate netlist
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_GET_NETLIST,
|
ID_GET_NETLIST,
|
||||||
_( "Generate &Netlist" ),
|
_( "Generate &Netlist" ),
|
||||||
_( "Generate the component netlist" ),
|
_( "Generate the component netlist" ),
|
||||||
KiBitmap( netlist_xpm ) );
|
KiBitmap( netlist_xpm ) );
|
||||||
|
|
||||||
// Generate bill of materials
|
// Generate bill of materials
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_GET_TOOLS,
|
ID_GET_TOOLS,
|
||||||
_( "Generate Bill of Materials" ),
|
_( "Generate Bill of Materials" ),
|
||||||
_( "Generate bill of materials" ),
|
_( "Generate bill of materials" ),
|
||||||
KiBitmap( tools_xpm ) );
|
KiBitmap( tools_xpm ) );
|
||||||
|
|
||||||
// Separator
|
// Separator
|
||||||
toolsMenu->AppendSeparator();
|
toolsMenu->AppendSeparator();
|
||||||
|
|
||||||
//Run CVPcb
|
//Run CVPcb
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_TO_CVPCB,
|
ID_TO_CVPCB,
|
||||||
_( "A&ssign Component Footprints" ),
|
_( "A&ssign Component Footprints" ),
|
||||||
_( "Run CVPcb" ),
|
_( "Run CVPcb" ),
|
||||||
KiBitmap( cvpcb_xpm ) );
|
KiBitmap( cvpcb_xpm ) );
|
||||||
|
|
||||||
// Run PCBNew
|
// Run PCBNew
|
||||||
AddMenuItem( toolsMenu,
|
AddMenuItem( toolsMenu,
|
||||||
ID_TO_PCB,
|
ID_TO_PCB,
|
||||||
_( "&Layout Printed Circuit Board" ),
|
_( "&Layout Printed Circuit Board" ),
|
||||||
_( "Run PCBNew" ),
|
_( "Run PCBNew" ),
|
||||||
KiBitmap( pcbnew_xpm ) );
|
KiBitmap( pcbnew_xpm ) );
|
||||||
|
|
||||||
|
|
||||||
// Help Menu:
|
// Help Menu:
|
||||||
|
@ -502,23 +502,23 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// Contents
|
// Contents
|
||||||
AddMenuItem( helpMenu,
|
AddMenuItem( helpMenu,
|
||||||
wxID_HELP,
|
wxID_HELP,
|
||||||
_( "&Contents" ),
|
_( "&Contents" ),
|
||||||
_( "Open the Eeschema handbook" ),
|
_( "Open the Eeschema handbook" ),
|
||||||
KiBitmap( online_help_xpm ) );
|
KiBitmap( online_help_xpm ) );
|
||||||
AddMenuItem( helpMenu,
|
AddMenuItem( helpMenu,
|
||||||
wxID_INDEX,
|
wxID_INDEX,
|
||||||
_( "&Getting Started in KiCad" ),
|
_( "&Getting Started in KiCad" ),
|
||||||
_( "Open the \"Getting Started in KiCad\" guide for beginners" ),
|
_( "Open the \"Getting Started in KiCad\" guide for beginners" ),
|
||||||
KiBitmap( help_xpm ) );
|
KiBitmap( help_xpm ) );
|
||||||
|
|
||||||
// About EESchema
|
// About EESchema
|
||||||
helpMenu->AppendSeparator();
|
helpMenu->AppendSeparator();
|
||||||
AddMenuItem( helpMenu,
|
AddMenuItem( helpMenu,
|
||||||
wxID_ABOUT,
|
wxID_ABOUT,
|
||||||
_( "&About EESchema" ),
|
_( "&About EESchema" ),
|
||||||
_( "About EESchema schematic designer" ),
|
_( "About EESchema schematic designer" ),
|
||||||
KiBitmap( info_xpm ) );
|
KiBitmap( info_xpm ) );
|
||||||
|
|
||||||
// Create the menubar and append all submenus
|
// Create the menubar and append all submenus
|
||||||
menuBar->Append( fileMenu, _( "&File" ) );
|
menuBar->Append( fileMenu, _( "&File" ) );
|
||||||
|
|
|
@ -116,9 +116,9 @@ void LIB_EDIT_FRAME::ReCreateHToolbar()
|
||||||
_( "Save current component to new library" ) );
|
_( "Save current component to new library" ) );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( _( "Undo last command" ), s_Schematic_Hokeys_Descr, HK_UNDO, false );
|
msg = AddHotkeyName( _( "Undo last command" ), s_Schematic_Hokeys_Descr, HK_UNDO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), msg );
|
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), msg );
|
||||||
msg = AddHotkeyName( _( "Redo the last command" ), s_Schematic_Hokeys_Descr, HK_REDO, false );
|
msg = AddHotkeyName( _( "Redo the last command" ), s_Schematic_Hokeys_Descr, HK_REDO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), msg );
|
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), msg );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
@ -133,16 +133,16 @@ void LIB_EDIT_FRAME::ReCreateHToolbar()
|
||||||
_( "Test for duplicate pins and off grid pins" ) );
|
_( "Test for duplicate pins and off grid pins" ) );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( HELP_ZOOM_IN, s_Libedit_Hokeys_Descr, HK_ZOOM_IN, false );
|
msg = AddHotkeyName( HELP_ZOOM_IN, s_Libedit_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_OUT, s_Libedit_Hokeys_Descr, HK_ZOOM_OUT, false );
|
msg = AddHotkeyName( HELP_ZOOM_OUT, s_Libedit_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_REDRAW, s_Libedit_Hokeys_Descr, HK_ZOOM_REDRAW, false );
|
msg = AddHotkeyName( HELP_ZOOM_REDRAW, s_Libedit_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_FIT, s_Libedit_Hokeys_Descr, HK_ZOOM_AUTO, false );
|
msg = AddHotkeyName( HELP_ZOOM_FIT, s_Libedit_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
|
@ -64,33 +64,33 @@ void SCH_EDIT_FRAME::ReCreateHToolbar()
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_UNDO, s_Schematic_Hokeys_Descr, HK_UNDO, false );
|
msg = AddHotkeyName( HELP_UNDO, s_Schematic_Hokeys_Descr, HK_UNDO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), msg );
|
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_REDO, s_Schematic_Hokeys_Descr, HK_REDO, false );
|
msg = AddHotkeyName( HELP_REDO, s_Schematic_Hokeys_Descr, HK_REDO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), msg );
|
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), msg );
|
||||||
|
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_FIND, s_Schematic_Hokeys_Descr, HK_FIND_ITEM, false );
|
msg = AddHotkeyName( HELP_FIND, s_Schematic_Hokeys_Descr, HK_FIND_ITEM, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_FIND_ITEMS, wxEmptyString, KiBitmap( find_xpm ), msg );
|
m_HToolBar->AddTool( ID_FIND_ITEMS, wxEmptyString, KiBitmap( find_xpm ), msg );
|
||||||
|
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_IN, s_Schematic_Hokeys_Descr, HK_ZOOM_IN, false );
|
msg = AddHotkeyName( HELP_ZOOM_IN, s_Schematic_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_OUT, s_Schematic_Hokeys_Descr, HK_ZOOM_OUT, false );
|
msg = AddHotkeyName( HELP_ZOOM_OUT, s_Schematic_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_REDRAW, s_Schematic_Hokeys_Descr, HK_ZOOM_REDRAW, false );
|
msg = AddHotkeyName( HELP_ZOOM_REDRAW, s_Schematic_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_FIT, s_Schematic_Hokeys_Descr, HK_ZOOM_AUTO, false );
|
msg = AddHotkeyName( HELP_ZOOM_FIT, s_Schematic_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -47,22 +47,22 @@ void LIB_VIEW_FRAME::ReCreateHToolbar()
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( _( "Zoom in" ), s_Viewlib_Hokeys_Descr,
|
msg = AddHotkeyName( _( "Zoom in" ), s_Viewlib_Hokeys_Descr,
|
||||||
HK_ZOOM_IN, false );
|
HK_ZOOM_IN, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString,
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString,
|
||||||
KiBitmap( zoom_in_xpm ), msg );
|
KiBitmap( zoom_in_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Zoom out" ), s_Viewlib_Hokeys_Descr,
|
msg = AddHotkeyName( _( "Zoom out" ), s_Viewlib_Hokeys_Descr,
|
||||||
HK_ZOOM_OUT, false );
|
HK_ZOOM_OUT, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString,
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString,
|
||||||
KiBitmap( zoom_out_xpm ), msg );
|
KiBitmap( zoom_out_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Redraw view" ), s_Viewlib_Hokeys_Descr,
|
msg = AddHotkeyName( _( "Redraw view" ), s_Viewlib_Hokeys_Descr,
|
||||||
HK_ZOOM_REDRAW, false );
|
HK_ZOOM_REDRAW, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString,
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString,
|
||||||
KiBitmap( zoom_redraw_xpm ), msg );
|
KiBitmap( zoom_redraw_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Zoom auto" ), s_Viewlib_Hokeys_Descr,
|
msg = AddHotkeyName( _( "Zoom auto" ), s_Viewlib_Hokeys_Descr,
|
||||||
HK_ZOOM_AUTO, false );
|
HK_ZOOM_AUTO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString,
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString,
|
||||||
KiBitmap( zoom_fit_in_page_xpm ), msg );
|
KiBitmap( zoom_fit_in_page_xpm ), msg );
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,290 +1,290 @@
|
||||||
/*
|
/*
|
||||||
* This program source code file is part of KICAD, a free EDA CAD application.
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gpisa-lab.inpg.fr
|
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gpisa-lab.inpg.fr
|
||||||
* Copyright (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
* Copyright (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||||
* Copyright (C) 2010 Kicad Developers, see change_log.txt for contributors.
|
* Copyright (C) 2010 Kicad Developers, see change_log.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
* as published by the Free Software Foundation; either version 2
|
* as published by the Free Software Foundation; either version 2
|
||||||
* of the License, or (at your option) any later version.
|
* of the License, or (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, you may find one here:
|
* along with this program; if not, you may find one here:
|
||||||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
* 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 search the http://www.gnu.org website for the version 2 license,
|
||||||
* or you may write to the Free Software Foundation, Inc.,
|
* or you may write to the Free Software Foundation, Inc.,
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/*********************************************************/
|
/*********************************************************/
|
||||||
/* class_gerbview_layer_widget.cpp - gerbview layers manager. */
|
/* class_gerbview_layer_widget.cpp - gerbview layers manager. */
|
||||||
/*********************************************************/
|
/*********************************************************/
|
||||||
|
|
||||||
#include "fctsys.h"
|
#include "fctsys.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "class_drawpanel.h"
|
#include "class_drawpanel.h"
|
||||||
#include "pcbstruct.h"
|
#include "pcbstruct.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
#include "class_layer_box_selector.h"
|
#include "class_layer_box_selector.h"
|
||||||
|
|
||||||
#include "gerbview.h"
|
#include "gerbview.h"
|
||||||
#include "class_GERBER.h"
|
#include "class_GERBER.h"
|
||||||
#include "layer_widget.h"
|
#include "layer_widget.h"
|
||||||
#include "class_gerbview_layer_widget.h"
|
#include "class_gerbview_layer_widget.h"
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Class GERBER_LAYER_WIDGET
|
* Class GERBER_LAYER_WIDGET
|
||||||
* is here to implement the abtract functions of LAYER_WIDGET so they
|
* is here to implement the abtract functions of LAYER_WIDGET so they
|
||||||
* may be tied into the GERBVIEW_FRAME's data and so we can add a popup
|
* may be tied into the GERBVIEW_FRAME's data and so we can add a popup
|
||||||
* menu which is specific to PCBNEW's needs.
|
* menu which is specific to PCBNEW's needs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
GERBER_LAYER_WIDGET::GERBER_LAYER_WIDGET( GERBVIEW_FRAME* aParent, wxWindow* aFocusOwner,
|
GERBER_LAYER_WIDGET::GERBER_LAYER_WIDGET( GERBVIEW_FRAME* aParent, wxWindow* aFocusOwner,
|
||||||
int aPointSize ) :
|
int aPointSize ) :
|
||||||
LAYER_WIDGET( aParent, aFocusOwner, aPointSize ),
|
LAYER_WIDGET( aParent, aFocusOwner, aPointSize ),
|
||||||
myframe( aParent )
|
myframe( aParent )
|
||||||
{
|
{
|
||||||
ReFillRender();
|
ReFillRender();
|
||||||
|
|
||||||
// Update default tabs labels for gerbview
|
// Update default tabs labels for gerbview
|
||||||
SetLayersManagerTabsText( );
|
SetLayersManagerTabsText( );
|
||||||
|
|
||||||
//-----<Popup menu>-------------------------------------------------
|
//-----<Popup menu>-------------------------------------------------
|
||||||
// handle the popup menu over the layer window.
|
// handle the popup menu over the layer window.
|
||||||
m_LayerScrolledWindow->Connect( wxEVT_RIGHT_DOWN,
|
m_LayerScrolledWindow->Connect( wxEVT_RIGHT_DOWN,
|
||||||
wxMouseEventHandler( GERBER_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
wxMouseEventHandler( GERBER_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
||||||
|
|
||||||
// since Popupmenu() calls this->ProcessEvent() we must call this->Connect()
|
// since Popupmenu() calls this->ProcessEvent() we must call this->Connect()
|
||||||
// and not m_LayerScrolledWindow->Connect()
|
// and not m_LayerScrolledWindow->Connect()
|
||||||
Connect( ID_SHOW_ALL_COPPERS, ID_SHOW_NO_COPPERS, wxEVT_COMMAND_MENU_SELECTED,
|
Connect( ID_SHOW_ALL_COPPERS, ID_SHOW_NO_COPPERS, wxEVT_COMMAND_MENU_SELECTED,
|
||||||
wxCommandEventHandler( GERBER_LAYER_WIDGET::onPopupSelection ), NULL, this );
|
wxCommandEventHandler( GERBER_LAYER_WIDGET::onPopupSelection ), NULL, this );
|
||||||
|
|
||||||
// install the right click handler into each control at end of ReFill()
|
// install the right click handler into each control at end of ReFill()
|
||||||
// using installRightLayerClickHandler
|
// using installRightLayerClickHandler
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function SetLayersManagerTabsText
|
* Function SetLayersManagerTabsText
|
||||||
* Update the layer manager tabs labels
|
* Update the layer manager tabs labels
|
||||||
* Useful when changing Language or to set labels to a non default value
|
* Useful when changing Language or to set labels to a non default value
|
||||||
*/
|
*/
|
||||||
void GERBER_LAYER_WIDGET::SetLayersManagerTabsText( )
|
void GERBER_LAYER_WIDGET::SetLayersManagerTabsText( )
|
||||||
{
|
{
|
||||||
m_notebook->SetPageText(0, _("Layer") );
|
m_notebook->SetPageText(0, _("Layer") );
|
||||||
m_notebook->SetPageText(1, _("Render") );
|
m_notebook->SetPageText(1, _("Render") );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function ReFillRender
|
* Function ReFillRender
|
||||||
* Rebuild Render for instance after the config is read
|
* Rebuild Render for instance after the config is read
|
||||||
*/
|
*/
|
||||||
void GERBER_LAYER_WIDGET::ReFillRender()
|
void GERBER_LAYER_WIDGET::ReFillRender()
|
||||||
{
|
{
|
||||||
BOARD* board = myframe->GetBoard();
|
BOARD* board = myframe->GetBoard();
|
||||||
ClearRenderRows();
|
ClearRenderRows();
|
||||||
|
|
||||||
// Fixed "Rendering" tab rows within the LAYER_WIDGET, only the initial color
|
// Fixed "Rendering" tab rows within the LAYER_WIDGET, only the initial color
|
||||||
// is changed before appending to the LAYER_WIDGET. This is an automatic variable
|
// is changed before appending to the LAYER_WIDGET. This is an automatic variable
|
||||||
// not a static variable, change the color & state after copying from code to renderRows
|
// not a static variable, change the color & state after copying from code to renderRows
|
||||||
// on the stack.
|
// on the stack.
|
||||||
LAYER_WIDGET::ROW renderRows[2] = {
|
LAYER_WIDGET::ROW renderRows[2] = {
|
||||||
|
|
||||||
#define RR LAYER_WIDGET::ROW // Render Row abreviation to reduce source width
|
#define RR LAYER_WIDGET::ROW // Render Row abreviation to reduce source width
|
||||||
|
|
||||||
// text id color tooltip checked
|
// text id color tooltip checked
|
||||||
RR( _( "Grid" ), GERBER_GRID_VISIBLE, WHITE, _( "Show the (x,y) grid dots" ) ),
|
RR( _( "Grid" ), GERBER_GRID_VISIBLE, WHITE, _( "Show the (x,y) grid dots" ) ),
|
||||||
RR( _( "DCodes" ), DCODES_VISIBLE, WHITE, _( "Show DCodes identification" ) ),
|
RR( _( "DCodes" ), DCODES_VISIBLE, WHITE, _( "Show DCodes identification" ) ),
|
||||||
};
|
};
|
||||||
|
|
||||||
for( unsigned row=0; row<DIM(renderRows); ++row )
|
for( unsigned row=0; row<DIM(renderRows); ++row )
|
||||||
{
|
{
|
||||||
if( renderRows[row].color != -1 ) // does this row show a color?
|
if( renderRows[row].color != -1 ) // does this row show a color?
|
||||||
{
|
{
|
||||||
// this window frame must have an established BOARD, i.e. after SetBoard()
|
// this window frame must have an established BOARD, i.e. after SetBoard()
|
||||||
renderRows[row].color = board->GetVisibleElementColor( renderRows[row].id );
|
renderRows[row].color = board->GetVisibleElementColor( renderRows[row].id );
|
||||||
}
|
}
|
||||||
renderRows[row].state = board->IsElementVisible( renderRows[row].id );
|
renderRows[row].state = board->IsElementVisible( renderRows[row].id );
|
||||||
}
|
}
|
||||||
|
|
||||||
AppendRenderRows( renderRows, DIM(renderRows) );
|
AppendRenderRows( renderRows, DIM(renderRows) );
|
||||||
}
|
}
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::installRightLayerClickHandler()
|
void GERBER_LAYER_WIDGET::installRightLayerClickHandler()
|
||||||
{
|
{
|
||||||
int rowCount = GetLayerRowCount();
|
int rowCount = GetLayerRowCount();
|
||||||
for( int row=0; row<rowCount; ++row )
|
for( int row=0; row<rowCount; ++row )
|
||||||
{
|
{
|
||||||
for( int col=0; col<LYR_COLUMN_COUNT; ++col )
|
for( int col=0; col<LYR_COLUMN_COUNT; ++col )
|
||||||
{
|
{
|
||||||
wxWindow* w = getLayerComp( row, col );
|
wxWindow* w = getLayerComp( row, col );
|
||||||
|
|
||||||
w->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler(
|
w->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler(
|
||||||
GERBER_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
GERBER_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::onRightDownLayers( wxMouseEvent& event )
|
void GERBER_LAYER_WIDGET::onRightDownLayers( wxMouseEvent& event )
|
||||||
{
|
{
|
||||||
wxMenu menu;
|
wxMenu menu;
|
||||||
|
|
||||||
// menu text is capitalized:
|
// menu text is capitalized:
|
||||||
// http://library.gnome.org/devel/hig-book/2.20/design-text-labels.html.en#layout-capitalization
|
// http://library.gnome.org/devel/hig-book/2.20/design-text-labels.html.en#layout-capitalization
|
||||||
menu.Append( new wxMenuItem( &menu, ID_SHOW_ALL_COPPERS,
|
menu.Append( new wxMenuItem( &menu, ID_SHOW_ALL_COPPERS,
|
||||||
_("Show All Layers") ) );
|
_("Show All Layers") ) );
|
||||||
|
|
||||||
menu.Append( new wxMenuItem( &menu, ID_SHOW_NO_COPPERS,
|
menu.Append( new wxMenuItem( &menu, ID_SHOW_NO_COPPERS,
|
||||||
_( "Hide All Layers" ) ) );
|
_( "Hide All Layers" ) ) );
|
||||||
|
|
||||||
PopupMenu( &menu );
|
PopupMenu( &menu );
|
||||||
|
|
||||||
passOnFocus();
|
passOnFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event )
|
void GERBER_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
int rowCount;
|
int rowCount;
|
||||||
int menuId = event.GetId();
|
int menuId = event.GetId();
|
||||||
bool visible = (menuId == ID_SHOW_ALL_COPPERS) ? true : false;;
|
bool visible = (menuId == ID_SHOW_ALL_COPPERS) ? true : false;;
|
||||||
int visibleLayers = 0;
|
int visibleLayers = 0;
|
||||||
|
|
||||||
switch( menuId )
|
switch( menuId )
|
||||||
{
|
{
|
||||||
case ID_SHOW_ALL_COPPERS:
|
case ID_SHOW_ALL_COPPERS:
|
||||||
case ID_SHOW_NO_COPPERS:
|
case ID_SHOW_NO_COPPERS:
|
||||||
rowCount = GetLayerRowCount();
|
rowCount = GetLayerRowCount();
|
||||||
for( int row=0; row < rowCount; ++row )
|
for( int row=0; row < rowCount; ++row )
|
||||||
{
|
{
|
||||||
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
|
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
|
||||||
cb->SetValue( visible );
|
cb->SetValue( visible );
|
||||||
if( visible )
|
if( visible )
|
||||||
visibleLayers |= (1 << row);
|
visibleLayers |= (1 << row);
|
||||||
else
|
else
|
||||||
visibleLayers &= ~(1 << row);
|
visibleLayers &= ~(1 << row);
|
||||||
}
|
}
|
||||||
|
|
||||||
myframe->GetBoard()->SetVisibleLayers( visibleLayers );
|
myframe->GetBoard()->SetVisibleLayers( visibleLayers );
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::ReFill()
|
void GERBER_LAYER_WIDGET::ReFill()
|
||||||
{
|
{
|
||||||
BOARD* brd = myframe->GetBoard();
|
BOARD* brd = myframe->GetBoard();
|
||||||
int layer;
|
int layer;
|
||||||
ClearLayerRows();
|
ClearLayerRows();
|
||||||
for( layer = 0; layer < LAYER_COUNT; layer++ )
|
for( layer = 0; layer < LAYER_COUNT; layer++ )
|
||||||
{
|
{
|
||||||
wxString msg;
|
wxString msg;
|
||||||
msg.Printf( _("Layer %d"), layer+1 );
|
msg.Printf( _("Layer %d"), layer+1 );
|
||||||
AppendLayerRow( LAYER_WIDGET::ROW( msg, layer,
|
AppendLayerRow( LAYER_WIDGET::ROW( msg, layer,
|
||||||
brd->GetLayerColor( layer ), wxEmptyString, true ) );
|
brd->GetLayerColor( layer ), wxEmptyString, true ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
installRightLayerClickHandler();
|
installRightLayerClickHandler();
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----<LAYER_WIDGET callbacks>-------------------------------------------
|
//-----<LAYER_WIDGET callbacks>-------------------------------------------
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::OnLayerColorChange( int aLayer, int aColor )
|
void GERBER_LAYER_WIDGET::OnLayerColorChange( int aLayer, int aColor )
|
||||||
{
|
{
|
||||||
myframe->GetBoard()->SetLayerColor( aLayer, aColor );
|
myframe->GetBoard()->SetLayerColor( aLayer, aColor );
|
||||||
myframe->m_SelLayerBox->ResyncBitmapOnly();
|
myframe->m_SelLayerBox->ResyncBitmapOnly();
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GERBER_LAYER_WIDGET::OnLayerSelect( int aLayer )
|
bool GERBER_LAYER_WIDGET::OnLayerSelect( int aLayer )
|
||||||
{
|
{
|
||||||
// the layer change from the GERBER_LAYER_WIDGET can be denied by returning
|
// the layer change from the GERBER_LAYER_WIDGET can be denied by returning
|
||||||
// false from this function.
|
// false from this function.
|
||||||
int layer = myframe->getActiveLayer( );
|
int layer = myframe->getActiveLayer( );
|
||||||
myframe->setActiveLayer( aLayer, false );
|
myframe->setActiveLayer( aLayer, false );
|
||||||
myframe->syncLayerBox();
|
myframe->syncLayerBox();
|
||||||
if( layer != myframe->getActiveLayer( ) )
|
if( layer != myframe->getActiveLayer( ) )
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::OnLayerVisible( int aLayer, bool isVisible, bool isFinal )
|
void GERBER_LAYER_WIDGET::OnLayerVisible( int aLayer, bool isVisible, bool isFinal )
|
||||||
{
|
{
|
||||||
BOARD* brd = myframe->GetBoard();
|
BOARD* brd = myframe->GetBoard();
|
||||||
int visibleLayers = brd->GetVisibleLayers();
|
int visibleLayers = brd->GetVisibleLayers();
|
||||||
|
|
||||||
if( isVisible )
|
if( isVisible )
|
||||||
visibleLayers |= (1 << aLayer);
|
visibleLayers |= (1 << aLayer);
|
||||||
else
|
else
|
||||||
visibleLayers &= ~(1 << aLayer);
|
visibleLayers &= ~(1 << aLayer);
|
||||||
|
|
||||||
brd->SetVisibleLayers( visibleLayers );
|
brd->SetVisibleLayers( visibleLayers );
|
||||||
|
|
||||||
if( isFinal )
|
if( isFinal )
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::OnRenderColorChange( int aId, int aColor )
|
void GERBER_LAYER_WIDGET::OnRenderColorChange( int aId, int aColor )
|
||||||
{
|
{
|
||||||
myframe->GetBoard()->SetVisibleElementColor( aId, aColor );
|
myframe->GetBoard()->SetVisibleElementColor( aId, aColor );
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GERBER_LAYER_WIDGET::OnRenderEnable( int aId, bool isEnabled )
|
void GERBER_LAYER_WIDGET::OnRenderEnable( int aId, bool isEnabled )
|
||||||
{
|
{
|
||||||
BOARD* brd = myframe->GetBoard();
|
BOARD* brd = myframe->GetBoard();
|
||||||
brd->SetElementVisibility( aId, isEnabled );
|
brd->SetElementVisibility( aId, isEnabled );
|
||||||
|
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----</LAYER_WIDGET callbacks>------------------------------------------
|
//-----</LAYER_WIDGET callbacks>------------------------------------------
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Virtual Function useAlternateBitmap
|
* Virtual Function useAlternateBitmap
|
||||||
* return true if bitmaps shown in Render layer list
|
* return true if bitmaps shown in Render layer list
|
||||||
* must be alternate bitmaps, or false to use "normal" bitmaps
|
* must be alternate bitmaps, or false to use "normal" bitmaps
|
||||||
*/
|
*/
|
||||||
bool GERBER_LAYER_WIDGET::useAlternateBitmap(int aRow)
|
bool GERBER_LAYER_WIDGET::useAlternateBitmap(int aRow)
|
||||||
{
|
{
|
||||||
bool inUse = false;
|
bool inUse = false;
|
||||||
GERBER_IMAGE* gerber = g_GERBER_List[aRow];
|
GERBER_IMAGE* gerber = g_GERBER_List[aRow];
|
||||||
|
|
||||||
if( gerber != NULL && gerber->m_InUse )
|
if( gerber != NULL && gerber->m_InUse )
|
||||||
inUse = true;
|
inUse = true;
|
||||||
|
|
||||||
return inUse;
|
return inUse;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function UpdateLayerIcons
|
* Function UpdateLayerIcons
|
||||||
* Update the layer manager icons (layers only)
|
* Update the layer manager icons (layers only)
|
||||||
* Useful when loading a file or clearing a layer because they change
|
* Useful when loading a file or clearing a layer because they change
|
||||||
*/
|
*/
|
||||||
void GERBER_LAYER_WIDGET::UpdateLayerIcons()
|
void GERBER_LAYER_WIDGET::UpdateLayerIcons()
|
||||||
{
|
{
|
||||||
int row_count = GetLayerRowCount();
|
int row_count = GetLayerRowCount();
|
||||||
for( int row = 0; row < row_count ; row++ )
|
for( int row = 0; row < row_count ; row++ )
|
||||||
{
|
{
|
||||||
wxStaticBitmap* bm = (wxStaticBitmap*) getLayerComp( row, 0 );
|
wxStaticBitmap* bm = (wxStaticBitmap*) getLayerComp( row, 0 );
|
||||||
if( bm == NULL)
|
if( bm == NULL)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if( row == m_CurrentRow )
|
if( row == m_CurrentRow )
|
||||||
bm->SetBitmap( useAlternateBitmap(row) ? *m_RightArrowAlternateBitmap : *m_RightArrowBitmap );
|
bm->SetBitmap( useAlternateBitmap(row) ? *m_RightArrowAlternateBitmap : *m_RightArrowBitmap );
|
||||||
else
|
else
|
||||||
bm->SetBitmap( useAlternateBitmap(row) ? *m_BlankAlternateBitmap : *m_BlankBitmap );
|
bm->SetBitmap( useAlternateBitmap(row) ? *m_BlankAlternateBitmap : *m_BlankBitmap );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,298 +1,298 @@
|
||||||
/**
|
/**
|
||||||
* @file events_called_functions.cpp
|
* @file events_called_functions.cpp
|
||||||
* @brief Gerbview command event functions.
|
* @brief Gerbview command event functions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fctsys.h"
|
#include "fctsys.h"
|
||||||
#include "appl_wxstruct.h"
|
#include "appl_wxstruct.h"
|
||||||
#include "class_drawpanel.h"
|
#include "class_drawpanel.h"
|
||||||
#include "confirm.h"
|
#include "confirm.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "gestfich.h"
|
#include "gestfich.h"
|
||||||
|
|
||||||
#include "gerbview.h"
|
#include "gerbview.h"
|
||||||
#include "kicad_device_context.h"
|
#include "kicad_device_context.h"
|
||||||
#include "gerbview_id.h"
|
#include "gerbview_id.h"
|
||||||
#include "class_GERBER.h"
|
#include "class_GERBER.h"
|
||||||
#include "dialog_helpers.h"
|
#include "dialog_helpers.h"
|
||||||
#include "class_DCodeSelectionbox.h"
|
#include "class_DCodeSelectionbox.h"
|
||||||
#include "class_gerbview_layer_widget.h"
|
#include "class_gerbview_layer_widget.h"
|
||||||
|
|
||||||
|
|
||||||
// Event table:
|
// Event table:
|
||||||
|
|
||||||
BEGIN_EVENT_TABLE( GERBVIEW_FRAME, PCB_BASE_FRAME )
|
BEGIN_EVENT_TABLE( GERBVIEW_FRAME, PCB_BASE_FRAME )
|
||||||
EVT_CLOSE( GERBVIEW_FRAME::OnCloseWindow )
|
EVT_CLOSE( GERBVIEW_FRAME::OnCloseWindow )
|
||||||
EVT_SIZE( GERBVIEW_FRAME::OnSize )
|
EVT_SIZE( GERBVIEW_FRAME::OnSize )
|
||||||
|
|
||||||
EVT_TOOL( wxID_FILE, GERBVIEW_FRAME::Files_io )
|
EVT_TOOL( wxID_FILE, GERBVIEW_FRAME::Files_io )
|
||||||
EVT_TOOL( ID_GERBVIEW_ERASE_ALL, GERBVIEW_FRAME::Files_io )
|
EVT_TOOL( ID_GERBVIEW_ERASE_ALL, GERBVIEW_FRAME::Files_io )
|
||||||
EVT_TOOL( ID_GERBVIEW_LOAD_DRILL_FILE, GERBVIEW_FRAME::Files_io )
|
EVT_TOOL( ID_GERBVIEW_LOAD_DRILL_FILE, GERBVIEW_FRAME::Files_io )
|
||||||
EVT_TOOL( ID_GERBVIEW_LOAD_DCODE_FILE, GERBVIEW_FRAME::Files_io )
|
EVT_TOOL( ID_GERBVIEW_LOAD_DCODE_FILE, GERBVIEW_FRAME::Files_io )
|
||||||
EVT_TOOL( ID_NEW_BOARD, GERBVIEW_FRAME::Files_io )
|
EVT_TOOL( ID_NEW_BOARD, GERBVIEW_FRAME::Files_io )
|
||||||
|
|
||||||
// Menu Files:
|
// Menu Files:
|
||||||
EVT_MENU( wxID_FILE, GERBVIEW_FRAME::Files_io )
|
EVT_MENU( wxID_FILE, GERBVIEW_FRAME::Files_io )
|
||||||
EVT_MENU( ID_NEW_BOARD, GERBVIEW_FRAME::Files_io )
|
EVT_MENU( ID_NEW_BOARD, GERBVIEW_FRAME::Files_io )
|
||||||
EVT_MENU( ID_GEN_PLOT, GERBVIEW_FRAME::ToPlotter )
|
EVT_MENU( ID_GEN_PLOT, GERBVIEW_FRAME::ToPlotter )
|
||||||
EVT_MENU( ID_GERBVIEW_EXPORT_TO_PCBNEW, GERBVIEW_FRAME::ExportDataInPcbnewFormat )
|
EVT_MENU( ID_GERBVIEW_EXPORT_TO_PCBNEW, GERBVIEW_FRAME::ExportDataInPcbnewFormat )
|
||||||
|
|
||||||
EVT_MENU_RANGE( wxID_FILE1, wxID_FILE9, GERBVIEW_FRAME::OnGbrFileHistory )
|
EVT_MENU_RANGE( wxID_FILE1, wxID_FILE9, GERBVIEW_FRAME::OnGbrFileHistory )
|
||||||
EVT_MENU_RANGE( ID_GERBVIEW_DRILL_FILE1, ID_GERBVIEW_DRILL_FILE9,
|
EVT_MENU_RANGE( ID_GERBVIEW_DRILL_FILE1, ID_GERBVIEW_DRILL_FILE9,
|
||||||
GERBVIEW_FRAME::OnDrlFileHistory )
|
GERBVIEW_FRAME::OnDrlFileHistory )
|
||||||
|
|
||||||
EVT_MENU( wxID_EXIT, GERBVIEW_FRAME::OnQuit )
|
EVT_MENU( wxID_EXIT, GERBVIEW_FRAME::OnQuit )
|
||||||
|
|
||||||
// menu Preferences
|
// menu Preferences
|
||||||
EVT_MENU_RANGE( ID_PREFERENCES_HOTKEY_START, ID_PREFERENCES_HOTKEY_END,
|
EVT_MENU_RANGE( ID_PREFERENCES_HOTKEY_START, ID_PREFERENCES_HOTKEY_END,
|
||||||
GERBVIEW_FRAME::Process_Config )
|
GERBVIEW_FRAME::Process_Config )
|
||||||
|
|
||||||
EVT_MENU( ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG,
|
EVT_MENU( ID_MENU_GERBVIEW_SHOW_HIDE_LAYERS_MANAGER_DIALOG,
|
||||||
GERBVIEW_FRAME::OnSelectOptionToolbar )
|
GERBVIEW_FRAME::OnSelectOptionToolbar )
|
||||||
EVT_MENU( wxID_PREFERENCES, GERBVIEW_FRAME::InstallGerberOptionsDialog )
|
EVT_MENU( wxID_PREFERENCES, GERBVIEW_FRAME::InstallGerberOptionsDialog )
|
||||||
|
|
||||||
EVT_MENU_RANGE( ID_LANGUAGE_CHOICE, ID_LANGUAGE_CHOICE_END, EDA_DRAW_FRAME::SetLanguage )
|
EVT_MENU_RANGE( ID_LANGUAGE_CHOICE, ID_LANGUAGE_CHOICE_END, EDA_DRAW_FRAME::SetLanguage )
|
||||||
|
|
||||||
// menu Postprocess
|
// menu Postprocess
|
||||||
EVT_MENU( ID_GERBVIEW_SHOW_LIST_DCODES, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_MENU( ID_GERBVIEW_SHOW_LIST_DCODES, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
EVT_MENU( ID_GERBVIEW_SHOW_SOURCE, GERBVIEW_FRAME::OnShowGerberSourceFile )
|
EVT_MENU( ID_GERBVIEW_SHOW_SOURCE, GERBVIEW_FRAME::OnShowGerberSourceFile )
|
||||||
EVT_MENU( ID_MENU_GERBVIEW_SELECT_PREFERED_EDITOR,
|
EVT_MENU( ID_MENU_GERBVIEW_SELECT_PREFERED_EDITOR,
|
||||||
EDA_BASE_FRAME::OnSelectPreferredEditor )
|
EDA_BASE_FRAME::OnSelectPreferredEditor )
|
||||||
|
|
||||||
// menu Miscellaneous
|
// menu Miscellaneous
|
||||||
EVT_MENU( ID_GERBVIEW_GLOBAL_DELETE, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_MENU( ID_GERBVIEW_GLOBAL_DELETE, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
|
|
||||||
// Menu Help
|
// Menu Help
|
||||||
EVT_MENU( wxID_HELP, EDA_DRAW_FRAME::GetKicadHelp )
|
EVT_MENU( wxID_HELP, EDA_DRAW_FRAME::GetKicadHelp )
|
||||||
EVT_MENU( wxID_ABOUT, EDA_DRAW_FRAME::GetKicadAbout )
|
EVT_MENU( wxID_ABOUT, EDA_DRAW_FRAME::GetKicadAbout )
|
||||||
|
|
||||||
EVT_TOOL( wxID_CUT, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_TOOL( wxID_CUT, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
EVT_TOOL( wxID_COPY, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_TOOL( wxID_COPY, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
EVT_TOOL( wxID_PASTE, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_TOOL( wxID_PASTE, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
EVT_TOOL( wxID_UNDO, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_TOOL( wxID_UNDO, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
EVT_TOOL( wxID_PRINT, GERBVIEW_FRAME::ToPrinter )
|
EVT_TOOL( wxID_PRINT, GERBVIEW_FRAME::ToPrinter )
|
||||||
EVT_COMBOBOX( ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
EVT_COMBOBOX( ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
||||||
GERBVIEW_FRAME::OnSelectActiveLayer )
|
GERBVIEW_FRAME::OnSelectActiveLayer )
|
||||||
|
|
||||||
EVT_SELECT_DCODE( ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE, GERBVIEW_FRAME::OnSelectActiveDCode )
|
EVT_SELECT_DCODE( ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE, GERBVIEW_FRAME::OnSelectActiveDCode )
|
||||||
|
|
||||||
// Vertical toolbar:
|
// Vertical toolbar:
|
||||||
EVT_TOOL( ID_NO_TOOL_SELECTED, GERBVIEW_FRAME::Process_Special_Functions )
|
EVT_TOOL( ID_NO_TOOL_SELECTED, GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
|
|
||||||
EVT_MENU_RANGE( ID_POPUP_GENERAL_START_RANGE, ID_POPUP_GENERAL_END_RANGE,
|
EVT_MENU_RANGE( ID_POPUP_GENERAL_START_RANGE, ID_POPUP_GENERAL_END_RANGE,
|
||||||
GERBVIEW_FRAME::Process_Special_Functions )
|
GERBVIEW_FRAME::Process_Special_Functions )
|
||||||
|
|
||||||
// Option toolbar
|
// Option toolbar
|
||||||
EVT_TOOL( ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
||||||
EVT_TOOL( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
||||||
EVT_TOOL( ID_TB_OPTIONS_SHOW_LINES_SKETCH, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_LINES_SKETCH, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
||||||
EVT_TOOL( ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
||||||
GERBVIEW_FRAME::OnSelectOptionToolbar )
|
GERBVIEW_FRAME::OnSelectOptionToolbar )
|
||||||
EVT_TOOL( ID_TB_OPTIONS_SHOW_DCODES, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_DCODES, GERBVIEW_FRAME::OnSelectOptionToolbar )
|
||||||
EVT_TOOL_RANGE( ID_TB_OPTIONS_SHOW_GBR_MODE_0, ID_TB_OPTIONS_SHOW_GBR_MODE_2,
|
EVT_TOOL_RANGE( ID_TB_OPTIONS_SHOW_GBR_MODE_0, ID_TB_OPTIONS_SHOW_GBR_MODE_2,
|
||||||
GERBVIEW_FRAME::OnSelectDisplayMode )
|
GERBVIEW_FRAME::OnSelectDisplayMode )
|
||||||
|
|
||||||
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH,
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_FLASHED_ITEMS_SKETCH,
|
||||||
GERBVIEW_FRAME::OnUpdateFlashedItemsDrawMode )
|
GERBVIEW_FRAME::OnUpdateFlashedItemsDrawMode )
|
||||||
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_LINES_SKETCH, GERBVIEW_FRAME::OnUpdateLinesDrawMode )
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_LINES_SKETCH, GERBVIEW_FRAME::OnUpdateLinesDrawMode )
|
||||||
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH, GERBVIEW_FRAME::OnUpdatePolygonsDrawMode )
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_POLYGONS_SKETCH, GERBVIEW_FRAME::OnUpdatePolygonsDrawMode )
|
||||||
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_DCODES, GERBVIEW_FRAME::OnUpdateShowDCodes )
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_DCODES, GERBVIEW_FRAME::OnUpdateShowDCodes )
|
||||||
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_LAYERS_MANAGER_VERTICAL_TOOLBAR,
|
||||||
GERBVIEW_FRAME::OnUpdateShowLayerManager )
|
GERBVIEW_FRAME::OnUpdateShowLayerManager )
|
||||||
|
|
||||||
EVT_UPDATE_UI( ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE, GERBVIEW_FRAME::OnUpdateSelectDCode )
|
EVT_UPDATE_UI( ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE, GERBVIEW_FRAME::OnUpdateSelectDCode )
|
||||||
EVT_UPDATE_UI( ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
EVT_UPDATE_UI( ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
||||||
GERBVIEW_FRAME::OnUpdateLayerSelectBox )
|
GERBVIEW_FRAME::OnUpdateLayerSelectBox )
|
||||||
EVT_UPDATE_UI_RANGE( ID_TB_OPTIONS_SHOW_GBR_MODE_0, ID_TB_OPTIONS_SHOW_GBR_MODE_2,
|
EVT_UPDATE_UI_RANGE( ID_TB_OPTIONS_SHOW_GBR_MODE_0, ID_TB_OPTIONS_SHOW_GBR_MODE_2,
|
||||||
GERBVIEW_FRAME::OnUpdateDrawMode )
|
GERBVIEW_FRAME::OnUpdateDrawMode )
|
||||||
|
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
|
||||||
/* Handles the selection of tools, menu, and popup menu commands.
|
/* Handles the selection of tools, menu, and popup menu commands.
|
||||||
*/
|
*/
|
||||||
void GERBVIEW_FRAME::Process_Special_Functions( wxCommandEvent& event )
|
void GERBVIEW_FRAME::Process_Special_Functions( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
int id = event.GetId();
|
int id = event.GetId();
|
||||||
|
|
||||||
switch( id )
|
switch( id )
|
||||||
{
|
{
|
||||||
case wxID_CUT:
|
case wxID_CUT:
|
||||||
case wxID_COPY:
|
case wxID_COPY:
|
||||||
case ID_POPUP_DELETE_BLOCK:
|
case ID_POPUP_DELETE_BLOCK:
|
||||||
case ID_POPUP_PLACE_BLOCK:
|
case ID_POPUP_PLACE_BLOCK:
|
||||||
case ID_POPUP_ZOOM_BLOCK:
|
case ID_POPUP_ZOOM_BLOCK:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_POPUP_CANCEL_CURRENT_COMMAND:
|
case ID_POPUP_CANCEL_CURRENT_COMMAND:
|
||||||
DrawPanel->EndMouseCapture();
|
DrawPanel->EndMouseCapture();
|
||||||
|
|
||||||
if( GetScreen()->m_BlockLocate.m_Command != BLOCK_IDLE )
|
if( GetScreen()->m_BlockLocate.m_Command != BLOCK_IDLE )
|
||||||
{
|
{
|
||||||
/* Should not be executed, except bug */
|
/* Should not be executed, except bug */
|
||||||
GetScreen()->m_BlockLocate.m_Command = BLOCK_IDLE;
|
GetScreen()->m_BlockLocate.m_Command = BLOCK_IDLE;
|
||||||
GetScreen()->m_BlockLocate.m_State = STATE_NO_BLOCK;
|
GetScreen()->m_BlockLocate.m_State = STATE_NO_BLOCK;
|
||||||
GetScreen()->m_BlockLocate.ClearItemsList();
|
GetScreen()->m_BlockLocate.ClearItemsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
if( GetToolId() == ID_NO_TOOL_SELECTED )
|
if( GetToolId() == ID_NO_TOOL_SELECTED )
|
||||||
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
||||||
else
|
else
|
||||||
DrawPanel->SetCursor( DrawPanel->GetCurrentCursor() );
|
DrawPanel->SetCursor( DrawPanel->GetCurrentCursor() );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
DrawPanel->EndMouseCapture();
|
DrawPanel->EndMouseCapture();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
INSTALL_UNBUFFERED_DC( dc, DrawPanel );
|
INSTALL_UNBUFFERED_DC( dc, DrawPanel );
|
||||||
|
|
||||||
switch( id )
|
switch( id )
|
||||||
{
|
{
|
||||||
case ID_GERBVIEW_GLOBAL_DELETE:
|
case ID_GERBVIEW_GLOBAL_DELETE:
|
||||||
Erase_Current_Layer( true );
|
Erase_Current_Layer( true );
|
||||||
ClearMsgPanel();
|
ClearMsgPanel();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_NO_TOOL_SELECTED:
|
case ID_NO_TOOL_SELECTED:
|
||||||
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_POPUP_CLOSE_CURRENT_TOOL:
|
case ID_POPUP_CLOSE_CURRENT_TOOL:
|
||||||
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
SetToolID( ID_NO_TOOL_SELECTED, DrawPanel->GetDefaultCursor(), wxEmptyString );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_POPUP_CANCEL_CURRENT_COMMAND:
|
case ID_POPUP_CANCEL_CURRENT_COMMAND:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_GERBVIEW_SHOW_LIST_DCODES:
|
case ID_GERBVIEW_SHOW_LIST_DCODES:
|
||||||
Liste_D_Codes();
|
Liste_D_Codes();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_POPUP_PLACE_BLOCK:
|
case ID_POPUP_PLACE_BLOCK:
|
||||||
GetScreen()->m_BlockLocate.m_Command = BLOCK_MOVE;
|
GetScreen()->m_BlockLocate.m_Command = BLOCK_MOVE;
|
||||||
DrawPanel->m_AutoPAN_Request = FALSE;
|
DrawPanel->m_AutoPAN_Request = FALSE;
|
||||||
HandleBlockPlace( &dc );
|
HandleBlockPlace( &dc );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_POPUP_ZOOM_BLOCK:
|
case ID_POPUP_ZOOM_BLOCK:
|
||||||
GetScreen()->m_BlockLocate.m_Command = BLOCK_ZOOM;
|
GetScreen()->m_BlockLocate.m_Command = BLOCK_ZOOM;
|
||||||
GetScreen()->m_BlockLocate.SetMessageBlock( this );
|
GetScreen()->m_BlockLocate.SetMessageBlock( this );
|
||||||
HandleBlockEnd( &dc );
|
HandleBlockEnd( &dc );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_POPUP_DELETE_BLOCK:
|
case ID_POPUP_DELETE_BLOCK:
|
||||||
GetScreen()->m_BlockLocate.m_Command = BLOCK_DELETE;
|
GetScreen()->m_BlockLocate.m_Command = BLOCK_DELETE;
|
||||||
GetScreen()->m_BlockLocate.SetMessageBlock( this );
|
GetScreen()->m_BlockLocate.SetMessageBlock( this );
|
||||||
HandleBlockEnd( &dc );
|
HandleBlockEnd( &dc );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
wxFAIL_MSG( wxT( "GERBVIEW_FRAME::Process_Special_Functions error" ) );
|
wxFAIL_MSG( wxT( "GERBVIEW_FRAME::Process_Special_Functions error" ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Selects the active DCode for the current active layer.
|
/* Selects the active DCode for the current active layer.
|
||||||
* Items using this DCode are hightlighted
|
* Items using this DCode are hightlighted
|
||||||
*/
|
*/
|
||||||
void GERBVIEW_FRAME::OnSelectActiveDCode( wxCommandEvent& event )
|
void GERBVIEW_FRAME::OnSelectActiveDCode( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
GERBER_IMAGE* gerber_image = g_GERBER_List[getActiveLayer()];
|
GERBER_IMAGE* gerber_image = g_GERBER_List[getActiveLayer()];
|
||||||
if( gerber_image )
|
if( gerber_image )
|
||||||
{
|
{
|
||||||
int tool = m_DCodeSelector->GetSelectedDCodeId();
|
int tool = m_DCodeSelector->GetSelectedDCodeId();
|
||||||
if( tool != gerber_image->m_Selected_Tool )
|
if( tool != gerber_image->m_Selected_Tool )
|
||||||
{
|
{
|
||||||
gerber_image->m_Selected_Tool = tool;
|
gerber_image->m_Selected_Tool = tool;
|
||||||
DrawPanel->Refresh();
|
DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Selects the active layer:
|
/* Selects the active layer:
|
||||||
* - if a file is loaded, it is loaded in this layer
|
* - if a file is loaded, it is loaded in this layer
|
||||||
* _ this layer is displayed on top of other layers
|
* _ this layer is displayed on top of other layers
|
||||||
*/
|
*/
|
||||||
void GERBVIEW_FRAME::OnSelectActiveLayer( wxCommandEvent& event )
|
void GERBVIEW_FRAME::OnSelectActiveLayer( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
int layer = getActiveLayer();
|
int layer = getActiveLayer();
|
||||||
|
|
||||||
setActiveLayer( event.GetSelection() );
|
setActiveLayer( event.GetSelection() );
|
||||||
if( layer != getActiveLayer() )
|
if( layer != getActiveLayer() )
|
||||||
DrawPanel->Refresh();
|
DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Call preferred editor to show (and edit) the gerber source file
|
/* Call preferred editor to show (and edit) the gerber source file
|
||||||
* loaded in the active layer
|
* loaded in the active layer
|
||||||
*/
|
*/
|
||||||
void GERBVIEW_FRAME::OnShowGerberSourceFile( wxCommandEvent& event )
|
void GERBVIEW_FRAME::OnShowGerberSourceFile( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
int layer = getActiveLayer();
|
int layer = getActiveLayer();
|
||||||
GERBER_IMAGE* gerber_layer = g_GERBER_List[layer];
|
GERBER_IMAGE* gerber_layer = g_GERBER_List[layer];
|
||||||
|
|
||||||
if( gerber_layer )
|
if( gerber_layer )
|
||||||
{
|
{
|
||||||
wxString editorname = wxGetApp().GetEditorName();
|
wxString editorname = wxGetApp().GetEditorName();
|
||||||
if( !editorname.IsEmpty() )
|
if( !editorname.IsEmpty() )
|
||||||
{
|
{
|
||||||
wxFileName fn( gerber_layer->m_FileName );
|
wxFileName fn( gerber_layer->m_FileName );
|
||||||
ExecuteFile( this, editorname, QuoteFullPath( fn ) );
|
ExecuteFile( this, editorname, QuoteFullPath( fn ) );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
wxMessageBox( _( "No editor defined. Please select one" ) );
|
wxMessageBox( _( "No editor defined. Please select one" ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Function OnSelectDisplayMode: called to select display mode
|
/* Function OnSelectDisplayMode: called to select display mode
|
||||||
* (fast display, or exact mode with stacked images or with transparency
|
* (fast display, or exact mode with stacked images or with transparency
|
||||||
*/
|
*/
|
||||||
void GERBVIEW_FRAME::OnSelectDisplayMode( wxCommandEvent& event )
|
void GERBVIEW_FRAME::OnSelectDisplayMode( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
int oldMode = GetDisplayMode();
|
int oldMode = GetDisplayMode();
|
||||||
|
|
||||||
switch( event.GetId() )
|
switch( event.GetId() )
|
||||||
{
|
{
|
||||||
case ID_TB_OPTIONS_SHOW_GBR_MODE_0:
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_0:
|
||||||
SetDisplayMode( 0 );
|
SetDisplayMode( 0 );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_TB_OPTIONS_SHOW_GBR_MODE_1:
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_1:
|
||||||
SetDisplayMode( 1 );
|
SetDisplayMode( 1 );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_TB_OPTIONS_SHOW_GBR_MODE_2:
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_2:
|
||||||
SetDisplayMode( 2 );
|
SetDisplayMode( 2 );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( GetDisplayMode() != oldMode )
|
if( GetDisplayMode() != oldMode )
|
||||||
DrawPanel->Refresh();
|
DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
void GERBVIEW_FRAME::OnQuit( wxCommandEvent& event )
|
void GERBVIEW_FRAME::OnQuit( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
Close( true );
|
Close( true );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function SetLanguage
|
* Function SetLanguage
|
||||||
* called on a language menu selection
|
* called on a language menu selection
|
||||||
* Update Layer manager title and tabs texts
|
* Update Layer manager title and tabs texts
|
||||||
*/
|
*/
|
||||||
void GERBVIEW_FRAME::SetLanguage( wxCommandEvent& event )
|
void GERBVIEW_FRAME::SetLanguage( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
EDA_DRAW_FRAME::SetLanguage( event );
|
EDA_DRAW_FRAME::SetLanguage( event );
|
||||||
m_LayersManager->SetLayersManagerTabsText();
|
m_LayersManager->SetLayersManagerTabsText();
|
||||||
wxAuiPaneInfo& pane_info = m_auimgr.GetPane( m_LayersManager );
|
wxAuiPaneInfo& pane_info = m_auimgr.GetPane( m_LayersManager );
|
||||||
pane_info.Caption( _( "Visibles" ) );
|
pane_info.Caption( _( "Visibles" ) );
|
||||||
m_auimgr.Update();
|
m_auimgr.Update();
|
||||||
|
|
||||||
ReFillLayerWidget();
|
ReFillLayerWidget();
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,16 +42,16 @@ void GERBVIEW_FRAME::ReCreateHToolbar( void )
|
||||||
_( "Print layers" ) );
|
_( "Print layers" ) );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( _( "Zoom in" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_IN, false );
|
msg = AddHotkeyName( _( "Zoom in" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Zoom out" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_OUT, false );
|
msg = AddHotkeyName( _( "Zoom out" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Redraw view" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_REDRAW, false );
|
msg = AddHotkeyName( _( "Redraw view" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Zoom auto" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_AUTO, false );
|
msg = AddHotkeyName( _( "Zoom auto" ), s_Gerbview_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
class EDA_DRAW_FRAME;
|
class EDA_DRAW_FRAME;
|
||||||
|
|
||||||
|
|
||||||
/* Class to handle hotkey commnands. hotkeys have a default value
|
/* Class to handle hotkey commands. hotkeys have a default value
|
||||||
* This class allows the real key code changed by user(from a key code list file)
|
* This class allows the real key code changed by user(from a key code list file)
|
||||||
*/
|
*/
|
||||||
class Ki_HotkeyInfo
|
class Ki_HotkeyInfo
|
||||||
|
@ -93,6 +93,20 @@ wxString ReturnKeyNameFromCommandId( Ki_HotkeyInfo** aList, int aCommandI
|
||||||
*/
|
*/
|
||||||
int ReturnKeyCodeFromKeyName( const wxString& keyname );
|
int ReturnKeyCodeFromKeyName( const wxString& keyname );
|
||||||
|
|
||||||
|
/* An helper enum for AddHotkeyName function
|
||||||
|
* In menus we can an a hot key, or an accelerator , or sometimes just a comment
|
||||||
|
* Hot keys can perform actions using the current mouse cursor position
|
||||||
|
* Accelerators performs the same action as the associated menu
|
||||||
|
* A comment is used in tool tips for some tools (zoom ..)
|
||||||
|
* to show the hot key that perfoms this action
|
||||||
|
*/
|
||||||
|
enum HOTKEY_ACTION_TYPE
|
||||||
|
{
|
||||||
|
IS_HOTKEY,
|
||||||
|
IS_ACCELERATOR,
|
||||||
|
IS_COMMENT
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function AddHotkeyName
|
* Function AddHotkeyName
|
||||||
* Add the key name from the Command id value ( m_Idcommand member value)
|
* Add the key name from the Command id value ( m_Idcommand member value)
|
||||||
|
@ -105,7 +119,7 @@ int ReturnKeyCodeFromKeyName( const wxString& keyname );
|
||||||
*/
|
*/
|
||||||
wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
||||||
int aCommandId,
|
int aCommandId,
|
||||||
bool aIsShortCut = true);
|
HOTKEY_ACTION_TYPE aShortCutType = IS_HOTKEY);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function AddHotkeyName
|
* Function AddHotkeyName
|
||||||
|
@ -120,7 +134,7 @@ wxString AddHotkeyName( const wxString& aText, Ki_HotkeyInfo** aList,
|
||||||
wxString AddHotkeyName( const wxString& aText,
|
wxString AddHotkeyName( const wxString& aText,
|
||||||
struct Ki_HotkeyInfoSectionDescriptor* aDescrList,
|
struct Ki_HotkeyInfoSectionDescriptor* aDescrList,
|
||||||
int aCommandId,
|
int aCommandId,
|
||||||
bool aIsShortCut = true);
|
HOTKEY_ACTION_TYPE aShortCutType = IS_HOTKEY );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function DisplayHotkeyList
|
* Function DisplayHotkeyList
|
||||||
|
|
|
@ -1,401 +1,401 @@
|
||||||
/**
|
/**
|
||||||
* @file class_netinfo.h
|
* @file class_netinfo.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Classes to handle info on nets
|
* Classes to handle info on nets
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CLASSES_NETINFO__
|
#ifndef __CLASSES_NETINFO__
|
||||||
#define __CLASSES_NETINFO__
|
#define __CLASSES_NETINFO__
|
||||||
|
|
||||||
#include "class_netclass.h"
|
#include "class_netclass.h"
|
||||||
|
|
||||||
|
|
||||||
class LINE_READER;
|
class LINE_READER;
|
||||||
class EDA_DRAW_PANEL;
|
class EDA_DRAW_PANEL;
|
||||||
class EDA_DRAW_FRAME;
|
class EDA_DRAW_FRAME;
|
||||||
class NETINFO_ITEM;
|
class NETINFO_ITEM;
|
||||||
class D_PAD;
|
class D_PAD;
|
||||||
class BOARD;
|
class BOARD;
|
||||||
class BOARD_ITEM;
|
class BOARD_ITEM;
|
||||||
|
|
||||||
|
|
||||||
/* Class RATSNEST_ITEM: describes a ratsnest line: a straight line connecting 2 pads */
|
/* Class RATSNEST_ITEM: describes a ratsnest line: a straight line connecting 2 pads */
|
||||||
|
|
||||||
/*****************************/
|
/*****************************/
|
||||||
/* flags for a RATSNEST_ITEM */
|
/* flags for a RATSNEST_ITEM */
|
||||||
/*****************************/
|
/*****************************/
|
||||||
#define CH_VISIBLE 1 /* Visible */
|
#define CH_VISIBLE 1 /* Visible */
|
||||||
#define CH_UNROUTABLE 2 /* Don't use autorouter. */
|
#define CH_UNROUTABLE 2 /* Don't use autorouter. */
|
||||||
#define CH_ROUTE_REQ 4 /* Must be routed by the autorouter. */
|
#define CH_ROUTE_REQ 4 /* Must be routed by the autorouter. */
|
||||||
#define CH_ACTIF 8 /* Not routed. */
|
#define CH_ACTIF 8 /* Not routed. */
|
||||||
#define LOCAL_RATSNEST_ITEM 0x8000 /* Line between two pads of a single module. */
|
#define LOCAL_RATSNEST_ITEM 0x8000 /* Line between two pads of a single module. */
|
||||||
|
|
||||||
class RATSNEST_ITEM
|
class RATSNEST_ITEM
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int m_NetCode; // netcode ( = 1.. n , 0 is the value used for not connected items)
|
int m_NetCode; // netcode ( = 1.. n , 0 is the value used for not connected items)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int m_Status; // State: see previous defines (CH_ ...)
|
int m_Status; // State: see previous defines (CH_ ...)
|
||||||
D_PAD* m_PadStart; // pointer to the starting pad
|
D_PAD* m_PadStart; // pointer to the starting pad
|
||||||
D_PAD* m_PadEnd; // pointer to ending pad
|
D_PAD* m_PadEnd; // pointer to ending pad
|
||||||
int m_Lenght; // length of the line (used in some calculations)
|
int m_Lenght; // length of the line (used in some calculations)
|
||||||
|
|
||||||
RATSNEST_ITEM();
|
RATSNEST_ITEM();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetNet
|
* Function GetNet
|
||||||
* @return int - the net code.
|
* @return int - the net code.
|
||||||
*/
|
*/
|
||||||
int GetNet() const
|
int GetNet() const
|
||||||
{
|
{
|
||||||
return m_NetCode;
|
return m_NetCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void SetNet( int aNetCode )
|
void SetNet( int aNetCode )
|
||||||
{
|
{
|
||||||
m_NetCode = aNetCode;
|
m_NetCode = aNetCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function Draw
|
* Function Draw
|
||||||
*/
|
*/
|
||||||
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int aDrawMode, const wxPoint& offset );
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int aDrawMode, const wxPoint& offset );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************/
|
/***************************************************************/
|
||||||
/******************* class NETINFO *****************************/
|
/******************* class NETINFO *****************************/
|
||||||
/***************************************************************/
|
/***************************************************************/
|
||||||
|
|
||||||
class NETINFO_LIST
|
class NETINFO_LIST
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
BOARD* m_Parent;
|
BOARD* m_Parent;
|
||||||
std::vector<NETINFO_ITEM*> m_NetBuffer; // nets buffer list (name, design constraints ..
|
std::vector<NETINFO_ITEM*> m_NetBuffer; // nets buffer list (name, design constraints ..
|
||||||
|
|
||||||
public:
|
public:
|
||||||
std::vector<D_PAD*> m_PadsFullList; // Entry for a sorted pad list (used in ratsnest
|
std::vector<D_PAD*> m_PadsFullList; // Entry for a sorted pad list (used in ratsnest
|
||||||
// calculations)
|
// calculations)
|
||||||
|
|
||||||
public: NETINFO_LIST( BOARD* aParent );
|
public: NETINFO_LIST( BOARD* aParent );
|
||||||
~NETINFO_LIST();
|
~NETINFO_LIST();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetItem
|
* Function GetItem
|
||||||
* @param aNetcode = netcode to identify a given NETINFO_ITEM
|
* @param aNetcode = netcode to identify a given NETINFO_ITEM
|
||||||
* @return a NETINFO_ITEM pointer to the selected NETINFO_ITEM by its
|
* @return a NETINFO_ITEM pointer to the selected NETINFO_ITEM by its
|
||||||
* netcode, or NULL if not found
|
* netcode, or NULL if not found
|
||||||
*/
|
*/
|
||||||
NETINFO_ITEM* GetNetItem( int aNetcode );
|
NETINFO_ITEM* GetNetItem( int aNetcode );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetCount
|
* Function GetCount
|
||||||
* @return the number of nets ( always >= 1 )
|
* @return the number of nets ( always >= 1 )
|
||||||
* becuse the first net is the "not connected" net and always exists
|
* becuse the first net is the "not connected" net and always exists
|
||||||
*/
|
*/
|
||||||
unsigned GetCount() { return m_NetBuffer.size(); }
|
unsigned GetCount() { return m_NetBuffer.size(); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function Append
|
* Function Append
|
||||||
* adds \a aNewElement to the end of the list.
|
* adds \a aNewElement to the end of the list.
|
||||||
*/
|
*/
|
||||||
void AppendNet( NETINFO_ITEM* aNewElement );
|
void AppendNet( NETINFO_ITEM* aNewElement );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function DeleteData
|
* Function DeleteData
|
||||||
* delete the list of nets (and free memory)
|
* delete the list of nets (and free memory)
|
||||||
*/
|
*/
|
||||||
void DeleteData();
|
void DeleteData();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function BuildListOfNets
|
* Function BuildListOfNets
|
||||||
* Build or rebuild the list of NETINFO_ITEM m_NetBuffer
|
* Build or rebuild the list of NETINFO_ITEM m_NetBuffer
|
||||||
* The list is sorted by names.
|
* The list is sorted by names.
|
||||||
*/
|
*/
|
||||||
void BuildListOfNets();
|
void BuildListOfNets();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetPadsCount
|
* Function GetPadsCount
|
||||||
* @return the number of pads in board
|
* @return the number of pads in board
|
||||||
*/
|
*/
|
||||||
unsigned GetPadsCount()
|
unsigned GetPadsCount()
|
||||||
{
|
{
|
||||||
return m_PadsFullList.size();
|
return m_PadsFullList.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetPad
|
* Function GetPad
|
||||||
* @return the pad idx from m_PadsFullList
|
* @return the pad idx from m_PadsFullList
|
||||||
*/
|
*/
|
||||||
D_PAD* GetPad( unsigned aIdx )
|
D_PAD* GetPad( unsigned aIdx )
|
||||||
{
|
{
|
||||||
if( aIdx < m_PadsFullList.size() )
|
if( aIdx < m_PadsFullList.size() )
|
||||||
return m_PadsFullList[aIdx];
|
return m_PadsFullList[aIdx];
|
||||||
else
|
else
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function Build_Pads_Full_List
|
* Function Build_Pads_Full_List
|
||||||
* Create the pad list
|
* Create the pad list
|
||||||
* initialise:
|
* initialise:
|
||||||
* m_Pads (list of pads)
|
* m_Pads (list of pads)
|
||||||
* set m_Status_Pcb = LISTE_PAD_OK;
|
* set m_Status_Pcb = LISTE_PAD_OK;
|
||||||
* and clear for all pads in list the m_SubRatsnest member;
|
* and clear for all pads in list the m_SubRatsnest member;
|
||||||
* clear m_Pcb->m_FullRatsnest
|
* clear m_Pcb->m_FullRatsnest
|
||||||
*/
|
*/
|
||||||
void Build_Pads_Full_List();
|
void Build_Pads_Full_List();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class NETINFO_ITEM
|
* Class NETINFO_ITEM
|
||||||
* handles the data for a net
|
* handles the data for a net
|
||||||
*/
|
*/
|
||||||
class NETINFO_ITEM
|
class NETINFO_ITEM
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int m_NetCode; // this is a number equivalent to the net name
|
int m_NetCode; // this is a number equivalent to the net name
|
||||||
// Used for fast comparisons in ratsnest and DRC computations.
|
// Used for fast comparisons in ratsnest and DRC computations.
|
||||||
|
|
||||||
wxString m_Netname; // Full net name like /mysheet/mysubsheet/vout
|
wxString m_Netname; // Full net name like /mysheet/mysubsheet/vout
|
||||||
// used by eeschema
|
// used by eeschema
|
||||||
|
|
||||||
wxString m_ShortNetname; // short net name, like vout from
|
wxString m_ShortNetname; // short net name, like vout from
|
||||||
// /mysheet/mysubsheet/vout
|
// /mysheet/mysubsheet/vout
|
||||||
|
|
||||||
wxString m_NetClassName; // Net Class name. if void this is equivalent
|
wxString m_NetClassName; // Net Class name. if void this is equivalent
|
||||||
// to "default" (the first
|
// to "default" (the first
|
||||||
// item of the net classes list
|
// item of the net classes list
|
||||||
|
|
||||||
NETCLASS* m_NetClass;
|
NETCLASS* m_NetClass;
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
int m_NbNodes; // Pads count for this net
|
int m_NbNodes; // Pads count for this net
|
||||||
int m_NbLink; // Ratsnets count for this net
|
int m_NbLink; // Ratsnets count for this net
|
||||||
int m_NbNoconn; // Ratsnets remaining to route count
|
int m_NbNoconn; // Ratsnets remaining to route count
|
||||||
int m_Flag; // used in some calculations. Had no
|
int m_Flag; // used in some calculations. Had no
|
||||||
// special meaning
|
// special meaning
|
||||||
|
|
||||||
std::vector <D_PAD*> m_ListPad; // List of pads connected to this net
|
std::vector <D_PAD*> m_ListPad; // List of pads connected to this net
|
||||||
|
|
||||||
unsigned m_RatsnestStartIdx; /* Starting point of ratsnests of this
|
unsigned m_RatsnestStartIdx; /* Starting point of ratsnests of this
|
||||||
* net (included) in a general buffer of
|
* net (included) in a general buffer of
|
||||||
* ratsnest (a vector<RATSNEST_ITEM*>
|
* ratsnest (a vector<RATSNEST_ITEM*>
|
||||||
* buffer) */
|
* buffer) */
|
||||||
|
|
||||||
unsigned m_RatsnestEndIdx; // Ending point of ratsnests of this net
|
unsigned m_RatsnestEndIdx; // Ending point of ratsnests of this net
|
||||||
// (excluded) in this buffer
|
// (excluded) in this buffer
|
||||||
|
|
||||||
NETINFO_ITEM( BOARD_ITEM* aParent );
|
NETINFO_ITEM( BOARD_ITEM* aParent );
|
||||||
~NETINFO_ITEM();
|
~NETINFO_ITEM();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function SetClass
|
* Function SetClass
|
||||||
* sets \a aNetclass into this NET
|
* sets \a aNetclass into this NET
|
||||||
*/
|
*/
|
||||||
void SetClass( const NETCLASS* aNetClass )
|
void SetClass( const NETCLASS* aNetClass )
|
||||||
{
|
{
|
||||||
m_NetClass = (NETCLASS*) aNetClass;
|
m_NetClass = (NETCLASS*) aNetClass;
|
||||||
|
|
||||||
if( aNetClass )
|
if( aNetClass )
|
||||||
m_NetClassName = aNetClass->GetName();
|
m_NetClassName = aNetClass->GetName();
|
||||||
else
|
else
|
||||||
m_NetClassName = NETCLASS::Default;
|
m_NetClassName = NETCLASS::Default;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NETCLASS* GetNetClass()
|
NETCLASS* GetNetClass()
|
||||||
{
|
{
|
||||||
return m_NetClass;
|
return m_NetClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetClassName
|
* Function GetClassName
|
||||||
* returns the class name
|
* returns the class name
|
||||||
*/
|
*/
|
||||||
const wxString& GetClassName() const
|
const wxString& GetClassName() const
|
||||||
{
|
{
|
||||||
return m_NetClassName;
|
return m_NetClassName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetTrackWidth
|
* Function GetTrackWidth
|
||||||
* returns the width of tracks used to route this net.
|
* returns the width of tracks used to route this net.
|
||||||
*/
|
*/
|
||||||
int GetTrackWidth()
|
int GetTrackWidth()
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetTrackWidth();
|
return m_NetClass->GetTrackWidth();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetViaSize
|
* Function GetViaSize
|
||||||
* returns the size of vias used to route this net
|
* returns the size of vias used to route this net
|
||||||
*/
|
*/
|
||||||
int GetViaSize()
|
int GetViaSize()
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetViaDiameter();
|
return m_NetClass->GetViaDiameter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetMicroViaSize
|
* Function GetMicroViaSize
|
||||||
* returns the size of vias used to route this net
|
* returns the size of vias used to route this net
|
||||||
*/
|
*/
|
||||||
int GetMicroViaSize()
|
int GetMicroViaSize()
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetuViaDiameter();
|
return m_NetClass->GetuViaDiameter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetViaDrillSize
|
* Function GetViaDrillSize
|
||||||
* returns the size of via drills used to route this net
|
* returns the size of via drills used to route this net
|
||||||
*/
|
*/
|
||||||
int GetViaDrillSize()
|
int GetViaDrillSize()
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetViaDrill();
|
return m_NetClass->GetViaDrill();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetViaDrillSize
|
* Function GetViaDrillSize
|
||||||
* returns the size of via drills used to route this net
|
* returns the size of via drills used to route this net
|
||||||
*/
|
*/
|
||||||
int GetMicroViaDrillSize()
|
int GetMicroViaDrillSize()
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetuViaDrill();
|
return m_NetClass->GetuViaDrill();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetViaMinSize
|
* Function GetViaMinSize
|
||||||
* returns the Minimum value for via sizes (used in DRC)
|
* returns the Minimum value for via sizes (used in DRC)
|
||||||
*/
|
*/
|
||||||
int GetViaMinSize()
|
int GetViaMinSize()
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetViaMinSize();
|
return m_NetClass->GetViaMinSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetClearance
|
* Function GetClearance
|
||||||
* returns the clearance when routing near aBoardItem
|
* returns the clearance when routing near aBoardItem
|
||||||
*/
|
*/
|
||||||
int GetClearance( BOARD_ITEM* aBoardItem )
|
int GetClearance( BOARD_ITEM* aBoardItem )
|
||||||
{
|
{
|
||||||
wxASSERT( m_NetClass );
|
wxASSERT( m_NetClass );
|
||||||
return m_NetClass->GetClearance();
|
return m_NetClass->GetClearance();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Reading and writing data on files */
|
/* Reading and writing data on files */
|
||||||
int ReadDescr( LINE_READER* aReader );
|
int ReadDescr( LINE_READER* aReader );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function Save
|
* Function Save
|
||||||
* writes the data structures for this object out to a FILE in "*.brd"
|
* writes the data structures for this object out to a FILE in "*.brd"
|
||||||
* format.
|
* format.
|
||||||
* @param aFile The FILE to write to.
|
* @param aFile The FILE to write to.
|
||||||
* @return bool - true if success writing else false.
|
* @return bool - true if success writing else false.
|
||||||
*/
|
*/
|
||||||
bool Save( FILE* aFile ) const;
|
bool Save( FILE* aFile ) const;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function Draw
|
* Function Draw
|
||||||
* @todo we actually could show a NET, simply show all the tracks and
|
* @todo we actually could show a NET, simply show all the tracks and
|
||||||
* a pads or net name on pad and vias
|
* a pads or net name on pad and vias
|
||||||
*/
|
*/
|
||||||
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int aDrawMode, const wxPoint& offset );
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, int aDrawMode, const wxPoint& offset );
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetNet
|
* Function GetNet
|
||||||
* @return int - the netcode
|
* @return int - the netcode
|
||||||
*/
|
*/
|
||||||
int GetNet() const { return m_NetCode; }
|
int GetNet() const { return m_NetCode; }
|
||||||
|
|
||||||
void SetNet( int aNetCode ) { m_NetCode = aNetCode; }
|
void SetNet( int aNetCode ) { m_NetCode = aNetCode; }
|
||||||
|
|
||||||
int GetNodesCount() const { return m_ListPad.size(); }
|
int GetNodesCount() const { return m_ListPad.size(); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetNetname
|
* Function GetNetname
|
||||||
* @return const wxString * , a pointer to the full netname
|
* @return const wxString * , a pointer to the full netname
|
||||||
*/
|
*/
|
||||||
wxString GetNetname() const { return m_Netname; }
|
wxString GetNetname() const { return m_Netname; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function GetShortNetname
|
* Function GetShortNetname
|
||||||
* @return const wxString * , a pointer to the short netname
|
* @return const wxString * , a pointer to the short netname
|
||||||
*/
|
*/
|
||||||
wxString GetShortNetname() const { return m_ShortNetname; }
|
wxString GetShortNetname() const { return m_ShortNetname; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function SetNetname
|
* Function SetNetname
|
||||||
* @param aNetname : the new netname
|
* @param aNetname : the new netname
|
||||||
*/
|
*/
|
||||||
void SetNetname( const wxString& aNetname );
|
void SetNetname( const wxString& aNetname );
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function DisplayInfo
|
* Function DisplayInfo
|
||||||
* has knowledge about the frame and how and where to put status information
|
* has knowledge about the frame and how and where to put status information
|
||||||
* about this object into the frame's message panel.
|
* about this object into the frame's message panel.
|
||||||
* Is virtual from EDA_ITEM.
|
* Is virtual from EDA_ITEM.
|
||||||
* @param frame A EDA_DRAW_FRAME in which to print status information.
|
* @param frame A EDA_DRAW_FRAME in which to print status information.
|
||||||
*/
|
*/
|
||||||
void DisplayInfo( EDA_DRAW_FRAME* frame );
|
void DisplayInfo( EDA_DRAW_FRAME* frame );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
/* Description of a trace point for monitoring connections */
|
/* Description of a trace point for monitoring connections */
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
#define START_ON_PAD 0x10
|
#define START_ON_PAD 0x10
|
||||||
#define END_ON_PAD 0x20
|
#define END_ON_PAD 0x20
|
||||||
#define START_ON_TRACK 0x40
|
#define START_ON_TRACK 0x40
|
||||||
#define END_ON_TRACK 0x80
|
#define END_ON_TRACK 0x80
|
||||||
|
|
||||||
|
|
||||||
/* Status bit (OR'ed bits) for class BOARD member .m_Status_Pcb */
|
/* Status bit (OR'ed bits) for class BOARD member .m_Status_Pcb */
|
||||||
enum StatusPcbFlags {
|
enum StatusPcbFlags {
|
||||||
LISTE_PAD_OK = 1, /* Pad list is Ok */
|
LISTE_PAD_OK = 1, /* Pad list is Ok */
|
||||||
LISTE_RATSNEST_ITEM_OK = 2, /* General Ratsnest is Ok */
|
LISTE_RATSNEST_ITEM_OK = 2, /* General Ratsnest is Ok */
|
||||||
RATSNEST_ITEM_LOCAL_OK = 4, /* current MODULE ratsnest is Ok */
|
RATSNEST_ITEM_LOCAL_OK = 4, /* current MODULE ratsnest is Ok */
|
||||||
CONNEXION_OK = 8, /* List of connections exists. */
|
CONNEXION_OK = 8, /* List of connections exists. */
|
||||||
NET_CODES_OK = 0x10, /* Bit indicating that Netcode is OK,
|
NET_CODES_OK = 0x10, /* Bit indicating that Netcode is OK,
|
||||||
* do not change net name. */
|
* do not change net name. */
|
||||||
DO_NOT_SHOW_GENERAL_RASTNEST = 0x20 /* Do not display the general
|
DO_NOT_SHOW_GENERAL_RASTNEST = 0x20 /* Do not display the general
|
||||||
* ratsnest (used in module moves) */
|
* ratsnest (used in module moves) */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // __CLASSES_NETINFO__
|
#endif // __CLASSES_NETINFO__
|
||||||
|
|
|
@ -1,373 +1,373 @@
|
||||||
/*
|
/*
|
||||||
* This program source code file is part of KICAD, a free EDA CAD application.
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gpisa-lab.inpg.fr
|
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gpisa-lab.inpg.fr
|
||||||
* Copyright (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
* Copyright (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||||
* Copyright (C) 2010 Kicad Developers, see change_log.txt for contributors.
|
* Copyright (C) 2010 Kicad Developers, see change_log.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
* as published by the Free Software Foundation; either version 2
|
* as published by the Free Software Foundation; either version 2
|
||||||
* of the License, or (at your option) any later version.
|
* of the License, or (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, you may find one here:
|
* along with this program; if not, you may find one here:
|
||||||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
* 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 search the http://www.gnu.org website for the version 2 license,
|
||||||
* or you may write to the Free Software Foundation, Inc.,
|
* or you may write to the Free Software Foundation, Inc.,
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/******************************************************/
|
/******************************************************/
|
||||||
/* class_pcb_layer_widget.cpp - Pcbnew layers manager */
|
/* class_pcb_layer_widget.cpp - Pcbnew layers manager */
|
||||||
/******************************************************/
|
/******************************************************/
|
||||||
|
|
||||||
#include "fctsys.h"
|
#include "fctsys.h"
|
||||||
#include "appl_wxstruct.h"
|
#include "appl_wxstruct.h"
|
||||||
#include "class_drawpanel.h"
|
#include "class_drawpanel.h"
|
||||||
#include "confirm.h"
|
#include "confirm.h"
|
||||||
#include "wxPcbStruct.h"
|
#include "wxPcbStruct.h"
|
||||||
#include "pcbstruct.h" // enum PCB_VISIBLE
|
#include "pcbstruct.h" // enum PCB_VISIBLE
|
||||||
#include "layer_widget.h"
|
#include "layer_widget.h"
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
#include "pcbcommon.h"
|
#include "pcbcommon.h"
|
||||||
|
|
||||||
#include "class_board.h"
|
#include "class_board.h"
|
||||||
#include "class_pcb_layer_widget.h"
|
#include "class_pcb_layer_widget.h"
|
||||||
|
|
||||||
#include "pcbnew.h"
|
#include "pcbnew.h"
|
||||||
#include "collectors.h"
|
#include "collectors.h"
|
||||||
#include "pcbnew_id.h"
|
#include "pcbnew_id.h"
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class PCB_LAYER_WIDGET
|
* Class PCB_LAYER_WIDGET
|
||||||
* is here to implement the abtract functions of LAYER_WIDGET so they
|
* is here to implement the abtract functions of LAYER_WIDGET so they
|
||||||
* may be tied into the PCB_EDIT_FRAME's data and so we can add a popup
|
* may be tied into the PCB_EDIT_FRAME's data and so we can add a popup
|
||||||
* menu which is specific to PCBNEW's needs.
|
* menu which is specific to PCBNEW's needs.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
PCB_LAYER_WIDGET::PCB_LAYER_WIDGET( PCB_EDIT_FRAME* aParent, wxWindow* aFocusOwner, int aPointSize ) :
|
PCB_LAYER_WIDGET::PCB_LAYER_WIDGET( PCB_EDIT_FRAME* aParent, wxWindow* aFocusOwner, int aPointSize ) :
|
||||||
LAYER_WIDGET( aParent, aFocusOwner, aPointSize ),
|
LAYER_WIDGET( aParent, aFocusOwner, aPointSize ),
|
||||||
myframe( aParent )
|
myframe( aParent )
|
||||||
{
|
{
|
||||||
ReFillRender();
|
ReFillRender();
|
||||||
|
|
||||||
// Update default tabs labels for gerbview
|
// Update default tabs labels for gerbview
|
||||||
SetLayersManagerTabsText( );
|
SetLayersManagerTabsText( );
|
||||||
|
|
||||||
//-----<Popup menu>-------------------------------------------------
|
//-----<Popup menu>-------------------------------------------------
|
||||||
// handle the popup menu over the layer window.
|
// handle the popup menu over the layer window.
|
||||||
m_LayerScrolledWindow->Connect( wxEVT_RIGHT_DOWN,
|
m_LayerScrolledWindow->Connect( wxEVT_RIGHT_DOWN,
|
||||||
wxMouseEventHandler( PCB_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
wxMouseEventHandler( PCB_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
||||||
|
|
||||||
// since Popupmenu() calls this->ProcessEvent() we must call this->Connect()
|
// since Popupmenu() calls this->ProcessEvent() we must call this->Connect()
|
||||||
// and not m_LayerScrolledWindow->Connect()
|
// and not m_LayerScrolledWindow->Connect()
|
||||||
Connect( ID_SHOW_ALL_COPPERS, ID_SHOW_NO_COPPERS, wxEVT_COMMAND_MENU_SELECTED,
|
Connect( ID_SHOW_ALL_COPPERS, ID_SHOW_NO_COPPERS, wxEVT_COMMAND_MENU_SELECTED,
|
||||||
wxCommandEventHandler( PCB_LAYER_WIDGET::onPopupSelection ), NULL, this );
|
wxCommandEventHandler( PCB_LAYER_WIDGET::onPopupSelection ), NULL, this );
|
||||||
|
|
||||||
// install the right click handler into each control at end of ReFill()
|
// install the right click handler into each control at end of ReFill()
|
||||||
// using installRightLayerClickHandler
|
// using installRightLayerClickHandler
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::installRightLayerClickHandler()
|
void PCB_LAYER_WIDGET::installRightLayerClickHandler()
|
||||||
{
|
{
|
||||||
int rowCount = GetLayerRowCount();
|
int rowCount = GetLayerRowCount();
|
||||||
for( int row=0; row<rowCount; ++row )
|
for( int row=0; row<rowCount; ++row )
|
||||||
{
|
{
|
||||||
for( int col=0; col<LYR_COLUMN_COUNT; ++col )
|
for( int col=0; col<LYR_COLUMN_COUNT; ++col )
|
||||||
{
|
{
|
||||||
wxWindow* w = getLayerComp( row, col );
|
wxWindow* w = getLayerComp( row, col );
|
||||||
|
|
||||||
w->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler(
|
w->Connect( wxEVT_RIGHT_DOWN, wxMouseEventHandler(
|
||||||
PCB_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
PCB_LAYER_WIDGET::onRightDownLayers ), NULL, this );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::onRightDownLayers( wxMouseEvent& event )
|
void PCB_LAYER_WIDGET::onRightDownLayers( wxMouseEvent& event )
|
||||||
{
|
{
|
||||||
wxMenu menu;
|
wxMenu menu;
|
||||||
|
|
||||||
// menu text is capitalized:
|
// menu text is capitalized:
|
||||||
// http://library.gnome.org/devel/hig-book/2.20/design-text-labels.html.en#layout-capitalization
|
// http://library.gnome.org/devel/hig-book/2.20/design-text-labels.html.en#layout-capitalization
|
||||||
menu.Append( new wxMenuItem( &menu, ID_SHOW_ALL_COPPERS,
|
menu.Append( new wxMenuItem( &menu, ID_SHOW_ALL_COPPERS,
|
||||||
_("Show All Copper Layers") ) );
|
_("Show All Copper Layers") ) );
|
||||||
|
|
||||||
menu.Append( new wxMenuItem( &menu, ID_SHOW_NO_COPPERS,
|
menu.Append( new wxMenuItem( &menu, ID_SHOW_NO_COPPERS,
|
||||||
_( "Hide All Copper Layers" ) ) );
|
_( "Hide All Copper Layers" ) ) );
|
||||||
|
|
||||||
PopupMenu( &menu );
|
PopupMenu( &menu );
|
||||||
|
|
||||||
passOnFocus();
|
passOnFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event )
|
void PCB_LAYER_WIDGET::onPopupSelection( wxCommandEvent& event )
|
||||||
{
|
{
|
||||||
int rowCount;
|
int rowCount;
|
||||||
int menuId = event.GetId();
|
int menuId = event.GetId();
|
||||||
bool visible;
|
bool visible;
|
||||||
|
|
||||||
switch( menuId )
|
switch( menuId )
|
||||||
{
|
{
|
||||||
case ID_SHOW_ALL_COPPERS:
|
case ID_SHOW_ALL_COPPERS:
|
||||||
visible = true;
|
visible = true;
|
||||||
goto L_change_coppers;
|
goto L_change_coppers;
|
||||||
|
|
||||||
case ID_SHOW_NO_COPPERS:
|
case ID_SHOW_NO_COPPERS:
|
||||||
visible = false;
|
visible = false;
|
||||||
L_change_coppers:
|
L_change_coppers:
|
||||||
int lastCu = -1;
|
int lastCu = -1;
|
||||||
rowCount = GetLayerRowCount();
|
rowCount = GetLayerRowCount();
|
||||||
for( int row=rowCount-1; row>=0; --row )
|
for( int row=rowCount-1; row>=0; --row )
|
||||||
{
|
{
|
||||||
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
|
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
|
||||||
int layer = getDecodedId( cb->GetId() );
|
int layer = getDecodedId( cb->GetId() );
|
||||||
if( IsValidCopperLayerIndex( layer ) )
|
if( IsValidCopperLayerIndex( layer ) )
|
||||||
{
|
{
|
||||||
lastCu = row;
|
lastCu = row;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for( int row=0; row<rowCount; ++row )
|
for( int row=0; row<rowCount; ++row )
|
||||||
{
|
{
|
||||||
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
|
wxCheckBox* cb = (wxCheckBox*) getLayerComp( row, 3 );
|
||||||
int layer = getDecodedId( cb->GetId() );
|
int layer = getDecodedId( cb->GetId() );
|
||||||
|
|
||||||
if( IsValidCopperLayerIndex( layer ) )
|
if( IsValidCopperLayerIndex( layer ) )
|
||||||
{
|
{
|
||||||
cb->SetValue( visible );
|
cb->SetValue( visible );
|
||||||
|
|
||||||
bool isLastCopperLayer = (row==lastCu);
|
bool isLastCopperLayer = (row==lastCu);
|
||||||
|
|
||||||
OnLayerVisible( layer, visible, isLastCopperLayer );
|
OnLayerVisible( layer, visible, isLastCopperLayer );
|
||||||
|
|
||||||
if( isLastCopperLayer )
|
if( isLastCopperLayer )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function SetLayersManagerTabsText
|
* Function SetLayersManagerTabsText
|
||||||
* Update the layer manager tabs labels
|
* Update the layer manager tabs labels
|
||||||
* Useful when changing Language or to set labels to a non default value
|
* Useful when changing Language or to set labels to a non default value
|
||||||
*/
|
*/
|
||||||
void PCB_LAYER_WIDGET::SetLayersManagerTabsText( )
|
void PCB_LAYER_WIDGET::SetLayersManagerTabsText( )
|
||||||
{
|
{
|
||||||
m_notebook->SetPageText(0, _("Layer") );
|
m_notebook->SetPageText(0, _("Layer") );
|
||||||
m_notebook->SetPageText(1, _("Render") );
|
m_notebook->SetPageText(1, _("Render") );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function ReFillRender
|
* Function ReFillRender
|
||||||
* Rebuild Render for instance after the config is read
|
* Rebuild Render for instance after the config is read
|
||||||
*/
|
*/
|
||||||
void PCB_LAYER_WIDGET::ReFillRender()
|
void PCB_LAYER_WIDGET::ReFillRender()
|
||||||
{
|
{
|
||||||
BOARD* board = myframe->GetBoard();
|
BOARD* board = myframe->GetBoard();
|
||||||
ClearRenderRows();
|
ClearRenderRows();
|
||||||
// Fixed "Rendering" tab rows within the LAYER_WIDGET, only the initial color
|
// Fixed "Rendering" tab rows within the LAYER_WIDGET, only the initial color
|
||||||
// is changed before appending to the LAYER_WIDGET. This is an automatic variable
|
// is changed before appending to the LAYER_WIDGET. This is an automatic variable
|
||||||
// not a static variable, change the color & state after copying from code to renderRows
|
// not a static variable, change the color & state after copying from code to renderRows
|
||||||
// on the stack.
|
// on the stack.
|
||||||
LAYER_WIDGET::ROW renderRows[16] = {
|
LAYER_WIDGET::ROW renderRows[16] = {
|
||||||
|
|
||||||
#define RR LAYER_WIDGET::ROW // Render Row abreviation to reduce source width
|
#define RR LAYER_WIDGET::ROW // Render Row abreviation to reduce source width
|
||||||
|
|
||||||
// text id color tooltip checked
|
// text id color tooltip checked
|
||||||
RR( _( "Through Via" ), VIA_THROUGH_VISIBLE, WHITE, _( "Show through vias" ) ),
|
RR( _( "Through Via" ), VIA_THROUGH_VISIBLE, WHITE, _( "Show through vias" ) ),
|
||||||
RR( _( "Bl/Buried Via" ), VIA_BBLIND_VISIBLE, WHITE, _( "Show blind or buried vias" ) ),
|
RR( _( "Bl/Buried Via" ), VIA_BBLIND_VISIBLE, WHITE, _( "Show blind or buried vias" ) ),
|
||||||
RR( _( "Micro Via" ), VIA_MICROVIA_VISIBLE, WHITE, _( "Show micro vias") ),
|
RR( _( "Micro Via" ), VIA_MICROVIA_VISIBLE, WHITE, _( "Show micro vias") ),
|
||||||
RR( _( "Ratsnest" ), RATSNEST_VISIBLE, WHITE, _( "Show unconnected nets as a ratsnest") ),
|
RR( _( "Ratsnest" ), RATSNEST_VISIBLE, WHITE, _( "Show unconnected nets as a ratsnest") ),
|
||||||
|
|
||||||
RR( _( "Pads Front" ), PAD_FR_VISIBLE, WHITE, _( "Show footprint pads on board's front" ) ),
|
RR( _( "Pads Front" ), PAD_FR_VISIBLE, WHITE, _( "Show footprint pads on board's front" ) ),
|
||||||
RR( _( "Pads Back" ), PAD_BK_VISIBLE, WHITE, _( "Show footprint pads on board's back" ) ),
|
RR( _( "Pads Back" ), PAD_BK_VISIBLE, WHITE, _( "Show footprint pads on board's back" ) ),
|
||||||
|
|
||||||
RR( _( "Text Front" ), MOD_TEXT_FR_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
|
RR( _( "Text Front" ), MOD_TEXT_FR_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
|
||||||
RR( _( "Text Back" ), MOD_TEXT_BK_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
|
RR( _( "Text Back" ), MOD_TEXT_BK_VISIBLE, WHITE, _( "Show footprint text on board's back" ) ),
|
||||||
RR( _( "Hidden Text" ), MOD_TEXT_INVISIBLE, WHITE, _( "Show footprint text marked as invisible" ) ),
|
RR( _( "Hidden Text" ), MOD_TEXT_INVISIBLE, WHITE, _( "Show footprint text marked as invisible" ) ),
|
||||||
|
|
||||||
RR( _( "Anchors" ), ANCHOR_VISIBLE, WHITE, _( "Show footprint and text origins as a cross" ) ),
|
RR( _( "Anchors" ), ANCHOR_VISIBLE, WHITE, _( "Show footprint and text origins as a cross" ) ),
|
||||||
RR( _( "Grid" ), GRID_VISIBLE, WHITE, _( "Show the (x,y) grid dots" ) ),
|
RR( _( "Grid" ), GRID_VISIBLE, WHITE, _( "Show the (x,y) grid dots" ) ),
|
||||||
RR( _( "No-Connects" ), NO_CONNECTS_VISIBLE, -1, _( "Show a marker on pads which have no net connected" ) ),
|
RR( _( "No-Connects" ), NO_CONNECTS_VISIBLE, -1, _( "Show a marker on pads which have no net connected" ) ),
|
||||||
RR( _( "Modules Front" ), MOD_FR_VISIBLE, -1, _( "Show footprints that are on board's front") ),
|
RR( _( "Modules Front" ), MOD_FR_VISIBLE, -1, _( "Show footprints that are on board's front") ),
|
||||||
RR( _( "Modules Back" ), MOD_BK_VISIBLE, -1, _( "Show footprints that are on board's back") ),
|
RR( _( "Modules Back" ), MOD_BK_VISIBLE, -1, _( "Show footprints that are on board's back") ),
|
||||||
RR( _( "Values" ), MOD_VALUES_VISIBLE, -1, _( "Show footprint's values") ),
|
RR( _( "Values" ), MOD_VALUES_VISIBLE, -1, _( "Show footprint's values") ),
|
||||||
RR( _( "References" ), MOD_REFERENCES_VISIBLE, -1, _( "Show footprint's references") ),
|
RR( _( "References" ), MOD_REFERENCES_VISIBLE, -1, _( "Show footprint's references") ),
|
||||||
};
|
};
|
||||||
|
|
||||||
for( unsigned row=0; row<DIM(renderRows); ++row )
|
for( unsigned row=0; row<DIM(renderRows); ++row )
|
||||||
{
|
{
|
||||||
if( renderRows[row].color != -1 ) // does this row show a color?
|
if( renderRows[row].color != -1 ) // does this row show a color?
|
||||||
{
|
{
|
||||||
// this window frame must have an established BOARD, i.e. after SetBoard()
|
// this window frame must have an established BOARD, i.e. after SetBoard()
|
||||||
renderRows[row].color = board->GetVisibleElementColor( renderRows[row].id );
|
renderRows[row].color = board->GetVisibleElementColor( renderRows[row].id );
|
||||||
}
|
}
|
||||||
renderRows[row].state = board->IsElementVisible( renderRows[row].id );
|
renderRows[row].state = board->IsElementVisible( renderRows[row].id );
|
||||||
}
|
}
|
||||||
|
|
||||||
AppendRenderRows( renderRows, DIM(renderRows) );
|
AppendRenderRows( renderRows, DIM(renderRows) );
|
||||||
}
|
}
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::ReFill()
|
void PCB_LAYER_WIDGET::ReFill()
|
||||||
{
|
{
|
||||||
BOARD* brd = myframe->GetBoard();
|
BOARD* brd = myframe->GetBoard();
|
||||||
int layer;
|
int layer;
|
||||||
|
|
||||||
int enabledLayers = brd->GetEnabledLayers();
|
int enabledLayers = brd->GetEnabledLayers();
|
||||||
|
|
||||||
// m_Layers->Freeze(); // no screen updates until done modifying
|
// m_Layers->Freeze(); // no screen updates until done modifying
|
||||||
|
|
||||||
ClearLayerRows();
|
ClearLayerRows();
|
||||||
|
|
||||||
// show all coppers first, with front on top, back on bottom, then technical layers
|
// show all coppers first, with front on top, back on bottom, then technical layers
|
||||||
|
|
||||||
layer = LAYER_N_FRONT;
|
layer = LAYER_N_FRONT;
|
||||||
if( enabledLayers & (1 << layer) )
|
if( enabledLayers & (1 << layer) )
|
||||||
{
|
{
|
||||||
AppendLayerRow( LAYER_WIDGET::ROW(
|
AppendLayerRow( LAYER_WIDGET::ROW(
|
||||||
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ), _("Front copper layer"), true ) );
|
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ), _("Front copper layer"), true ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
for( layer = LAYER_N_FRONT-1; layer >= 1; --layer )
|
for( layer = LAYER_N_FRONT-1; layer >= 1; --layer )
|
||||||
{
|
{
|
||||||
if( enabledLayers & (1 << layer) )
|
if( enabledLayers & (1 << layer) )
|
||||||
{
|
{
|
||||||
AppendLayerRow( LAYER_WIDGET::ROW(
|
AppendLayerRow( LAYER_WIDGET::ROW(
|
||||||
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ), _("An innner copper layer"), true ) );
|
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ), _("An innner copper layer"), true ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
layer = LAYER_N_BACK;
|
layer = LAYER_N_BACK;
|
||||||
if( enabledLayers & (1 << layer) )
|
if( enabledLayers & (1 << layer) )
|
||||||
{
|
{
|
||||||
AppendLayerRow( LAYER_WIDGET::ROW(
|
AppendLayerRow( LAYER_WIDGET::ROW(
|
||||||
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ), _("Back copper layer"), true ) );
|
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ), _("Back copper layer"), true ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// technical layers are shown in this order:
|
// technical layers are shown in this order:
|
||||||
static const struct {
|
static const struct {
|
||||||
int layerId;
|
int layerId;
|
||||||
wxString tooltip;
|
wxString tooltip;
|
||||||
} techLayerSeq[] = {
|
} techLayerSeq[] = {
|
||||||
{ ADHESIVE_N_FRONT, _( "Adhesive on board's front" ) },
|
{ ADHESIVE_N_FRONT, _( "Adhesive on board's front" ) },
|
||||||
{ ADHESIVE_N_BACK, _( "Adhesive on board's back" ) },
|
{ ADHESIVE_N_BACK, _( "Adhesive on board's back" ) },
|
||||||
{ SOLDERPASTE_N_FRONT, _( "Solder paste on board's front" )},
|
{ SOLDERPASTE_N_FRONT, _( "Solder paste on board's front" )},
|
||||||
{ SOLDERPASTE_N_BACK, _( "Solder paste on board's back" ) },
|
{ SOLDERPASTE_N_BACK, _( "Solder paste on board's back" ) },
|
||||||
{ SILKSCREEN_N_FRONT, _( "Silkscreen on board's front" ) },
|
{ SILKSCREEN_N_FRONT, _( "Silkscreen on board's front" ) },
|
||||||
{ SILKSCREEN_N_BACK, _( "Silkscreen on board's back" ) },
|
{ SILKSCREEN_N_BACK, _( "Silkscreen on board's back" ) },
|
||||||
{ SOLDERMASK_N_FRONT, _( "Solder mask on board's front" ) },
|
{ SOLDERMASK_N_FRONT, _( "Solder mask on board's front" ) },
|
||||||
{ SOLDERMASK_N_BACK, _( "Solder mask on board's back" ) },
|
{ SOLDERMASK_N_BACK, _( "Solder mask on board's back" ) },
|
||||||
{ DRAW_N, _( "Explanatory drawings" ) },
|
{ DRAW_N, _( "Explanatory drawings" ) },
|
||||||
{ COMMENT_N, _( "Explanatory comments" ) },
|
{ COMMENT_N, _( "Explanatory comments" ) },
|
||||||
{ ECO1_N, _( "TDB" ) },
|
{ ECO1_N, _( "TDB" ) },
|
||||||
{ ECO2_N, _( "TBD" ) },
|
{ ECO2_N, _( "TBD" ) },
|
||||||
{ EDGE_N, _( "Board's perimeter definition" ) },
|
{ EDGE_N, _( "Board's perimeter definition" ) },
|
||||||
};
|
};
|
||||||
|
|
||||||
for( unsigned i=0; i<DIM(techLayerSeq); ++i )
|
for( unsigned i=0; i<DIM(techLayerSeq); ++i )
|
||||||
{
|
{
|
||||||
layer = techLayerSeq[i].layerId;
|
layer = techLayerSeq[i].layerId;
|
||||||
|
|
||||||
if( !(enabledLayers & (1 << layer)) )
|
if( !(enabledLayers & (1 << layer)) )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
AppendLayerRow( LAYER_WIDGET::ROW(
|
AppendLayerRow( LAYER_WIDGET::ROW(
|
||||||
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ),
|
brd->GetLayerName( layer ), layer, brd->GetLayerColor( layer ),
|
||||||
techLayerSeq[i].tooltip, true ) );
|
techLayerSeq[i].tooltip, true ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
installRightLayerClickHandler();
|
installRightLayerClickHandler();
|
||||||
|
|
||||||
// m_Layers->Thaw();
|
// m_Layers->Thaw();
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----<LAYER_WIDGET callbacks>-------------------------------------------
|
//-----<LAYER_WIDGET callbacks>-------------------------------------------
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::OnLayerColorChange( int aLayer, int aColor )
|
void PCB_LAYER_WIDGET::OnLayerColorChange( int aLayer, int aColor )
|
||||||
{
|
{
|
||||||
myframe->GetBoard()->SetLayerColor( aLayer, aColor );
|
myframe->GetBoard()->SetLayerColor( aLayer, aColor );
|
||||||
myframe->ReCreateLayerBox( NULL );
|
myframe->ReCreateLayerBox( NULL );
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PCB_LAYER_WIDGET::OnLayerSelect( int aLayer )
|
bool PCB_LAYER_WIDGET::OnLayerSelect( int aLayer )
|
||||||
{
|
{
|
||||||
// the layer change from the PCB_LAYER_WIDGET can be denied by returning
|
// the layer change from the PCB_LAYER_WIDGET can be denied by returning
|
||||||
// false from this function.
|
// false from this function.
|
||||||
myframe->setActiveLayer( aLayer, false );
|
myframe->setActiveLayer( aLayer, false );
|
||||||
|
|
||||||
if(DisplayOpt.ContrastModeDisplay)
|
if(DisplayOpt.ContrastModeDisplay)
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::OnLayerVisible( int aLayer, bool isVisible, bool isFinal )
|
void PCB_LAYER_WIDGET::OnLayerVisible( int aLayer, bool isVisible, bool isFinal )
|
||||||
{
|
{
|
||||||
BOARD* brd = myframe->GetBoard();
|
BOARD* brd = myframe->GetBoard();
|
||||||
|
|
||||||
int visibleLayers = brd->GetVisibleLayers();
|
int visibleLayers = brd->GetVisibleLayers();
|
||||||
|
|
||||||
if( isVisible )
|
if( isVisible )
|
||||||
visibleLayers |= (1 << aLayer);
|
visibleLayers |= (1 << aLayer);
|
||||||
else
|
else
|
||||||
visibleLayers &= ~(1 << aLayer);
|
visibleLayers &= ~(1 << aLayer);
|
||||||
|
|
||||||
brd->SetVisibleLayers( visibleLayers );
|
brd->SetVisibleLayers( visibleLayers );
|
||||||
|
|
||||||
if( isFinal )
|
if( isFinal )
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::OnRenderColorChange( int aId, int aColor )
|
void PCB_LAYER_WIDGET::OnRenderColorChange( int aId, int aColor )
|
||||||
{
|
{
|
||||||
myframe->GetBoard()->SetVisibleElementColor( aId, aColor );
|
myframe->GetBoard()->SetVisibleElementColor( aId, aColor );
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
void PCB_LAYER_WIDGET::OnRenderEnable( int aId, bool isEnabled )
|
void PCB_LAYER_WIDGET::OnRenderEnable( int aId, bool isEnabled )
|
||||||
{
|
{
|
||||||
BOARD* brd = myframe->GetBoard();
|
BOARD* brd = myframe->GetBoard();
|
||||||
|
|
||||||
/* @todo:
|
/* @todo:
|
||||||
|
|
||||||
move:
|
move:
|
||||||
|
|
||||||
GRID_VISIBLE, ? maybe not this one
|
GRID_VISIBLE, ? maybe not this one
|
||||||
into m_VisibleElements and get rid of globals.
|
into m_VisibleElements and get rid of globals.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
switch( aId )
|
switch( aId )
|
||||||
{
|
{
|
||||||
// see todo above, don't really want anything except IsElementVisible() here.
|
// see todo above, don't really want anything except IsElementVisible() here.
|
||||||
|
|
||||||
case GRID_VISIBLE:
|
case GRID_VISIBLE:
|
||||||
// @todo, make read/write accessors for grid control so the write accessor can fire updates to
|
// @todo, make read/write accessors for grid control so the write accessor can fire updates to
|
||||||
// grid state listeners. I think the grid state should be kept in the BOARD.
|
// grid state listeners. I think the grid state should be kept in the BOARD.
|
||||||
brd->SetElementVisibility( aId, isEnabled ); // set visibilty flag also in list, and myframe->m_Draw_Grid
|
brd->SetElementVisibility( aId, isEnabled ); // set visibilty flag also in list, and myframe->m_Draw_Grid
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
brd->SetElementVisibility( aId, isEnabled );
|
brd->SetElementVisibility( aId, isEnabled );
|
||||||
}
|
}
|
||||||
|
|
||||||
myframe->DrawPanel->Refresh();
|
myframe->DrawPanel->Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
//-----</LAYER_WIDGET callbacks>------------------------------------------
|
//-----</LAYER_WIDGET callbacks>------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,175 +1,175 @@
|
||||||
/*
|
/*
|
||||||
* drc_marker_functions.cpp
|
* drc_marker_functions.cpp
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* This program source code file is part of KICAD, a free EDA CAD application.
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010 Dick Hollenbeck, dick@softplc.com
|
* Copyright (C) 2010 Dick Hollenbeck, dick@softplc.com
|
||||||
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.fr
|
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.fr
|
||||||
* Copyright (C) 2007 Kicad Developers, see change_log.txt for contributors.
|
* Copyright (C) 2007 Kicad Developers, see change_log.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
* as published by the Free Software Foundation; either version 2
|
* as published by the Free Software Foundation; either version 2
|
||||||
* of the License, or (at your option) any later version.
|
* of the License, or (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, you may find one here:
|
* along with this program; if not, you may find one here:
|
||||||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
* 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 search the http://www.gnu.org website for the version 2 license,
|
||||||
* or you may write to the Free Software Foundation, Inc.,
|
* or you may write to the Free Software Foundation, Inc.,
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/* Methods of class DRC to initialize drc markers with messages
|
/* Methods of class DRC to initialize drc markers with messages
|
||||||
* according to items and error ode
|
* according to items and error ode
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fctsys.h"
|
#include "fctsys.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "pcbnew.h"
|
#include "pcbnew.h"
|
||||||
#include "class_board_design_settings.h"
|
#include "class_board_design_settings.h"
|
||||||
|
|
||||||
#include "drc_stuff.h"
|
#include "drc_stuff.h"
|
||||||
#include "class_pad.h"
|
#include "class_pad.h"
|
||||||
#include "class_track.h"
|
#include "class_track.h"
|
||||||
#include "class_zone.h"
|
#include "class_zone.h"
|
||||||
#include "class_marker_pcb.h"
|
#include "class_marker_pcb.h"
|
||||||
|
|
||||||
|
|
||||||
MARKER_PCB* DRC::fillMarker( TRACK* aTrack, BOARD_ITEM* aItem, int aErrorCode, MARKER_PCB* fillMe )
|
MARKER_PCB* DRC::fillMarker( TRACK* aTrack, BOARD_ITEM* aItem, int aErrorCode, MARKER_PCB* fillMe )
|
||||||
{
|
{
|
||||||
wxString textA = aTrack->GetSelectMenuText();
|
wxString textA = aTrack->GetSelectMenuText();
|
||||||
wxString textB;
|
wxString textB;
|
||||||
|
|
||||||
wxPoint position;
|
wxPoint position;
|
||||||
wxPoint posB;
|
wxPoint posB;
|
||||||
|
|
||||||
if( aItem ) // aItem might be NULL
|
if( aItem ) // aItem might be NULL
|
||||||
{
|
{
|
||||||
textB = aItem->GetSelectMenuText();
|
textB = aItem->GetSelectMenuText();
|
||||||
posB = aItem->GetPosition();
|
posB = aItem->GetPosition();
|
||||||
|
|
||||||
if( aItem->Type() == TYPE_PAD )
|
if( aItem->Type() == TYPE_PAD )
|
||||||
position = aItem->GetPosition();
|
position = aItem->GetPosition();
|
||||||
|
|
||||||
else if( aItem->Type() == TYPE_VIA )
|
else if( aItem->Type() == TYPE_VIA )
|
||||||
position = aItem->GetPosition();
|
position = aItem->GetPosition();
|
||||||
|
|
||||||
else if( aItem->Type() == TYPE_TRACK )
|
else if( aItem->Type() == TYPE_TRACK )
|
||||||
{
|
{
|
||||||
TRACK* track = (TRACK*) aItem;
|
TRACK* track = (TRACK*) aItem;
|
||||||
wxPoint endPos = track->m_End;
|
wxPoint endPos = track->m_End;
|
||||||
|
|
||||||
// either of aItem's start or end will be used for the marker position
|
// either of aItem's start or end will be used for the marker position
|
||||||
// first assume start, then switch at end if needed. decision made on
|
// first assume start, then switch at end if needed. decision made on
|
||||||
// distance from end of aTrack.
|
// distance from end of aTrack.
|
||||||
position = track->m_Start;
|
position = track->m_Start;
|
||||||
|
|
||||||
double dToEnd = hypot( endPos.x - aTrack->m_End.x,
|
double dToEnd = hypot( endPos.x - aTrack->m_End.x,
|
||||||
endPos.y - aTrack->m_End.y );
|
endPos.y - aTrack->m_End.y );
|
||||||
double dToStart = hypot( position.x - aTrack->m_End.x,
|
double dToStart = hypot( position.x - aTrack->m_End.x,
|
||||||
position.y - aTrack->m_End.y );
|
position.y - aTrack->m_End.y );
|
||||||
|
|
||||||
if( dToEnd < dToStart )
|
if( dToEnd < dToStart )
|
||||||
position = endPos;
|
position = endPos;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
position = aTrack->GetPosition();
|
position = aTrack->GetPosition();
|
||||||
|
|
||||||
if( fillMe )
|
if( fillMe )
|
||||||
{
|
{
|
||||||
if( aItem )
|
if( aItem )
|
||||||
fillMe->SetData( aErrorCode, position,
|
fillMe->SetData( aErrorCode, position,
|
||||||
textA, aTrack->GetPosition(),
|
textA, aTrack->GetPosition(),
|
||||||
textB, posB );
|
textB, posB );
|
||||||
else
|
else
|
||||||
fillMe->SetData( aErrorCode, position,
|
fillMe->SetData( aErrorCode, position,
|
||||||
textA, aTrack->GetPosition() );
|
textA, aTrack->GetPosition() );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if( aItem )
|
if( aItem )
|
||||||
fillMe = new MARKER_PCB( aErrorCode, position,
|
fillMe = new MARKER_PCB( aErrorCode, position,
|
||||||
textA, aTrack->GetPosition(),
|
textA, aTrack->GetPosition(),
|
||||||
textB, posB );
|
textB, posB );
|
||||||
else
|
else
|
||||||
fillMe = new MARKER_PCB( aErrorCode, position,
|
fillMe = new MARKER_PCB( aErrorCode, position,
|
||||||
textA, aTrack->GetPosition() );
|
textA, aTrack->GetPosition() );
|
||||||
}
|
}
|
||||||
|
|
||||||
return fillMe;
|
return fillMe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MARKER_PCB* DRC::fillMarker( D_PAD* aPad, D_PAD* bPad, int aErrorCode, MARKER_PCB* fillMe )
|
MARKER_PCB* DRC::fillMarker( D_PAD* aPad, D_PAD* bPad, int aErrorCode, MARKER_PCB* fillMe )
|
||||||
{
|
{
|
||||||
wxString textA = aPad->GetSelectMenuText();
|
wxString textA = aPad->GetSelectMenuText();
|
||||||
wxString textB = bPad->GetSelectMenuText();
|
wxString textB = bPad->GetSelectMenuText();
|
||||||
|
|
||||||
wxPoint posA = aPad->GetPosition();
|
wxPoint posA = aPad->GetPosition();
|
||||||
wxPoint posB = bPad->GetPosition();
|
wxPoint posB = bPad->GetPosition();
|
||||||
|
|
||||||
if( fillMe )
|
if( fillMe )
|
||||||
fillMe->SetData( aErrorCode, posA, textA, posA, textB, posB );
|
fillMe->SetData( aErrorCode, posA, textA, posA, textB, posB );
|
||||||
else
|
else
|
||||||
fillMe = new MARKER_PCB( aErrorCode, posA, textA, posA, textB, posB );
|
fillMe = new MARKER_PCB( aErrorCode, posA, textA, posA, textB, posB );
|
||||||
|
|
||||||
return fillMe;
|
return fillMe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MARKER_PCB* DRC::fillMarker( ZONE_CONTAINER* aArea, int aErrorCode, MARKER_PCB* fillMe )
|
MARKER_PCB* DRC::fillMarker( ZONE_CONTAINER* aArea, int aErrorCode, MARKER_PCB* fillMe )
|
||||||
{
|
{
|
||||||
wxString textA = aArea->GetSelectMenuText();
|
wxString textA = aArea->GetSelectMenuText();
|
||||||
|
|
||||||
wxPoint posA = aArea->GetPosition();
|
wxPoint posA = aArea->GetPosition();
|
||||||
|
|
||||||
if( fillMe )
|
if( fillMe )
|
||||||
fillMe->SetData( aErrorCode, posA, textA, posA );
|
fillMe->SetData( aErrorCode, posA, textA, posA );
|
||||||
else
|
else
|
||||||
fillMe = new MARKER_PCB( aErrorCode, posA, textA, posA );
|
fillMe = new MARKER_PCB( aErrorCode, posA, textA, posA );
|
||||||
|
|
||||||
return fillMe;
|
return fillMe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MARKER_PCB* DRC::fillMarker( const ZONE_CONTAINER* aArea,
|
MARKER_PCB* DRC::fillMarker( const ZONE_CONTAINER* aArea,
|
||||||
const wxPoint& aPos,
|
const wxPoint& aPos,
|
||||||
int aErrorCode,
|
int aErrorCode,
|
||||||
MARKER_PCB* fillMe )
|
MARKER_PCB* fillMe )
|
||||||
{
|
{
|
||||||
wxString textA = aArea->GetSelectMenuText();
|
wxString textA = aArea->GetSelectMenuText();
|
||||||
|
|
||||||
wxPoint posA = aPos;
|
wxPoint posA = aPos;
|
||||||
|
|
||||||
if( fillMe )
|
if( fillMe )
|
||||||
fillMe->SetData( aErrorCode, posA, textA, posA );
|
fillMe->SetData( aErrorCode, posA, textA, posA );
|
||||||
else
|
else
|
||||||
fillMe = new MARKER_PCB( aErrorCode, posA, textA, posA );
|
fillMe = new MARKER_PCB( aErrorCode, posA, textA, posA );
|
||||||
|
|
||||||
return fillMe;
|
return fillMe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MARKER_PCB* DRC::fillMarker( int aErrorCode, const wxString& aMessage, MARKER_PCB* fillMe )
|
MARKER_PCB* DRC::fillMarker( int aErrorCode, const wxString& aMessage, MARKER_PCB* fillMe )
|
||||||
{
|
{
|
||||||
wxPoint posA; // not displayed
|
wxPoint posA; // not displayed
|
||||||
|
|
||||||
if( fillMe )
|
if( fillMe )
|
||||||
fillMe->SetData( aErrorCode, posA, aMessage, posA );
|
fillMe->SetData( aErrorCode, posA, aMessage, posA );
|
||||||
else
|
else
|
||||||
fillMe = new MARKER_PCB( aErrorCode, posA, aMessage, posA );
|
fillMe = new MARKER_PCB( aErrorCode, posA, aMessage, posA );
|
||||||
|
|
||||||
fillMe->SetShowNoCoordinate();
|
fillMe->SetShowNoCoordinate();
|
||||||
|
|
||||||
return fillMe;
|
return fillMe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,11 +44,11 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
|
||||||
// Open
|
// Open
|
||||||
item = new wxMenuItem( filesMenu, ID_LOAD_FILE,
|
text = AddHotkeyName( _( "&Open" ), g_Board_Editor_Hokeys_Descr,
|
||||||
_( "&Open\tCtrl+O" ),
|
HK_LOAD_BOARD );
|
||||||
_( "Delete current board and load new board" ) );
|
AddMenuItem( filesMenu, ID_LOAD_FILE, text,
|
||||||
SET_BITMAP( KiBitmap( open_document_xpm ) );
|
_( "Delete current board and load new board" ),
|
||||||
filesMenu->Append( item );
|
KiBitmap( open_document_xpm ) );
|
||||||
|
|
||||||
// Load Recent submenu
|
// Load Recent submenu
|
||||||
static wxMenu* openRecentMenu;
|
static wxMenu* openRecentMenu;
|
||||||
|
@ -78,11 +78,11 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
filesMenu->AppendSeparator();
|
filesMenu->AppendSeparator();
|
||||||
|
|
||||||
// Save
|
// Save
|
||||||
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD,
|
text = AddHotkeyName( _( "&Save" ), g_Board_Editor_Hokeys_Descr,
|
||||||
_( "&Save\tCtrl+S" ),
|
HK_SAVE_BOARD );
|
||||||
_( "Save current board" ) );
|
AddMenuItem( filesMenu, ID_SAVE_BOARD, text,
|
||||||
SET_BITMAP( KiBitmap( save_xpm ) );
|
_( "Save current board" ),
|
||||||
filesMenu->Append( item );
|
KiBitmap( save_xpm ) );
|
||||||
|
|
||||||
// Save As
|
// Save As
|
||||||
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD_AS,
|
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD_AS,
|
||||||
|
@ -204,7 +204,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
|
|
||||||
// Print
|
// Print
|
||||||
item = new wxMenuItem( filesMenu, wxID_PRINT,
|
item = new wxMenuItem( filesMenu, wxID_PRINT,
|
||||||
_( "&Print\tCtrl+P" ),
|
_( "&Print" ),
|
||||||
_( "Print board" ) );
|
_( "Print board" ) );
|
||||||
SET_BITMAP( KiBitmap( print_button_xpm ) );
|
SET_BITMAP( KiBitmap( print_button_xpm ) );
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
@ -336,20 +336,23 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
* for Zoom in and Zoom out sub menus
|
* for Zoom in and Zoom out sub menus
|
||||||
*/
|
*/
|
||||||
// Zoom In
|
// Zoom In
|
||||||
text = AddHotkeyName( _( "Zoom In" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_IN, false );
|
text = AddHotkeyName( _( "Zoom In" ), g_Pcbnew_Editor_Hokeys_Descr,
|
||||||
|
HK_ZOOM_IN, IS_ACCELERATOR );
|
||||||
item = new wxMenuItem( viewMenu, ID_ZOOM_IN, text, HELP_ZOOM_IN, wxITEM_NORMAL );
|
item = new wxMenuItem( viewMenu, ID_ZOOM_IN, text, HELP_ZOOM_IN, wxITEM_NORMAL );
|
||||||
SET_BITMAP( KiBitmap( zoom_in_xpm ) );
|
SET_BITMAP( KiBitmap( zoom_in_xpm ) );
|
||||||
viewMenu->Append( item );
|
viewMenu->Append( item );
|
||||||
|
|
||||||
// Zoom Out
|
// Zoom Out
|
||||||
text = AddHotkeyName( _( "Zoom Out" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_OUT, false );
|
text = AddHotkeyName( _( "Zoom Out" ), g_Pcbnew_Editor_Hokeys_Descr,
|
||||||
|
HK_ZOOM_OUT, IS_ACCELERATOR );
|
||||||
item = new wxMenuItem( viewMenu, ID_ZOOM_OUT, text, HELP_ZOOM_OUT, wxITEM_NORMAL );
|
item = new wxMenuItem( viewMenu, ID_ZOOM_OUT, text, HELP_ZOOM_OUT, wxITEM_NORMAL );
|
||||||
|
|
||||||
SET_BITMAP( KiBitmap( zoom_out_xpm ) );
|
SET_BITMAP( KiBitmap( zoom_out_xpm ) );
|
||||||
viewMenu->Append( item );
|
viewMenu->Append( item );
|
||||||
|
|
||||||
// Fit on Screen
|
// Fit on Screen
|
||||||
text = AddHotkeyName( _( "Fit on Screen" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_AUTO );
|
text = AddHotkeyName( _( "Fit on Screen" ), g_Pcbnew_Editor_Hokeys_Descr,
|
||||||
|
HK_ZOOM_AUTO );
|
||||||
|
|
||||||
item = new wxMenuItem( viewMenu, ID_ZOOM_PAGE, text, HELP_ZOOM_FIT, wxITEM_NORMAL );
|
item = new wxMenuItem( viewMenu, ID_ZOOM_PAGE, text, HELP_ZOOM_FIT, wxITEM_NORMAL );
|
||||||
SET_BITMAP( KiBitmap( zoom_fit_in_page_xpm ) );
|
SET_BITMAP( KiBitmap( zoom_fit_in_page_xpm ) );
|
||||||
|
@ -361,8 +364,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
text = AddHotkeyName( _( "Redraw" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_REDRAW );
|
text = AddHotkeyName( _( "Redraw" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_REDRAW );
|
||||||
|
|
||||||
item = new wxMenuItem( viewMenu, ID_ZOOM_REDRAW, text,
|
item = new wxMenuItem( viewMenu, ID_ZOOM_REDRAW, text,
|
||||||
HELP_ZOOM_REDRAW,
|
HELP_ZOOM_REDRAW, wxITEM_NORMAL );
|
||||||
wxITEM_NORMAL );
|
|
||||||
SET_BITMAP( KiBitmap( zoom_redraw_xpm ) );
|
SET_BITMAP( KiBitmap( zoom_redraw_xpm ) );
|
||||||
viewMenu->Append( item );
|
viewMenu->Append( item );
|
||||||
viewMenu->AppendSeparator();
|
viewMenu->AppendSeparator();
|
||||||
|
@ -387,7 +389,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
wxMenu* placeMenu = new wxMenu;
|
wxMenu* placeMenu = new wxMenu;
|
||||||
|
|
||||||
// Module
|
// Module
|
||||||
text = AddHotkeyName( _( "Module" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ADD_MODULE, false );
|
text = AddHotkeyName( _( "Module" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ADD_MODULE, IS_ACCELERATOR );
|
||||||
item = new wxMenuItem( placeMenu, ID_PCB_MODULE_BUTT, text,
|
item = new wxMenuItem( placeMenu, ID_PCB_MODULE_BUTT, text,
|
||||||
_( "Add modules" ), wxITEM_NORMAL );
|
_( "Add modules" ), wxITEM_NORMAL );
|
||||||
|
|
||||||
|
@ -395,7 +397,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
||||||
placeMenu->Append( item );
|
placeMenu->Append( item );
|
||||||
|
|
||||||
// Track
|
// Track
|
||||||
text = AddHotkeyName( _( "Track" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ADD_NEW_TRACK, false );
|
text = AddHotkeyName( _( "Track" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ADD_NEW_TRACK, IS_ACCELERATOR );
|
||||||
item = new wxMenuItem( placeMenu, ID_TRACK_BUTT, text,
|
item = new wxMenuItem( placeMenu, ID_TRACK_BUTT, text,
|
||||||
_( "Add tracks and vias" ), wxITEM_NORMAL );
|
_( "Add tracks and vias" ), wxITEM_NORMAL );
|
||||||
|
|
||||||
|
|
|
@ -87,16 +87,16 @@ void FOOTPRINT_EDIT_FRAME::ReCreateHToolbar()
|
||||||
_( "Print module" ) );
|
_( "Print module" ) );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( _( "Zoom in" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_IN, false );
|
msg = AddHotkeyName( _( "Zoom in" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Zoom out" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_OUT, false );
|
msg = AddHotkeyName( _( "Zoom out" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Redraw view" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_REDRAW, false );
|
msg = AddHotkeyName( _( "Redraw view" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( _( "Zoom auto" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_AUTO, false );
|
msg = AddHotkeyName( _( "Zoom auto" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
|
@ -217,9 +217,9 @@ void PCB_EDIT_FRAME::ReCreateHToolbar()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( HELP_UNDO, g_Board_Editor_Hokeys_Descr, HK_UNDO, false );
|
msg = AddHotkeyName( HELP_UNDO, g_Board_Editor_Hokeys_Descr, HK_UNDO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), HELP_UNDO );
|
m_HToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ), HELP_UNDO );
|
||||||
msg = AddHotkeyName( HELP_REDO, g_Board_Editor_Hokeys_Descr, HK_REDO, false );
|
msg = AddHotkeyName( HELP_REDO, g_Board_Editor_Hokeys_Descr, HK_REDO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), HELP_REDO );
|
m_HToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ), HELP_REDO );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
@ -229,20 +229,20 @@ void PCB_EDIT_FRAME::ReCreateHToolbar()
|
||||||
_( "Plot (HPGL, PostScript, or GERBER format)" ) );
|
_( "Plot (HPGL, PostScript, or GERBER format)" ) );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( HELP_ZOOM_IN, g_Board_Editor_Hokeys_Descr, HK_ZOOM_IN, false );
|
msg = AddHotkeyName( HELP_ZOOM_IN, g_Board_Editor_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_OUT, g_Board_Editor_Hokeys_Descr, HK_ZOOM_OUT, false );
|
msg = AddHotkeyName( HELP_ZOOM_OUT, g_Board_Editor_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_REDRAW, g_Board_Editor_Hokeys_Descr, HK_ZOOM_REDRAW, false );
|
msg = AddHotkeyName( HELP_ZOOM_REDRAW, g_Board_Editor_Hokeys_Descr, HK_ZOOM_REDRAW, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
|
||||||
|
|
||||||
msg = AddHotkeyName( HELP_ZOOM_FIT, g_Board_Editor_Hokeys_Descr, HK_ZOOM_AUTO, false );
|
msg = AddHotkeyName( HELP_ZOOM_FIT, g_Board_Editor_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
m_HToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
msg = AddHotkeyName( HELP_FIND, g_Board_Editor_Hokeys_Descr, HK_FIND_ITEM, false );
|
msg = AddHotkeyName( HELP_FIND, g_Board_Editor_Hokeys_Descr, HK_FIND_ITEM, IS_COMMENT );
|
||||||
m_HToolBar->AddTool( ID_FIND_ITEMS, wxEmptyString, KiBitmap( find_xpm ), msg );
|
m_HToolBar->AddTool( ID_FIND_ITEMS, wxEmptyString, KiBitmap( find_xpm ), msg );
|
||||||
|
|
||||||
m_HToolBar->AddSeparator();
|
m_HToolBar->AddSeparator();
|
||||||
|
|
|
@ -1,162 +1,162 @@
|
||||||
/**
|
/**
|
||||||
* @file zones_convert_to_polygons_aux_functions.cpp
|
* @file zones_convert_to_polygons_aux_functions.cpp
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fctsys.h"
|
#include "fctsys.h"
|
||||||
#include "polygons_defs.h"
|
#include "polygons_defs.h"
|
||||||
#include "PolyLine.h"
|
#include "PolyLine.h"
|
||||||
#include "wxPcbStruct.h"
|
#include "wxPcbStruct.h"
|
||||||
#include "trigo.h"
|
#include "trigo.h"
|
||||||
|
|
||||||
#include "class_board.h"
|
#include "class_board.h"
|
||||||
#include "class_module.h"
|
#include "class_module.h"
|
||||||
#include "class_zone.h"
|
#include "class_zone.h"
|
||||||
|
|
||||||
#include "pcbnew.h"
|
#include "pcbnew.h"
|
||||||
#include "zones.h"
|
#include "zones.h"
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function BuildUnconnectedThermalStubsPolygonList
|
* Function BuildUnconnectedThermalStubsPolygonList
|
||||||
* Creates a set of polygons corresponding to stubs created by thermal shapes on pads
|
* Creates a set of polygons corresponding to stubs created by thermal shapes on pads
|
||||||
* which are not connected to a zone (dangling bridges)
|
* which are not connected to a zone (dangling bridges)
|
||||||
* @param aCornerBuffer = a std::vector<CPolyPt> where to store polygons
|
* @param aCornerBuffer = a std::vector<CPolyPt> where to store polygons
|
||||||
* @param aPcb = the board.
|
* @param aPcb = the board.
|
||||||
* @param aZone = a pointer to the ZONE_CONTAINER to examine.
|
* @param aZone = a pointer to the ZONE_CONTAINER to examine.
|
||||||
* @param aArcCorrection = a pointer to the ZONE_CONTAINER to examine.
|
* @param aArcCorrection = a pointer to the ZONE_CONTAINER to examine.
|
||||||
* @param aRoundPadThermalRotation = the rotation in 1.0 degree for thermal stubs in round pads
|
* @param aRoundPadThermalRotation = the rotation in 1.0 degree for thermal stubs in round pads
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void BuildUnconnectedThermalStubsPolygonList( std::vector<CPolyPt>& aCornerBuffer,
|
void BuildUnconnectedThermalStubsPolygonList( std::vector<CPolyPt>& aCornerBuffer,
|
||||||
BOARD* aPcb,
|
BOARD* aPcb,
|
||||||
ZONE_CONTAINER* aZone,
|
ZONE_CONTAINER* aZone,
|
||||||
double aArcCorrection,
|
double aArcCorrection,
|
||||||
int aRoundPadThermalRotation )
|
int aRoundPadThermalRotation )
|
||||||
{
|
{
|
||||||
std::vector<wxPoint> corners_buffer; // a local polygon buffer to store one stub
|
std::vector<wxPoint> corners_buffer; // a local polygon buffer to store one stub
|
||||||
corners_buffer.reserve( 4 );
|
corners_buffer.reserve( 4 );
|
||||||
wxPoint ptTest[4];
|
wxPoint ptTest[4];
|
||||||
|
|
||||||
int zone_clearance = aZone->m_ZoneClearance;
|
int zone_clearance = aZone->m_ZoneClearance;
|
||||||
|
|
||||||
EDA_RECT item_boundingbox;
|
EDA_RECT item_boundingbox;
|
||||||
EDA_RECT zone_boundingbox = aZone->GetBoundingBox();
|
EDA_RECT zone_boundingbox = aZone->GetBoundingBox();
|
||||||
int biggest_clearance = aPcb->GetBiggestClearanceValue();
|
int biggest_clearance = aPcb->GetBiggestClearanceValue();
|
||||||
biggest_clearance = MAX( biggest_clearance, zone_clearance );
|
biggest_clearance = MAX( biggest_clearance, zone_clearance );
|
||||||
zone_boundingbox.Inflate( biggest_clearance );
|
zone_boundingbox.Inflate( biggest_clearance );
|
||||||
|
|
||||||
// half size of the pen used to draw/plot zones outlines
|
// half size of the pen used to draw/plot zones outlines
|
||||||
int pen_radius = aZone->m_ZoneMinThickness / 2;
|
int pen_radius = aZone->m_ZoneMinThickness / 2;
|
||||||
|
|
||||||
// Calculate thermal bridge half width
|
// Calculate thermal bridge half width
|
||||||
int thermbridgeWidth = aZone->m_ThermalReliefCopperBridgeValue / 2;
|
int thermbridgeWidth = aZone->m_ThermalReliefCopperBridgeValue / 2;
|
||||||
for( MODULE* module = aPcb->m_Modules; module; module = module->Next() )
|
for( MODULE* module = aPcb->m_Modules; module; module = module->Next() )
|
||||||
{
|
{
|
||||||
for( D_PAD* pad = module->m_Pads; pad != NULL; pad = pad->Next() )
|
for( D_PAD* pad = module->m_Pads; pad != NULL; pad = pad->Next() )
|
||||||
{
|
{
|
||||||
// check
|
// check
|
||||||
if( !pad->IsOnLayer( aZone->GetLayer() ) )
|
if( !pad->IsOnLayer( aZone->GetLayer() ) )
|
||||||
continue;
|
continue;
|
||||||
if( pad->GetNet() != aZone->GetNet() )
|
if( pad->GetNet() != aZone->GetNet() )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
item_boundingbox = pad->GetBoundingBox();
|
item_boundingbox = pad->GetBoundingBox();
|
||||||
item_boundingbox.Inflate( aZone->m_ThermalReliefGapValue );
|
item_boundingbox.Inflate( aZone->m_ThermalReliefGapValue );
|
||||||
if( !( item_boundingbox.Intersects( zone_boundingbox ) ) )
|
if( !( item_boundingbox.Intersects( zone_boundingbox ) ) )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// Thermal bridges are like a segment from a starting point inside the pad
|
// Thermal bridges are like a segment from a starting point inside the pad
|
||||||
// to an ending point outside the pad
|
// to an ending point outside the pad
|
||||||
wxPoint startpoint, endpoint;
|
wxPoint startpoint, endpoint;
|
||||||
endpoint.x = ( pad->m_Size.x / 2 ) + aZone->m_ThermalReliefGapValue;
|
endpoint.x = ( pad->m_Size.x / 2 ) + aZone->m_ThermalReliefGapValue;
|
||||||
endpoint.y = ( pad->m_Size.y / 2 ) + aZone->m_ThermalReliefGapValue;
|
endpoint.y = ( pad->m_Size.y / 2 ) + aZone->m_ThermalReliefGapValue;
|
||||||
|
|
||||||
int copperThickness = aZone->m_ThermalReliefCopperBridgeValue - aZone->m_ZoneMinThickness;
|
int copperThickness = aZone->m_ThermalReliefCopperBridgeValue - aZone->m_ZoneMinThickness;
|
||||||
if( copperThickness < 0 )
|
if( copperThickness < 0 )
|
||||||
copperThickness = 0;
|
copperThickness = 0;
|
||||||
|
|
||||||
startpoint.x = min( pad->m_Size.x, copperThickness );
|
startpoint.x = min( pad->m_Size.x, copperThickness );
|
||||||
startpoint.y = min( pad->m_Size.y, copperThickness );
|
startpoint.y = min( pad->m_Size.y, copperThickness );
|
||||||
startpoint.x /= 2;
|
startpoint.x /= 2;
|
||||||
startpoint.y /= 2;
|
startpoint.y /= 2;
|
||||||
|
|
||||||
// This is CIRCLE pad tweak (for circle pads the thermal stubs are at 45 deg)
|
// This is CIRCLE pad tweak (for circle pads the thermal stubs are at 45 deg)
|
||||||
int fAngle = pad->m_Orient;
|
int fAngle = pad->m_Orient;
|
||||||
if( pad->m_PadShape == PAD_CIRCLE )
|
if( pad->m_PadShape == PAD_CIRCLE )
|
||||||
{
|
{
|
||||||
endpoint.x = (int) ( endpoint.x * aArcCorrection );
|
endpoint.x = (int) ( endpoint.x * aArcCorrection );
|
||||||
endpoint.y = endpoint.x;
|
endpoint.y = endpoint.x;
|
||||||
fAngle = aRoundPadThermalRotation;
|
fAngle = aRoundPadThermalRotation;
|
||||||
}
|
}
|
||||||
|
|
||||||
// contour line width has to be taken into calculation to avoid "thermal stub bleed"
|
// contour line width has to be taken into calculation to avoid "thermal stub bleed"
|
||||||
endpoint.x += pen_radius;
|
endpoint.x += pen_radius;
|
||||||
endpoint.y += pen_radius;
|
endpoint.y += pen_radius;
|
||||||
// compute north, south, west and east points for zone connection.
|
// compute north, south, west and east points for zone connection.
|
||||||
ptTest[0] = wxPoint( 0, endpoint.y ); // lower point
|
ptTest[0] = wxPoint( 0, endpoint.y ); // lower point
|
||||||
ptTest[1] = wxPoint( 0, -endpoint.y ); // upper point
|
ptTest[1] = wxPoint( 0, -endpoint.y ); // upper point
|
||||||
ptTest[2] = wxPoint( endpoint.x, 0 ); // right point
|
ptTest[2] = wxPoint( endpoint.x, 0 ); // right point
|
||||||
ptTest[3] = wxPoint( -endpoint.x, 0 ); // left point
|
ptTest[3] = wxPoint( -endpoint.x, 0 ); // left point
|
||||||
|
|
||||||
// Test all sides
|
// Test all sides
|
||||||
for( int i = 0; i < 4; i++ )
|
for( int i = 0; i < 4; i++ )
|
||||||
{
|
{
|
||||||
// rotate point
|
// rotate point
|
||||||
RotatePoint( &ptTest[i], fAngle );
|
RotatePoint( &ptTest[i], fAngle );
|
||||||
|
|
||||||
// translate point
|
// translate point
|
||||||
ptTest[i] += pad->ReturnShapePos();
|
ptTest[i] += pad->ReturnShapePos();
|
||||||
if( aZone->HitTestFilledArea( ptTest[i] ) )
|
if( aZone->HitTestFilledArea( ptTest[i] ) )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
corners_buffer.clear();
|
corners_buffer.clear();
|
||||||
|
|
||||||
// polygons are rectangles with width of copper bridge value
|
// polygons are rectangles with width of copper bridge value
|
||||||
switch( i )
|
switch( i )
|
||||||
{
|
{
|
||||||
case 0: // lower stub
|
case 0: // lower stub
|
||||||
corners_buffer.push_back( wxPoint( -thermbridgeWidth, endpoint.y ) );
|
corners_buffer.push_back( wxPoint( -thermbridgeWidth, endpoint.y ) );
|
||||||
corners_buffer.push_back( wxPoint( +thermbridgeWidth, endpoint.y ) );
|
corners_buffer.push_back( wxPoint( +thermbridgeWidth, endpoint.y ) );
|
||||||
corners_buffer.push_back( wxPoint( +thermbridgeWidth, startpoint.y ) );
|
corners_buffer.push_back( wxPoint( +thermbridgeWidth, startpoint.y ) );
|
||||||
corners_buffer.push_back( wxPoint( -thermbridgeWidth, startpoint.y ) );
|
corners_buffer.push_back( wxPoint( -thermbridgeWidth, startpoint.y ) );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1: // upper stub
|
case 1: // upper stub
|
||||||
corners_buffer.push_back( wxPoint( -thermbridgeWidth, -endpoint.y ) );
|
corners_buffer.push_back( wxPoint( -thermbridgeWidth, -endpoint.y ) );
|
||||||
corners_buffer.push_back( wxPoint( +thermbridgeWidth, -endpoint.y ) );
|
corners_buffer.push_back( wxPoint( +thermbridgeWidth, -endpoint.y ) );
|
||||||
corners_buffer.push_back( wxPoint( +thermbridgeWidth, -startpoint.y ) );
|
corners_buffer.push_back( wxPoint( +thermbridgeWidth, -startpoint.y ) );
|
||||||
corners_buffer.push_back( wxPoint( -thermbridgeWidth, -startpoint.y ) );
|
corners_buffer.push_back( wxPoint( -thermbridgeWidth, -startpoint.y ) );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2: // right stub
|
case 2: // right stub
|
||||||
corners_buffer.push_back( wxPoint( endpoint.x, -thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( endpoint.x, -thermbridgeWidth ) );
|
||||||
corners_buffer.push_back( wxPoint( endpoint.x, thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( endpoint.x, thermbridgeWidth ) );
|
||||||
corners_buffer.push_back( wxPoint( +startpoint.x, thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( +startpoint.x, thermbridgeWidth ) );
|
||||||
corners_buffer.push_back( wxPoint( +startpoint.x, -thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( +startpoint.x, -thermbridgeWidth ) );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3: // left stub
|
case 3: // left stub
|
||||||
corners_buffer.push_back( wxPoint( -endpoint.x, -thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( -endpoint.x, -thermbridgeWidth ) );
|
||||||
corners_buffer.push_back( wxPoint( -endpoint.x, thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( -endpoint.x, thermbridgeWidth ) );
|
||||||
corners_buffer.push_back( wxPoint( -startpoint.x, thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( -startpoint.x, thermbridgeWidth ) );
|
||||||
corners_buffer.push_back( wxPoint( -startpoint.x, -thermbridgeWidth ) );
|
corners_buffer.push_back( wxPoint( -startpoint.x, -thermbridgeWidth ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// add computed polygon to list
|
// add computed polygon to list
|
||||||
for( unsigned ic = 0; ic < corners_buffer.size(); ic++ )
|
for( unsigned ic = 0; ic < corners_buffer.size(); ic++ )
|
||||||
{
|
{
|
||||||
wxPoint cpos = corners_buffer[ic];
|
wxPoint cpos = corners_buffer[ic];
|
||||||
RotatePoint( &cpos, fAngle ); // Rotate according to module orientation
|
RotatePoint( &cpos, fAngle ); // Rotate according to module orientation
|
||||||
cpos += pad->ReturnShapePos(); // Shift origin to position
|
cpos += pad->ReturnShapePos(); // Shift origin to position
|
||||||
CPolyPt corner;
|
CPolyPt corner;
|
||||||
corner.x = cpos.x;
|
corner.x = cpos.x;
|
||||||
corner.y = cpos.y;
|
corner.y = cpos.y;
|
||||||
corner.end_contour = ( ic < (corners_buffer.size() - 1) ) ? 0 : 1;
|
corner.end_contour = ( ic < (corners_buffer.size() - 1) ) ? 0 : 1;
|
||||||
aCornerBuffer.push_back( corner );
|
aCornerBuffer.push_back( corner );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue