godot/editor/editor_log.cpp

/**************************************************************************/
/*  editor_log.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 "editor_log.h"

#include "core/object/undo_redo.h"
#include "core/os/keyboard.h"
#include "core/version.h"
#include "editor/editor_node.h"
#include "editor/editor_paths.h"
#include "editor/editor_settings.h"
#include "editor/editor_string_names.h"
#include "editor/themes/editor_scale.h"
#include "scene/gui/center_container.h"
#include "scene/gui/separator.h"
#include "scene/resources/font.h"

void EditorLog::_error_handler(void *p_self, const char *p_func, const char *p_file, int p_line, const char *p_error, const char *p_errorexp, bool p_editor_notify, ErrorHandlerType p_type) {}

void EditorLog::_update_theme() {}

void EditorLog::_editor_settings_changed() {}

void EditorLog::_notification(int p_what) {}

void EditorLog::_set_collapse(bool p_collapse) {}

void EditorLog::_start_state_save_timer() {}

void EditorLog::_save_state() {}

void EditorLog::_load_state() {}

void EditorLog::_meta_clicked(const String &p_meta) {}

void EditorLog::_clear_request() {}

void EditorLog::_copy_request() {}

void EditorLog::clear() {}

void EditorLog::_process_message(const String &p_msg, MessageType p_type, bool p_clear) {}

void EditorLog::add_message(const String &p_msg, MessageType p_type) {}

void EditorLog::set_tool_button(Button *p_tool_button) {}

void EditorLog::register_undo_redo(UndoRedo *p_undo_redo) {}

void EditorLog::_undo_redo_cbk(void *p_self, const String &p_name) {}

void EditorLog::_rebuild_log() {}

bool EditorLog::_check_display_message(LogMessage &p_message) {}

void EditorLog::_add_log_line(LogMessage &p_message, bool p_replace_previous) {}

void EditorLog::_set_filter_active(bool p_active, MessageType p_message_type) {}

void EditorLog::_set_search_visible(bool p_visible) {}

void EditorLog::_search_changed(const String &p_text) {}

void EditorLog::_reset_message_counts() {}

EditorLog::EditorLog() {}

void EditorLog::deinit() {}

EditorLog::~EditorLog() {}