1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// Copyright : (C) 2015 Eran Ifrah
// File name : xdebugevent.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef XDEBUGEVENT_H
#define XDEBUGEVENT_H
#include "php_event.h"
#include "XVariable.h"
class XDebugEvent : public PHPEvent
{
XVariable::List_t m_variables;
bool m_evalSucceeded;
wxString m_errorString;
wxString m_evaluted;
int m_evalReason;
public:
XDebugEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
XDebugEvent(const XDebugEvent& src);
XDebugEvent& operator=(const XDebugEvent& src);
virtual ~XDebugEvent();
virtual wxEvent* Clone() const { return new XDebugEvent(*this); }
void SetVariables(const XVariable::List_t& variables) { this->m_variables = variables; }
const XVariable::List_t& GetVariables() const { return m_variables; }
void SetEvalSucceeded(bool evalSucceeded) { this->m_evalSucceeded = evalSucceeded; }
bool IsEvalSucceeded() const { return m_evalSucceeded; }
void SetErrorString(const wxString& errorString) { this->m_errorString = errorString; }
const wxString& GetErrorString() const { return m_errorString; }
void SetEvaluated(const wxString& evaluted) { this->m_evaluted = evaluted; }
const wxString& GetEvaluted() const { return m_evaluted; }
void SetEvalReason(int evalReason) { this->m_evalReason = evalReason; }
void SetEvaluted(const wxString& evaluted) { this->m_evaluted = evaluted; }
int GetEvalReason() const { return m_evalReason; }
};
wxDECLARE_EVENT(wxEVT_XDEBUG_IDE_GOT_CONTROL, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_STOPPED, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_STACK_TRACE, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_SESSION_STARTED, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_CONNECTED, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_SESSION_STARTING, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_SESSION_ENDED, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_BREAKPOINTS_UPDATED, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_LOCALS_UPDATED, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_EVAL_EXPRESSION, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_UNKNOWN_RESPONSE, XDebugEvent);
wxDECLARE_EVENT(wxEVT_XDEBUG_PROPERTY_GET, XDebugEvent);
#endif // XDEBUGEVENT_H
|