mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-04-08 17:15:37 +02:00
https://www.scintilla.org/scintilla542.zip Release 5.4.2 Released 5 March 2024. Significantly reduce memory used for undo actions, often to a half or quarter of previous versions. Feature #1458. Add APIs for saving and restoring undo history. For GTK, when laying out text, detect runs with both left-to-right and right-to-left ranges and divide into an ASCII prefix and more complex suffix. Lay out the ASCII prefix in the standard manner but, for the suffix, measure the whole width and spread that over the suffix bytes. This produces more usable results where the caret moves over the ASCII prefix correctly and over the suffix reasonably but not accurately. For ScintillaEdit on Qt, fix reference from ScintillaDocument to Document to match change in 5.4.1 using IDocumentEditable for SCI_GETDOCPOINTER and SCI_SETDOCPOINTER. For Direct2D on Win32, use the multi-threaded option to avoid crashes when Scintilla instances created on different threads. There may be more problems with this scenario so it should be avoided. Bug #2420. For Win32, ensure keyboard-initiated context menu appears in multi-screen situations. https://www.scintilla.org/lexilla531.zip Release 5.3.1 Released 5 March 2024. Assembler: After comments, treat \r\n line ends the same as \n. This makes testing easier. Bash: Fix folding when line changed to/from comment and previous line is comment. Issue #224. Batch: Fix handling ':' next to keywords. Issue #222. JavaScript: in cpp lexer, add lexer.cpp.backquoted.strings=2 mode to treat ` back-quoted strings as template literals which allow embedded ${expressions}. Issue #94. Python: fix lexing of rb'' and rf'' strings. Issue #223, Pull request #227. Ruby: fix lexing of methods on numeric literals like '3.times' so the '.' and method name do not appear in numeric style. Issue #225.
161 lines
4.1 KiB
C++
161 lines
4.1 KiB
C++
// Scintilla source code edit control
|
|
/** @file OptionSet.h
|
|
** Manage descriptive information about an options struct for a lexer.
|
|
** Hold the names, positions, and descriptions of boolean, integer and string options and
|
|
** allow setting options and retrieving metadata about the options.
|
|
**/
|
|
// Copyright 2010 by Neil Hodgson <neilh@scintilla.org>
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
#ifndef OPTIONSET_H
|
|
#define OPTIONSET_H
|
|
|
|
namespace Lexilla {
|
|
|
|
template <typename T>
|
|
class OptionSet {
|
|
typedef T Target;
|
|
typedef bool T::*plcob;
|
|
typedef int T::*plcoi;
|
|
typedef std::string T::*plcos;
|
|
struct Option {
|
|
int opType;
|
|
union {
|
|
plcob pb;
|
|
plcoi pi;
|
|
plcos ps;
|
|
};
|
|
std::string value;
|
|
std::string description;
|
|
Option() :
|
|
opType(SC_TYPE_BOOLEAN), pb(nullptr) {
|
|
}
|
|
Option(plcob pb_, std::string_view description_="") :
|
|
opType(SC_TYPE_BOOLEAN), pb(pb_), description(description_) {
|
|
}
|
|
Option(plcoi pi_, std::string_view description_) :
|
|
opType(SC_TYPE_INTEGER), pi(pi_), description(description_) {
|
|
}
|
|
Option(plcos ps_, std::string_view description_) :
|
|
opType(SC_TYPE_STRING), ps(ps_), description(description_) {
|
|
}
|
|
bool Set(T *base, const char *val) {
|
|
value = val;
|
|
switch (opType) {
|
|
case SC_TYPE_BOOLEAN: {
|
|
const bool option = atoi(val) != 0;
|
|
if ((*base).*pb != option) {
|
|
(*base).*pb = option;
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
case SC_TYPE_INTEGER: {
|
|
const int option = atoi(val);
|
|
if ((*base).*pi != option) {
|
|
(*base).*pi = option;
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
case SC_TYPE_STRING: {
|
|
if ((*base).*ps != val) {
|
|
(*base).*ps = val;
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
const char *Get() const noexcept {
|
|
return value.c_str();
|
|
}
|
|
};
|
|
typedef std::map<std::string, Option, std::less<>> OptionMap;
|
|
OptionMap nameToDef;
|
|
std::string names;
|
|
std::string wordLists;
|
|
|
|
void AppendName(const char *name) {
|
|
if (!names.empty())
|
|
names += "\n";
|
|
names += name;
|
|
}
|
|
public:
|
|
void DefineProperty(const char *name, plcob pb, std::string_view description="") {
|
|
nameToDef[name] = Option(pb, description);
|
|
AppendName(name);
|
|
}
|
|
void DefineProperty(const char *name, plcoi pi, std::string_view description="") {
|
|
nameToDef[name] = Option(pi, description);
|
|
AppendName(name);
|
|
}
|
|
void DefineProperty(const char *name, plcos ps, std::string_view description="") {
|
|
nameToDef[name] = Option(ps, description);
|
|
AppendName(name);
|
|
}
|
|
template <typename E>
|
|
void DefineProperty(const char *name, E T::*pe, std::string_view description="") {
|
|
static_assert(std::is_enum<E>::value);
|
|
plcoi pi {};
|
|
static_assert(sizeof(pe) == sizeof(pi));
|
|
memcpy(&pi, &pe, sizeof(pe));
|
|
nameToDef[name] = Option(pi, description);
|
|
AppendName(name);
|
|
}
|
|
const char *PropertyNames() const noexcept {
|
|
return names.c_str();
|
|
}
|
|
int PropertyType(const char *name) const {
|
|
typename OptionMap::const_iterator const it = nameToDef.find(name);
|
|
if (it != nameToDef.end()) {
|
|
return it->second.opType;
|
|
}
|
|
return SC_TYPE_BOOLEAN;
|
|
}
|
|
const char *DescribeProperty(const char *name) const {
|
|
typename OptionMap::const_iterator const it = nameToDef.find(name);
|
|
if (it != nameToDef.end()) {
|
|
return it->second.description.c_str();
|
|
}
|
|
return "";
|
|
}
|
|
|
|
bool PropertySet(T *base, const char *name, const char *val) {
|
|
typename OptionMap::iterator const it = nameToDef.find(name);
|
|
if (it != nameToDef.end()) {
|
|
return it->second.Set(base, val);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
const char *PropertyGet(const char *name) const {
|
|
typename OptionMap::const_iterator const it = nameToDef.find(name);
|
|
if (it != nameToDef.end()) {
|
|
return it->second.Get();
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void DefineWordListSets(const char * const wordListDescriptions[]) {
|
|
if (wordListDescriptions) {
|
|
for (size_t wl = 0; wordListDescriptions[wl]; wl++) {
|
|
if (wl > 0)
|
|
wordLists += "\n";
|
|
wordLists += wordListDescriptions[wl];
|
|
}
|
|
}
|
|
}
|
|
|
|
const char *DescribeWordListSets() const noexcept {
|
|
return wordLists.c_str();
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|