Browse Source

Get cross-probing working under the Kiway.

pull/1/head
Dick Hollenbeck 12 years ago
parent
commit
1648d7fd43
  1. 8
      common/kiway.cpp
  2. 12
      eeschema/cross-probing.cpp
  3. 1
      eeschema/schframe.cpp
  4. 2
      include/wxEeschemaStruct.h
  5. 2
      include/wxPcbStruct.h
  6. 11
      pcbnew/cross-probing.cpp
  7. 1
      pcbnew/pcbframe.cpp

8
common/kiway.cpp

@ -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;

12
eeschema/cross-probing.cpp

@ -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() );
}

1
eeschema/schframe.cpp

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

2
include/wxEeschemaStruct.h

@ -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 );

2
include/wxPcbStruct.h

@ -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

11
pcbnew/cross-probing.cpp

@ -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() );
}

1
pcbnew/pcbframe.cpp

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