2015-04-02 18:00:50 -04:00
|
|
|
#ifndef TYROEDIT_PANE_H
|
|
|
|
#define TYROEDIT_PANE_H
|
|
|
|
|
2015-04-29 17:03:15 -04:00
|
|
|
#include "../settings/LangConfig.h"
|
2015-05-07 14:06:12 -04:00
|
|
|
#include "../settings/ThemeConfig.h"
|
2015-04-10 15:11:15 -04:00
|
|
|
|
2015-04-02 18:00:50 -04:00
|
|
|
class EditPane: public wxStyledTextCtrl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
EditPane(
|
2015-04-21 14:07:04 -04:00
|
|
|
wxWindow *parent,
|
2015-04-02 18:00:50 -04:00
|
|
|
wxWindowID id = wxID_ANY,
|
|
|
|
const wxPoint &post = wxDefaultPosition,
|
2015-04-24 16:55:10 -04:00
|
|
|
const wxSize &size = wxDefaultSize
|
2015-04-02 18:00:50 -04:00
|
|
|
);
|
|
|
|
~EditPane();
|
2015-04-17 16:55:48 -04:00
|
|
|
wxFileName fileName;
|
|
|
|
bool Load(wxString filePath);
|
|
|
|
void Highlight(wxString filePath);
|
2015-04-16 17:03:27 -04:00
|
|
|
bool SaveFile();
|
|
|
|
bool SaveFile(const wxString &filename);
|
2015-05-07 17:05:27 -04:00
|
|
|
void ApplyTheme(string lang, string theme="");
|
2015-04-02 18:00:50 -04:00
|
|
|
private:
|
2015-04-16 11:23:08 -04:00
|
|
|
StringConstMap lexerMap;
|
|
|
|
StringConstMap::iterator lexerMapIt;
|
2015-04-29 17:03:15 -04:00
|
|
|
LangConfig *lang_config;
|
2015-05-07 14:06:12 -04:00
|
|
|
ThemeConfig *theme_config;
|
2015-04-29 17:03:15 -04:00
|
|
|
enum myMargins
|
2015-04-13 13:01:25 -04:00
|
|
|
{
|
2015-04-16 22:07:51 -04:00
|
|
|
MARGIN_FOLD,
|
2015-04-24 16:55:10 -04:00
|
|
|
MARGIN_SYMBOL,
|
2015-04-16 22:07:51 -04:00
|
|
|
MARGIN_LINE_NUMBERS
|
2015-04-13 13:01:25 -04:00
|
|
|
};
|
2015-04-17 16:55:48 -04:00
|
|
|
bool FileReadable();
|
|
|
|
bool FileWritable();
|
2015-04-16 17:03:27 -04:00
|
|
|
void BindEvents();
|
|
|
|
void OnMarginClick(wxStyledTextEvent &event);
|
2015-04-28 14:58:52 -04:00
|
|
|
void OnCharAdded(wxStyledTextEvent &event);
|
2015-04-21 14:07:04 -04:00
|
|
|
void SetTheme(string theme_name);
|
2015-04-29 17:03:15 -04:00
|
|
|
void _ApplyTheme(JsonValue &lexer_map);
|
2015-04-02 18:00:50 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TYRODOC_FRAME_H
|