2015-04-02 18:00:50 -04:00
|
|
|
#ifndef TYROEDIT_PANE_H
|
|
|
|
#define TYROEDIT_PANE_H
|
|
|
|
|
2015-04-07 17:08:28 -04:00
|
|
|
#include "../wx_common.h"
|
2015-04-14 17:00:48 -04:00
|
|
|
#include "../settings/Config.h"
|
2015-04-10 15:11:15 -04:00
|
|
|
|
|
|
|
#include <wx/stc/stc.h>
|
|
|
|
|
2015-04-02 18:00:50 -04:00
|
|
|
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-13 16:48:41 -04:00
|
|
|
wxString fileName;
|
2015-04-16 17:03:27 -04:00
|
|
|
string GetLangByFile();
|
2015-04-10 15:11:15 -04:00
|
|
|
bool LoadAndHighlight(wxString filePath);
|
2015-04-16 17:03:27 -04:00
|
|
|
bool SaveFile();
|
|
|
|
bool SaveFile(const wxString &filename);
|
|
|
|
bool IsModified();
|
2015-04-02 18:00:50 -04:00
|
|
|
private:
|
2015-04-16 11:23:08 -04:00
|
|
|
StringConstMap lexerMap;
|
|
|
|
StringConstMap::iterator lexerMapIt;
|
2015-04-14 17:00:48 -04:00
|
|
|
TyroConfig *config;
|
2015-04-13 13:01:25 -04:00
|
|
|
enum
|
|
|
|
{
|
2015-04-16 22:07:51 -04:00
|
|
|
MARGIN_FOLD,
|
|
|
|
MARGIN_LINE_NUMBERS
|
2015-04-13 13:01:25 -04:00
|
|
|
};
|
2015-04-16 17:03:27 -04:00
|
|
|
void BindEvents();
|
|
|
|
void OnMarginClick(wxStyledTextEvent &event);
|
2015-04-02 18:00:50 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TYRODOC_FRAME_H
|