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
|
#ifndef CLJSCTAGS_H
#define CLJSCTAGS_H
#include <wx/event.h>
#include "cl_command_event.h"
#include "smart_ptr.h"
#include "codelite_exports.h"
class WXDLLIMPEXP_SDK clJSCTags : public wxEvtHandler
{
bool m_zipExtracted;
public:
typedef SmartPtr<clJSCTags> Ptr_t;
protected:
public:
clJSCTags();
virtual ~clJSCTags();
void ZipExtractCompleted();
void OnEditorSaved(clCommandEvent& event);
void OnEditorChanged(wxCommandEvent& event);
void OnInitDone(wxCommandEvent& event);
void OnEditorClosing(wxCommandEvent& e);
};
#endif // CLJSCTAGS_H
|