forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColoursAndFontsManager.h
159 lines (133 loc) · 4.78 KB
/
ColoursAndFontsManager.h
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#ifndef LEXERCONFMANAGER_H
#define LEXERCONFMANAGER_H
#include "codelite_exports.h"
#include "lexer_configuration.h"
#include <vector>
#include <map>
#include <wx/string.h>
#include <wx/filename.h>
#include <wx/event.h>
#include "cl_command_event.h"
#include <wx/font.h>
// When the version is 0, it means that we need to upgrade the colours for the line numbers
// and for the default state
#define LEXERS_UPGRADE_LINENUM_DEFAULT_COLOURS 0
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_SDK, wxEVT_UPGRADE_LEXERS_START, clCommandEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_SDK, wxEVT_UPGRADE_LEXERS_END, clCommandEvent);
wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_SDK, wxEVT_UPGRADE_LEXERS_PROGRESS, clCommandEvent);
class WXDLLIMPEXP_SDK ColoursAndFontsManager : public wxEvtHandler
{
typedef std::vector<LexerConf::Ptr_t> Vec_t;
typedef std::map<wxString, ColoursAndFontsManager::Vec_t> Map_t;
protected:
bool m_initialized;
ColoursAndFontsManager::Map_t m_lexersMap;
ColoursAndFontsManager::Vec_t m_allLexers;
wxColour m_globalBgColour;
wxColour m_globalFgColour;
wxString m_globalTheme;
LexerConf::Ptr_t m_defaultLexer;
int m_lexersVersion;
wxFont m_globalFont;
private:
ColoursAndFontsManager();
virtual ~ColoursAndFontsManager();
void LoadOldXmls(const std::vector<wxXmlDocument*>& xmlFiles, bool userLexers = false);
LexerConf::Ptr_t DoAddLexer(wxXmlNode* node);
LexerConf::Ptr_t DoAddLexer(JSONElement json);
void Clear();
wxFileName GetConfigFile() const;
void LoadJSON(const wxFileName& path);
public:
static ColoursAndFontsManager& Get();
/**
* @brief save the global settings
*/
void SaveGlobalSettings();
/**
* @brief adjust the lexer colours to fit codelite's general look and feel
*/
void UpdateLexerColours(LexerConf::Ptr_t lexer, bool force);
const wxColour& GetGlobalBgColour() const { return m_globalBgColour; }
const wxColour& GetGlobalFgColour() const { return m_globalFgColour; }
/**
* @brief create new theme for a lexer by copying an existing theme 'sourceTheme'
* @param lexerName the lexer name
* @param themeName the new theme name
* @param sourceTheme source theme to copy the attributes from
*/
LexerConf::Ptr_t CopyTheme(const wxString& lexerName, const wxString& themeName, const wxString& sourceTheme);
void SetGlobalBgColour(const wxColour& globalBgColour)
{
this->m_globalBgColour = globalBgColour;
SaveGlobalSettings();
}
void SetGlobalFont(const wxFont& font);
const wxFont& GetGlobalFont() const;
void SetGlobalFgColour(const wxColour& globalFgColour)
{
this->m_globalFgColour = globalFgColour;
SaveGlobalSettings();
}
void SetGlobalTheme(const wxString& globalTheme) { this->m_globalTheme = globalTheme; }
const wxString& GetGlobalTheme() const { return m_globalTheme; }
/**
* @brief reload the lexers from the configuration files
*/
void Reload();
/**
* @brief load the lexers + global settings
*/
void Load();
/**
* @brief save the lexers into their proper file name
*/
void Save();
/**
* @brief set the active theme for a lexer by name
*/
void SetActiveTheme(const wxString& lexerName, const wxString& themeName);
/**
* @brief return the lexer by name.
* @param lexerName the lexer name, e.g. "c++"
* @param theme optionally, return the lexer of a given theme
*/
LexerConf::Ptr_t GetLexer(const wxString& lexerName, const wxString& theme = wxEmptyString) const;
/**
* @brief return an array of themes availabel for a given lexer
*/
wxArrayString GetAvailableThemesForLexer(const wxString& lexerName) const;
/**
* @brief return an array of available lexers
*/
wxArrayString GetAllLexersNames() const;
/**
* @brief return lexer for a file
*/
LexerConf::Ptr_t GetLexerForFile(const wxString& filename) const;
/**
* @brief restore the default colours
* This is done by deleting the user defined XML files and
*/
void RestoreDefaults();
/**
* @brief import an eclipse theme into codelite
*/
bool ImportEclipseTheme(const wxString& eclipseXml);
/**
* @brief callback called by the helper thread indicating that it finished caching
* the XML files
*/
void OnLexerFilesLoaded(const std::vector<wxXmlDocument*>& userLexers);
/**
* @brief set a unified theme for all lexers. If the requested theme is not available for a given lexer,
* use the closest one
* @param themeName
*/
void SetTheme(const wxString& themeName);
/**
* @brief add new lexer (replace an existing one if exists)
*/
void AddLexer(LexerConf::Ptr_t lexer);
};
#endif // LEXERCONFMANAGER_H