godot/scene/resources/syntax_highlighter.cpp

/**************************************************************************/
/*  syntax_highlighter.cpp                                                */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "syntax_highlighter.h"

#include "core/object/script_language.h"
#include "scene/gui/text_edit.h"

Dictionary SyntaxHighlighter::get_line_syntax_highlighting(int p_line) {}

void SyntaxHighlighter::_lines_edited_from(int p_from_line, int p_to_line) {}

void SyntaxHighlighter::clear_highlighting_cache() {}

void SyntaxHighlighter::update_cache() {}

void SyntaxHighlighter::set_text_edit(TextEdit *p_text_edit) {}

TextEdit *SyntaxHighlighter::get_text_edit() const {}

void SyntaxHighlighter::_bind_methods() {}

////////////////////////////////////////////////////////////////////////////////

Dictionary CodeHighlighter::_get_line_syntax_highlighting_impl(int p_line) {}

void CodeHighlighter::_clear_highlighting_cache() {}

void CodeHighlighter::_update_cache() {}

void CodeHighlighter::add_keyword_color(const String &p_keyword, const Color &p_color) {}

void CodeHighlighter::remove_keyword_color(const String &p_keyword) {}

bool CodeHighlighter::has_keyword_color(const String &p_keyword) const {}

Color CodeHighlighter::get_keyword_color(const String &p_keyword) const {}

void CodeHighlighter::set_keyword_colors(const Dictionary p_keywords) {}

void CodeHighlighter::clear_keyword_colors() {}

Dictionary CodeHighlighter::get_keyword_colors() const {}

void CodeHighlighter::add_member_keyword_color(const String &p_member_keyword, const Color &p_color) {}

void CodeHighlighter::remove_member_keyword_color(const String &p_member_keyword) {}

bool CodeHighlighter::has_member_keyword_color(const String &p_member_keyword) const {}

Color CodeHighlighter::get_member_keyword_color(const String &p_member_keyword) const {}

void CodeHighlighter::set_member_keyword_colors(const Dictionary &p_member_keywords) {}

void CodeHighlighter::clear_member_keyword_colors() {}

Dictionary CodeHighlighter::get_member_keyword_colors() const {}

void CodeHighlighter::add_color_region(const String &p_start_key, const String &p_end_key, const Color &p_color, bool p_line_only) {}

void CodeHighlighter::remove_color_region(const String &p_start_key) {}

bool CodeHighlighter::has_color_region(const String &p_start_key) const {}

void CodeHighlighter::set_color_regions(const Dictionary &p_color_regions) {}

void CodeHighlighter::clear_color_regions() {}

Dictionary CodeHighlighter::get_color_regions() const {}

void CodeHighlighter::_bind_methods() {}

void CodeHighlighter::set_uint_suffix_enabled(bool p_enabled) {}

void CodeHighlighter::set_number_color(Color p_color) {}

Color CodeHighlighter::get_number_color() const {}

void CodeHighlighter::set_symbol_color(Color p_color) {}

Color CodeHighlighter::get_symbol_color() const {}

void CodeHighlighter::set_function_color(Color p_color) {}

Color CodeHighlighter::get_function_color() const {}

void CodeHighlighter::set_member_variable_color(Color p_color) {}

Color CodeHighlighter::get_member_variable_color() const {}