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
|
#ifndef LSPEVENT_H
#define LSPEVENT_H
#include "cl_command_event.h"
#include "LSP/basic_types.h"
#include "codelite_exports.h"
#include "LSP/CompletionItem.h"
#include <vector>
class WXDLLIMPEXP_CL LSPEvent : public clCommandEvent
{
LSP::Location m_location;
wxString m_serverName;
LSP::CompletionItem::Vec_t m_completions;
LSP::SignatureHelp m_signatureHelp;
std::vector<LSP::Diagnostic> m_diagnostics;
public:
LSPEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
LSPEvent(const LSPEvent& src);
LSPEvent& operator=(const LSPEvent& other);
virtual ~LSPEvent();
LSPEvent& SetLocation(const LSP::Location& location)
{
this->m_location = location;
return *this;
}
const LSP::Location& GetLocation() const { return m_location; }
LSP::Location& GetLocation() { return m_location; }
wxEvent* Clone() const { return new LSPEvent(*this); }
LSPEvent& SetServerName(const wxString& serverName)
{
this->m_serverName = serverName;
return *this;
}
const wxString& GetServerName() const { return m_serverName; }
LSPEvent& SetCompletions(const LSP::CompletionItem::Vec_t& completions)
{
this->m_completions = completions;
return *this;
}
const LSP::CompletionItem::Vec_t& GetCompletions() const { return m_completions; }
LSPEvent& SetSignatureHelp(const LSP::SignatureHelp& signatureHelp)
{
this->m_signatureHelp = signatureHelp;
return *this;
}
const LSP::SignatureHelp& GetSignatureHelp() const { return m_signatureHelp; }
LSPEvent& SetDiagnostics(const std::vector<LSP::Diagnostic>& diagnostics)
{
this->m_diagnostics = diagnostics;
return *this;
}
const std::vector<LSP::Diagnostic>& GetDiagnostics() const { return m_diagnostics; }
};
typedef void (wxEvtHandler::*LSPEventFunction)(LSPEvent&);
#define LSPEventHandler(func) wxEVENT_HANDLER_CAST(LSPEventFunction, func)
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_DEFINITION, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_INITIALIZED, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_COMPLETION_READY, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_RESTART_NEEDED, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_REPARSE_NEEDED, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_METHOD_NOT_FOUND, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_SIGNATURE_HELP, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_SET_DIAGNOSTICS, LSPEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_CL, wxEVT_LSP_CLEAR_DIAGNOSTICS, LSPEvent);
#endif // LSPEVENT_H
|