2014-04-21 06:28:17 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2021-10-06 02:46:53 +00:00
|
|
|
* Copyright (C) 2014-202 KiCad Developers, see AUTHORS.TXT for contributors.
|
2014-04-21 06:28:17 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2016-01-12 16:33:33 +00:00
|
|
|
#ifndef KIWAY_EXPRESS_H_
|
|
|
|
#define KIWAY_EXPRESS_H_
|
|
|
|
|
2014-04-21 06:28:17 +00:00
|
|
|
// @see http://wiki.wxwidgets.org/Custom_Events_Tutorial
|
|
|
|
#include <frame_type.h>
|
2014-04-22 15:16:19 +00:00
|
|
|
#include <mail_type.h>
|
2024-03-20 01:53:21 +00:00
|
|
|
#include <kicommon.h>
|
2021-05-01 07:50:29 +00:00
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/event.h>
|
2014-04-21 14:49:33 +00:00
|
|
|
|
|
|
|
|
2014-04-21 06:28:17 +00:00
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Carry a payload from one #KIWAY_PLAYER to another within a #PROJECT.
|
2014-04-21 06:28:17 +00:00
|
|
|
*/
|
2024-03-20 01:53:21 +00:00
|
|
|
class KICOMMON_API KIWAY_EXPRESS : public wxEvent
|
2014-04-21 06:28:17 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Return the destination player id of the message.
|
2014-04-21 06:28:17 +00:00
|
|
|
*/
|
2020-12-19 16:00:52 +00:00
|
|
|
FRAME_T Dest() { return m_destination; }
|
2014-04-21 06:28:17 +00:00
|
|
|
|
2014-04-21 14:49:33 +00:00
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Returns the #MAIL_T associated with this mail.
|
2014-04-21 14:49:33 +00:00
|
|
|
*/
|
|
|
|
MAIL_T Command()
|
|
|
|
{
|
|
|
|
return (MAIL_T) GetId(); // re-purposed control id.
|
|
|
|
}
|
|
|
|
|
2014-04-21 06:28:17 +00:00
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Return the payload, which can be any text but it typically self identifying s-expression.
|
2014-04-21 06:28:17 +00:00
|
|
|
*/
|
2020-12-19 16:00:52 +00:00
|
|
|
std::string& GetPayload() { return m_payload; }
|
|
|
|
void SetPayload( const std::string& aPayload ) { m_payload = aPayload; }
|
2014-04-21 06:28:17 +00:00
|
|
|
|
2020-12-19 16:00:52 +00:00
|
|
|
KIWAY_EXPRESS* Clone() const override { return new KIWAY_EXPRESS( *this ); }
|
2014-04-21 06:28:17 +00:00
|
|
|
|
|
|
|
//KIWAY_EXPRESS() {}
|
|
|
|
|
2019-03-27 22:37:26 +00:00
|
|
|
KIWAY_EXPRESS( FRAME_T aDestination, MAIL_T aCommand, std::string& aPayload,
|
2020-12-19 16:00:52 +00:00
|
|
|
wxWindow* aSource = nullptr );
|
2014-04-21 06:28:17 +00:00
|
|
|
|
|
|
|
KIWAY_EXPRESS( const KIWAY_EXPRESS& anOther );
|
|
|
|
|
2014-04-22 15:26:59 +00:00
|
|
|
/// The wxEventType argument to wxEvent() and identifies an event class
|
|
|
|
/// in a hurry. These wxEventTypes also allow a common class to be used
|
|
|
|
/// multiple ways. Should be allocated at startup by wxNewEventType();
|
2014-04-21 06:28:17 +00:00
|
|
|
static const wxEventType wxEVENT_ID;
|
|
|
|
|
|
|
|
//DECLARE_DYNAMIC_CLASS( KIWAY_EXPRESS )
|
|
|
|
|
|
|
|
private:
|
2020-12-19 16:00:52 +00:00
|
|
|
FRAME_T m_destination; ///< could have been a bitmap indicating multiple recipients.
|
|
|
|
std::string& m_payload; ///< very often s-expression text, but not always.
|
2014-04-21 06:28:17 +00:00
|
|
|
|
2014-04-22 15:26:59 +00:00
|
|
|
// possible new ideas here.
|
2014-04-21 06:28:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef void ( wxEvtHandler::*kiwayExpressFunction )( KIWAY_EXPRESS& );
|
|
|
|
|
2020-01-09 18:01:54 +00:00
|
|
|
/// Typecast an event handler for the KIWAY_EXPRESS event class
|
|
|
|
#define kiwayExpressHandler( func ) wxEVENT_HANDLER_CAST( kiwayExpressFunction, func )
|
2014-04-21 06:28:17 +00:00
|
|
|
|
2020-01-09 18:01:54 +00:00
|
|
|
/// Event table definition for the KIWAY_EXPRESS event class
|
2014-04-21 06:28:17 +00:00
|
|
|
#define EVT_KIWAY_EXPRESS( func ) \
|
2020-01-09 18:01:54 +00:00
|
|
|
wx__DECLARE_EVT0( KIWAY_EXPRESS::wxEVENT_ID, kiwayExpressHandler( func ) )
|
2014-04-21 06:28:17 +00:00
|
|
|
|
|
|
|
#endif // KIWAY_EXPRESS_H_
|