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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// Copyright : (C) 2015 Eran Ifrah
// File name : ColoursAndFontsManager.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef LEXERCONFMANAGER_H
#define LEXERCONFMANAGER_H
#include "cl_command_event.h"
#include "codelite_exports.h"
#include "lexer_configuration.h"
#include "wxStringHash.h"
#include <map>
#include <vector>
#include <wx/event.h>
#include <wx/filename.h>
#include <wx/font.h>
#include <wx/string.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::unordered_map<wxString, ColoursAndFontsManager::Vec_t> Map_t;
protected:
bool m_initialized;
ColoursAndFontsManager::Map_t m_lexersMap;
ColoursAndFontsManager::Vec_t m_allLexers;
wxString m_globalTheme;
LexerConf::Ptr_t m_defaultLexer;
int m_lexersVersion;
wxFont m_globalFont;
private:
ColoursAndFontsManager();
virtual ~ColoursAndFontsManager();
LexerConf::Ptr_t DoAddLexer(JSONItem json);
void Clear();
wxFileName GetConfigFile() const;
void LoadJSON(const wxFileName& path);
protected:
void OnAdjustTheme(clCommandEvent& event);
public:
static ColoursAndFontsManager& Get();
/**
* @brief return the default editor font (monospaced)
*/
wxFont GetFixedFont(bool small = false) const;
/**
* @brief return a suitable background colour that matches the lexer's bg colour
*/
wxColour GetBackgroundColourFromLexer(LexerConf::Ptr_t lexer) const;
/**
* @brief Export themes to JSON file
*/
bool ExportThemesToFile(const wxFileName& outputFile, const wxArrayString& names = wxArrayString()) const;
/**
* @brief import lexers from configuration file
*/
bool ImportLexersFile(const wxFileName& inputFile, bool prompt = true);
/**
* @brief save the global settings
*/
void SaveGlobalSettings(bool notify = true);
/**
* @brief adjust the lexer colours to fit codelite's general look and feel
*/
void UpdateLexerColours(LexerConf::Ptr_t lexer, bool force);
/**
* @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 SetGlobalFont(const wxFont& font);
const wxFont& GetGlobalFont() const;
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
* @param lexer_json optional output file
*/
void Save(const wxFileName& lexer_json = {});
/**
* @brief set the active theme for a lexer by name
*/
void SetActiveTheme(const wxString& lexerName, const wxString& themeName);
/**
* @brief update a theme text selection colours
*/
void SetThemeTextSelectionColours(const wxString& theme_name, const wxColour& bg, const wxColour& fg,
bool useCustomerFgColour = true);
/**
* @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 list of all themes
*/
wxArrayString GetAllThemes() 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, return its name
*/
wxString ImportEclipseTheme(const wxString& theme_file);
/**
* @brief load lexers from lexers.json
*/
void LoadLexersFromFile();
/**
* @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);
/**
* @brief return true if the current theme is dark
*/
bool IsDarkTheme() const;
};
#endif // LEXERCONFMANAGER_H
|