Tyro/src/widgets/EditPane.h

32 lines
569 B
C
Raw Normal View History

#ifndef TYROEDIT_PANE_H
#define TYROEDIT_PANE_H
#include "../wx_common.h"
2015-04-10 15:11:15 -04:00
#include <wx/stc/stc.h>
#include "../../include/json/json.h"
class EditPane: public wxStyledTextCtrl
{
public:
EditPane(
wxWindow *parent,
wxWindowID id = wxID_ANY,
const wxPoint &post = wxDefaultPosition,
const wxSize &size = wxDefaultSize,
long style =
#ifndef __WXMAC__
wxSUNKEN_BORDER |
#endif
wxVSCROLL
);
~EditPane();
2015-04-10 15:11:15 -04:00
bool LoadAndHighlight(wxString filePath);
private:
2015-04-10 15:11:15 -04:00
StringConstMap lexer_map;
StringConstMap::iterator lexer_map_it;
};
#endif // TYRODOC_FRAME_H