2020-05-01 02:28:58 +03:00
|
|
|
|
/*
|
|
|
|
|
|
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-05-01 02:28:58 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <LibGUI/INILexer.h>
|
|
|
|
|
|
#include <LibGUI/INISyntaxHighlighter.h>
|
|
|
|
|
|
#include <LibGUI/TextEditor.h>
|
|
|
|
|
|
#include <LibGfx/Font.h>
|
|
|
|
|
|
#include <LibGfx/Palette.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
2021-02-07 15:15:10 +01:00
|
|
|
|
static Syntax::TextStyle style_for_token_type(const Gfx::Palette& palette, IniToken::Type type)
|
2020-05-01 02:28:58 +03:00
|
|
|
|
{
|
|
|
|
|
|
switch (type) {
|
|
|
|
|
|
case IniToken::Type::LeftBracket:
|
|
|
|
|
|
case IniToken::Type::RightBracket:
|
|
|
|
|
|
case IniToken::Type::section:
|
2020-12-28 15:51:43 +01:00
|
|
|
|
return { palette.syntax_keyword(), true };
|
2020-05-01 02:28:58 +03:00
|
|
|
|
case IniToken::Type::Name:
|
|
|
|
|
|
return { palette.syntax_identifier() };
|
|
|
|
|
|
case IniToken::Type::Value:
|
|
|
|
|
|
return { palette.syntax_string() };
|
|
|
|
|
|
case IniToken::Type::Comment:
|
|
|
|
|
|
return { palette.syntax_comment() };
|
|
|
|
|
|
case IniToken::Type::Equal:
|
2020-12-28 15:51:43 +01:00
|
|
|
|
return { palette.syntax_operator(), true };
|
2020-05-01 02:28:58 +03:00
|
|
|
|
default:
|
|
|
|
|
|
return { palette.base_text() };
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool IniSyntaxHighlighter::is_identifier(void* token) const
|
|
|
|
|
|
{
|
|
|
|
|
|
auto ini_token = static_cast<GUI::IniToken::Type>(reinterpret_cast<size_t>(token));
|
|
|
|
|
|
return ini_token == GUI::IniToken::Type::Name;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-11 23:52:39 +01:00
|
|
|
|
void IniSyntaxHighlighter::rehighlight(const Palette& palette)
|
2020-05-01 02:28:58 +03:00
|
|
|
|
{
|
2021-02-07 16:56:02 +01:00
|
|
|
|
auto text = m_client->get_text();
|
2020-05-01 02:28:58 +03:00
|
|
|
|
IniLexer lexer(text);
|
|
|
|
|
|
auto tokens = lexer.lex();
|
|
|
|
|
|
|
|
|
|
|
|
Vector<GUI::TextDocumentSpan> spans;
|
|
|
|
|
|
for (auto& token : tokens) {
|
|
|
|
|
|
GUI::TextDocumentSpan span;
|
|
|
|
|
|
span.range.set_start({ token.m_start.line, token.m_start.column });
|
|
|
|
|
|
span.range.set_end({ token.m_end.line, token.m_end.column });
|
|
|
|
|
|
auto style = style_for_token_type(palette, token.m_type);
|
2021-01-02 20:31:45 +01:00
|
|
|
|
span.attributes.color = style.color;
|
|
|
|
|
|
span.attributes.bold = style.bold;
|
2020-05-01 02:28:58 +03:00
|
|
|
|
span.is_skippable = token.m_type == IniToken::Type::Whitespace;
|
|
|
|
|
|
span.data = reinterpret_cast<void*>(token.m_type);
|
|
|
|
|
|
spans.append(span);
|
|
|
|
|
|
}
|
2021-02-07 16:56:02 +01:00
|
|
|
|
m_client->do_set_spans(move(spans));
|
2020-05-01 02:28:58 +03:00
|
|
|
|
|
|
|
|
|
|
m_has_brace_buddies = false;
|
|
|
|
|
|
highlight_matching_token_pair();
|
|
|
|
|
|
|
2021-02-07 16:56:02 +01:00
|
|
|
|
m_client->do_update();
|
2020-05-01 02:28:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Vector<IniSyntaxHighlighter::MatchingTokenPair> IniSyntaxHighlighter::matching_token_pairs() const
|
|
|
|
|
|
{
|
2021-02-07 15:15:10 +01:00
|
|
|
|
static Vector<MatchingTokenPair> pairs;
|
2020-05-01 02:28:58 +03:00
|
|
|
|
if (pairs.is_empty()) {
|
|
|
|
|
|
pairs.append({ reinterpret_cast<void*>(IniToken::Type::LeftBracket), reinterpret_cast<void*>(IniToken::Type::RightBracket) });
|
|
|
|
|
|
}
|
|
|
|
|
|
return pairs;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool IniSyntaxHighlighter::token_types_equal(void* token1, void* token2) const
|
|
|
|
|
|
{
|
|
|
|
|
|
return static_cast<GUI::IniToken::Type>(reinterpret_cast<size_t>(token1)) == static_cast<GUI::IniToken::Type>(reinterpret_cast<size_t>(token2));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
IniSyntaxHighlighter::~IniSyntaxHighlighter()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|