Get cross-probing working under the Kiway.

This commit is contained in:
Dick Hollenbeck 2014-04-21 01:51:33 -05:00
parent e47a2bc5d4
commit 1648d7fd43
7 changed files with 37 additions and 0 deletions

View File

@ -316,7 +316,15 @@ bool KIWAY::ProcessEvent( wxEvent& aEvent )
KIWAY_PLAYER* alive = Player( dest, false );
if( alive )
{
#if 0
// This is still broken, but is the way to go.
return alive->ProcessEvent( aEvent );
#else
alive->KiwayMailIn( *mail );
return true;
#endif
}
}
return false;

View File

@ -180,3 +180,15 @@ void SCH_EDIT_FRAME::SendMessageToPCBNEW( EDA_ITEM* aComponent, SCH_COMPONENT* a
}
}
}
#include <kiway_express.h>
void SCH_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail )
{
// @todo switch on command type
std::string payload = mail.GetPayload();
ExecuteRemoteCommand( payload.c_str() );
}

View File

@ -1073,3 +1073,4 @@ void SCH_EDIT_FRAME::UpdateTitle()
SetTitle( title );
}

View File

@ -368,6 +368,8 @@ public:
*/
virtual void ExecuteRemoteCommand( const char* cmdline );
void KiwayMailIn( KIWAY_EXPRESS& aEvent ); // virtual overload from KIWAY_PLAYER
void OnLeftClick( wxDC* aDC, const wxPoint& aPosition );
void OnLeftDClick( wxDC* aDC, const wxPoint& aPosition );
bool OnRightClick( const wxPoint& aPosition, wxMenu* PopMenu );

View File

@ -239,6 +239,8 @@ public:
*/
virtual void ExecuteRemoteCommand( const char* cmdline );
void KiwayMailIn( KIWAY_EXPRESS& aEvent ); // virtual overload from KIWAY_PLAYER
/**
* Function ToPlotter
* Open a dialog frame to create plot and drill files

View File

@ -211,3 +211,14 @@ void PCB_EDIT_FRAME::SendMessageToEESCHEMA( BOARD_ITEM* aSyncItem )
}
}
#include <kiway_express.h>
void PCB_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail )
{
// @todo switch on command type
std::string payload = mail.GetPayload();
ExecuteRemoteCommand( payload.c_str() );
}

View File

@ -1171,3 +1171,4 @@ void PCB_EDIT_FRAME::SetRotationAngle( int aRotationAngle )
m_rotationAngle = aRotationAngle;
}