Merge pull request #116826 from Repiteo/style/class-db-explicit-include

Style: Add `class_db.h` includes explicitly
This commit is contained in:
Thaddeus Crews 2026-02-26 16:18:45 -06:00
commit f630133a01
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
740 changed files with 1145 additions and 40 deletions

View file

@ -81,3 +81,6 @@ c5df0cb82bc539eff7dcfb2add99d60771fc50c5
# Move RenderingServer enums to a dedicated RenderingServerEnums (`RSE`) namespace
f5a290ac462765afca34e64dd39f883511510147
# Style: Add `class_db.h` includes explicitly
e380a417526c11f15a9ddb3997292409b10da2af

View file

@ -38,6 +38,7 @@
#include "core/io/file_access_pack.h"
#include "core/io/marshalls.h"
#include "core/io/resource_uid.h"
#include "core/object/class_db.h"
#include "core/object/message_queue.h"
#include "core/object/script_language.h"
#include "core/templates/rb_set.h"

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "core_bind.h"
#include "core/object/class_db.h"
namespace CoreBind {
// Semaphore

View file

@ -39,6 +39,7 @@
#include "core/io/marshalls.h"
#include "core/math/geometry_2d.h"
#include "core/math/geometry_3d.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "core/os/main_loop.h"
#include "core/os/thread_safe.h"

View file

@ -30,6 +30,8 @@
#include "core/crypto/aes_context.h"
#include "core/object/class_db.h"
Error AESContext::start(Mode p_mode, const PackedByteArray &p_key, const PackedByteArray &p_iv) {
ERR_FAIL_COND_V_MSG(mode != MODE_MAX, ERR_ALREADY_IN_USE, "AESContext already started. Call 'finish' before starting a new one.");
ERR_FAIL_COND_V_MSG(p_mode < 0 || p_mode >= MODE_MAX, ERR_INVALID_PARAMETER, "Invalid mode requested.");

View file

@ -30,6 +30,8 @@
#include "crypto.h"
#include "core/object/class_db.h"
/// Resources
CryptoKey *(*CryptoKey::_create)(bool p_notify_postinitialize) = nullptr;

View file

@ -31,6 +31,7 @@
#include "hashing_context.h"
#include "core/crypto/crypto_core.h"
#include "core/object/class_db.h"
Error HashingContext::start(HashType p_type) {
ERR_FAIL_COND_V(ctx != nullptr, ERR_ALREADY_IN_USE);

View file

@ -31,6 +31,7 @@
#include "engine_profiler.h"
#include "core/debugger/engine_debugger.h"
#include "core/object/class_db.h"
void EngineProfiler::_bind_methods() {
GDVIRTUAL_BIND(_toggle, "enable", "options");

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "gdextension.h"
#include "core/object/class_db.h"
Error GDExtension::_open_library_bind_compat_88418(const String &p_path, const String &p_entry_symbol) {
return ERR_UNAVAILABLE;
}
@ -46,4 +50,4 @@ void GDExtension::_bind_compatibility_methods() {
ClassDB::bind_compatibility_method(D_METHOD("initialize_library", "level"), &GDExtension::_initialize_library_bind_compat_88418);
}
#endif
#endif // DISABLE_DEPRECATED

View file

@ -35,6 +35,7 @@
#include "core/extension/gdextension_special_compat_hashes.h"
#include "core/io/dir_access.h"
#include "core/io/file_access.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
GDExtensionManager::LoadStatus GDExtensionManager::_load_extension_internal(const Ref<GDExtension> &p_extension, bool p_first_load) {

View file

@ -31,6 +31,7 @@
#include "godot_instance.h"
#include "core/extension/gdextension_manager.h"
#include "core/object/class_db.h"
#include "core/os/main_loop.h"
#include "main/main.h"
#include "servers/display/display_server.h"

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "input.h"
#include "core/object/class_db.h"
void Input::_vibrate_handheld_bind_compat_91143(int p_duration_ms) {
vibrate_handheld(p_duration_ms, -1.0);
}

View file

@ -34,6 +34,7 @@
#include "core/config/project_settings.h"
#include "core/input/default_controller_mappings.h"
#include "core/input/input_map.h"
#include "core/object/class_db.h"
#include "core/os/os.h"
#ifdef DEV_ENABLED

View file

@ -32,6 +32,7 @@
#include "core/input/input_map.h"
#include "core/input/shortcut.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "core/os/os.h"

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "input_map.h"
#include "core/object/class_db.h"
void InputMap::_add_action_bind_compat_97281(const StringName &p_action, float p_deadzone) {
add_action(p_action, p_deadzone);
}

View file

@ -33,6 +33,7 @@
#include "core/config/project_settings.h"
#include "core/input/input.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "core/os/os.h"
#include "core/variant/typed_array.h"

View file

@ -30,6 +30,8 @@
#include "shortcut.h"
#include "core/object/class_db.h"
void Shortcut::set_events(const Array &p_events) {
for (int i = 0; i < p_events.size(); i++) {
Ref<InputEventShortcut> ies = p_events[i];

View file

@ -31,6 +31,7 @@
#include "config_file.h"
#include "core/io/file_access_encrypted.h"
#include "core/object/class_db.h"
#include "core/string/string_builder.h"
#include "core/variant/variant_parser.h"

View file

@ -32,6 +32,7 @@
#include "core/config/project_settings.h"
#include "core/io/file_access.h"
#include "core/object/class_db.h"
#include "core/os/os.h"
#include "core/os/time.h"
#include "core/templates/local_vector.h"

View file

@ -30,6 +30,8 @@
#include "dtls_server.h"
#include "core/object/class_db.h"
DTLSServer *DTLSServer::create(bool p_notify_postinitialize) {
if (_create) {
return _create(p_notify_postinitialize);

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "file_access.h"
#include "core/object/class_db.h"
Ref<FileAccess> FileAccess::_open_encrypted_bind_compat_98918(const String &p_path, ModeFlags p_mode_flags, const Vector<uint8_t> &p_key) {
return open_encrypted(p_path, p_mode_flags, p_key, Vector<uint8_t>());
}
@ -123,4 +127,4 @@ void FileAccess::_bind_compatibility_methods() {
ClassDB::bind_compatibility_method(D_METHOD("get_as_text", "skip_cr"), &FileAccess::get_as_text_bind_compat_110867, DEFVAL(false));
}
#endif
#endif // DISABLE_DEPRECATED

View file

@ -38,6 +38,7 @@
#include "core/io/file_access_pack.h"
#include "core/io/marshalls.h"
#include "core/io/resource_uid.h"
#include "core/object/class_db.h"
#include "core/os/os.h"
#include "core/os/time.h"

View file

@ -30,6 +30,8 @@
#include "http_client.h"
#include "core/object/class_db.h"
const char *HTTPClient::_methods[METHOD_MAX] = {
"GET",
"HEAD",

View file

@ -35,6 +35,7 @@
#include "core/io/image_loader.h"
#include "core/io/resource_loader.h"
#include "core/math/math_funcs.h"
#include "core/object/class_db.h"
#include "core/templates/hash_map.h"
#include "core/variant/dictionary.h"

View file

@ -30,6 +30,8 @@
#include "image_loader.h"
#include "core/object/class_db.h"
void ImageFormatLoader::_bind_methods() {
BIND_BITFIELD_FLAG(FLAG_NONE);
BIND_BITFIELD_FLAG(FLAG_FORCE_LINEAR);

View file

@ -30,6 +30,7 @@
#include "ip.h"
#include "core/object/class_db.h"
#include "core/os/semaphore.h"
#include "core/os/thread.h"
#include "core/templates/hash_map.h"

View file

@ -32,6 +32,7 @@
#include "core/config/engine.h"
#include "core/io/file_access.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
#include "core/variant/container_type_validate.h"

View file

@ -31,6 +31,7 @@
#include "marshalls.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/object/ref_counted.h"
#include "core/object/script_language.h"
#include "core/variant/container_type_validate.h"

View file

@ -30,6 +30,8 @@
#include "missing_resource.h"
#include "core/object/class_db.h"
bool MissingResource::_set(const StringName &p_name, const Variant &p_value) {
if (is_recording_properties()) {
properties.insert(p_name, p_value);

View file

@ -31,6 +31,7 @@
#include "packed_data_container.h"
#include "core/io/marshalls.h"
#include "core/object/class_db.h"
Variant PackedDataContainer::getvar(const Variant &p_key, bool *r_valid) const {
bool err = false;

View file

@ -32,6 +32,7 @@
#include "core/config/project_settings.h"
#include "core/io/marshalls.h"
#include "core/object/class_db.h"
/* helpers / binders */

View file

@ -30,6 +30,8 @@
#include "packet_peer_dtls.h"
#include "core/object/class_db.h"
PacketPeerDTLS *PacketPeerDTLS::create(bool p_notify_postinitialize) {
if (_create) {
return _create(p_notify_postinitialize);

View file

@ -32,6 +32,7 @@
#include "core/io/ip.h"
#include "core/io/udp_server.h"
#include "core/object/class_db.h"
void PacketPeerUDP::set_blocking_mode(bool p_enable) {
blocking = p_enable;

View file

@ -34,6 +34,7 @@
#include "core/io/file_access.h"
#include "core/io/file_access_encrypted.h"
#include "core/io/file_access_pack.h" // PACK_HEADER_MAGIC, PACK_FORMAT_VERSION
#include "core/object/class_db.h"
#include "core/version.h"
static int _get_pad(int p_alignment, int p_n) {

View file

@ -33,6 +33,7 @@
#include "core/io/resource_loader.h"
#include "core/math/math_funcs.h"
#include "core/math/random_pcg.h"
#include "core/object/class_db.h"
#include "core/os/os.h"
#include "core/variant/container_type_validate.h"
#include "scene/main/node.h" //only so casting works

View file

@ -33,6 +33,7 @@
#include "core/config/project_settings.h"
#include "core/io/config_file.h"
#include "core/io/image.h"
#include "core/object/class_db.h"
#include "core/os/os.h"
#include "core/variant/variant_parser.h"

View file

@ -35,6 +35,7 @@
#include "core/io/dir_access.h"
#include "core/io/file_access.h"
#include "core/io/resource_importer.h"
#include "core/object/class_db.h"
#include "core/object/message_queue.h"
#include "core/object/script_language.h"
#include "core/os/condition_variable.h"

View file

@ -29,9 +29,11 @@
/**************************************************************************/
#include "resource_saver.h"
#include "core/config/project_settings.h"
#include "core/io/file_access.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
Ref<ResourceFormatSaver> ResourceSaver::saver[MAX_SAVERS];

View file

@ -36,6 +36,7 @@
#include "core/io/file_access.h"
#include "core/io/resource_loader.h"
#include "core/math/random_pcg.h"
#include "core/object/class_db.h"
// These constants are off by 1, causing the 'z' and '9' characters never to be used.
// This cannot be fixed without breaking compatibility; see GH-83843.

View file

@ -30,6 +30,8 @@
#include "socket_server.h"
#include "core/object/class_db.h"
void SocketServer::_bind_methods() {
ClassDB::bind_method(D_METHOD("is_connection_available"), &SocketServer::is_connection_available);
ClassDB::bind_method(D_METHOD("is_listening"), &SocketServer::is_listening);

View file

@ -31,6 +31,7 @@
#include "stream_peer.h"
#include "core/io/marshalls.h"
#include "core/object/class_db.h"
Error StreamPeer::_put_data(const Vector<uint8_t> &p_data) {
int len = p_data.size();

View file

@ -31,6 +31,8 @@
#include "core/io/stream_peer_gzip.h"
#include "core/io/zip_io.h"
#include "core/object/class_db.h"
#include <zlib.h>
void StreamPeerGZIP::_bind_methods() {

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "stream_peer_socket.h"
#include "core/object/class_db.h"
namespace compat::StreamPeerTCP {
enum class Status {
STATUS_NONE = StreamPeerSocket::STATUS_NONE,
@ -49,4 +53,4 @@ void StreamPeerSocket::_bind_compatibility_methods() {
ClassDB::bind_compatibility_method(D_METHOD("get_status"), &StreamPeerSocket::_get_status_compat_107954);
}
#endif
#endif // DISABLE_DEPRECATED

View file

@ -31,6 +31,8 @@
#include "stream_peer_socket.h"
#include "stream_peer_socket.compat.inc"
#include "core/object/class_db.h"
Error StreamPeerSocket::poll() {
if (status == STATUS_CONNECTED) {
Error err;

View file

@ -31,6 +31,7 @@
#include "stream_peer_tcp.h"
#include "core/config/project_settings.h"
#include "core/object/class_db.h"
void StreamPeerTCP::accept_socket(Ref<NetSocket> p_sock, const NetSocket::Address &p_addr) {
_sock = p_sock;

View file

@ -31,6 +31,7 @@
#include "stream_peer_tls.h"
#include "core/config/engine.h"
#include "core/object/class_db.h"
StreamPeerTLS *(*StreamPeerTLS::_create)(bool p_notify_postinitialize) = nullptr;

View file

@ -31,6 +31,7 @@
#include "stream_peer_uds.h"
#include "core/config/project_settings.h"
#include "core/object/class_db.h"
void StreamPeerUDS::_bind_methods() {
ClassDB::bind_method(D_METHOD("bind", "path"), &StreamPeerUDS::bind);

View file

@ -30,6 +30,8 @@
#include "tcp_server.h"
#include "core/object/class_db.h"
void TCPServer::_bind_methods() {
ClassDB::bind_method(D_METHOD("listen", "port", "bind_address"), &TCPServer::listen, DEFVAL("*"));
ClassDB::bind_method(D_METHOD("get_local_port"), &TCPServer::get_local_port);

View file

@ -30,6 +30,8 @@
#include "udp_server.h"
#include "core/object/class_db.h"
void UDPServer::_bind_methods() {
ClassDB::bind_method(D_METHOD("listen", "port", "bind_address"), &UDPServer::listen, DEFVAL("*"));
ClassDB::bind_method(D_METHOD("poll"), &UDPServer::poll);

View file

@ -30,6 +30,8 @@
#include "uds_server.h"
#include "core/object/class_db.h"
void UDSServer::_bind_methods() {
ClassDB::bind_method(D_METHOD("listen", "path"), &UDSServer::listen);
ClassDB::bind_method(D_METHOD("take_connection"), &UDSServer::take_connection);

View file

@ -31,6 +31,7 @@
#include "xml_parser.h"
#include "core/io/file_access.h"
#include "core/object/class_db.h"
//#define DEBUG_XML

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "a_star.h"
#include "core/object/class_db.h"
Vector<int64_t> AStar3D::_get_id_path_bind_compat_88047(int64_t p_from_id, int64_t p_to_id) {
return get_id_path(p_from_id, p_to_id, false);
}

View file

@ -32,6 +32,7 @@
#include "a_star.compat.inc"
#include "core/math/geometry_3d.h"
#include "core/object/class_db.h"
int64_t AStar3D::get_available_point_id() const {
if (points.has(last_free_id)) {

View file

@ -30,6 +30,9 @@
#ifndef DISABLE_DEPRECATED
#include "a_star_grid_2d.h"
#include "core/object/class_db.h"
#include "core/variant/typed_array.h"
TypedArray<Vector2i> AStarGrid2D::_get_id_path_bind_compat_88047(const Vector2i &p_from_id, const Vector2i &p_to_id) {

View file

@ -31,6 +31,7 @@
#include "a_star_grid_2d.h"
#include "a_star_grid_2d.compat.inc"
#include "core/object/class_db.h"
#include "core/variant/typed_array.h"
static real_t heuristic_euclidean(const Vector2i &p_from, const Vector2i &p_to) {

View file

@ -30,6 +30,8 @@
#include "random_number_generator.h"
#include "core/object/class_db.h"
void RandomNumberGenerator::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_seed", "seed"), &RandomNumberGenerator::set_seed);
ClassDB::bind_method(D_METHOD("get_seed"), &RandomNumberGenerator::get_seed);

View file

@ -30,6 +30,7 @@
#include "triangle_mesh.h"
#include "core/object/class_db.h"
#include "core/templates/sort_array.h"
int TriangleMesh::_create_bvh(BVH *p_bvh, BVH **p_bb, int p_from, int p_size, int p_depth, int &r_max_depth, int &r_max_alloc) {

View file

@ -30,6 +30,7 @@
#include "ref_counted.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
bool RefCounted::init_ref() {

View file

@ -30,6 +30,7 @@
#include "script_backtrace.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
void ScriptBacktrace::_store_variables(const List<String> &p_names, const List<Variant> &p_values, LocalVector<StackVariable> &r_variables) {

View file

@ -35,6 +35,7 @@
#include "core/debugger/engine_debugger.h"
#include "core/debugger/script_debugger.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/templates/sort_array.h"
ScriptLanguage *ScriptServer::_languages[MAX_LANGUAGES];

View file

@ -30,6 +30,8 @@
#include "script_language_extension.h"
#include "core/object/class_db.h"
void ScriptExtension::_bind_methods() {
GDVIRTUAL_BIND(_editor_can_reload_from_file);
GDVIRTUAL_BIND(_placeholder_erased, "placeholder");

View file

@ -31,6 +31,7 @@
#include "undo_redo.h"
#include "core/io/resource.h"
#include "core/object/class_db.h"
#include "core/os/os.h"
#include "core/templates/local_vector.h"
#include "core/variant/callable_bind.h"

View file

@ -30,6 +30,7 @@
#include "worker_thread_pool.h"
#include "core/object/class_db.h"
#include "core/object/message_queue.h"
#include "core/object/script_language.h"
#include "core/os/os.h"

View file

@ -30,6 +30,7 @@
#include "time.h" // NOLINT(modernize-deprecated-headers) False positive with C-Header of the same name.
#include "core/object/class_db.h"
#include "core/os/os.h"
#define UNIX_EPOCH_YEAR_AD 1970 // 1970

View file

@ -30,6 +30,7 @@
#include "optimized_translation.h"
#include "core/object/class_db.h"
#include "core/templates/pair.h"
extern "C" {

View file

@ -30,6 +30,7 @@
#include "translation.h"
#include "core/object/class_db.h"
#include "core/os/thread.h"
#include "core/string/plural_rules.h"
#include "core/string/translation_server.h"

View file

@ -30,6 +30,7 @@
#include "translation_domain.h"
#include "core/object/class_db.h"
#include "core/string/translation.h"
#include "core/string/translation_server.h"
#include "core/variant/typed_array.h"

View file

@ -30,6 +30,10 @@
#ifndef DISABLE_DEPRECATED
#include "translation_server.h"
#include "core/object/class_db.h"
String TranslationServer::_standardize_locale_bind_compat_98972(const String &p_locale) const {
return standardize_locale(p_locale, false);
}

View file

@ -33,6 +33,7 @@
#include "core/config/project_settings.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/os/main_loop.h"
#include "core/os/os.h"
#include "core/string/locales.h"

View file

@ -37,6 +37,8 @@
#import <UIKit/UIKit.h>
#include <sys/sysctl.h>
#include "core/object/class_db.h"
void AppleEmbedded::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_rate_url", "app_id"), &AppleEmbedded::get_rate_url);
ClassDB::bind_method(D_METHOD("supports_haptic_engine"), &AppleEmbedded::supports_haptic_engine);

View file

@ -30,6 +30,7 @@
#include "animation_bezier_editor.h"
#include "core/object/class_db.h"
#include "core/string/translation_server.h"
#include "editor/animation/animation_player_editor_plugin.h"
#include "editor/editor_node.h"

View file

@ -30,6 +30,7 @@
#include "animation_blend_space_1d_editor.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"

View file

@ -32,6 +32,7 @@
#include "core/io/resource_loader.h"
#include "core/math/geometry_2d.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"

View file

@ -32,6 +32,7 @@
#include "core/config/project_settings.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/templates/rb_set.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"

View file

@ -31,6 +31,7 @@
#include "animation_library_editor.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/string/ustring.h"
#include "core/templates/vector.h"
#include "core/variant/variant.h"

View file

@ -32,6 +32,7 @@
#include "core/config/project_settings.h"
#include "core/input/input.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "editor/animation/animation_tree_editor_plugin.h"
#include "editor/docks/editor_dock_manager.h"

View file

@ -32,6 +32,7 @@
#include "core/io/resource_loader.h"
#include "core/math/geometry_2d.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "editor/editor_node.h"
#include "editor/editor_undo_redo_manager.h"

View file

@ -34,6 +34,7 @@
#include "core/config/project_settings.h"
#include "core/error/error_macros.h"
#include "core/input/input.h"
#include "core/object/class_db.h"
#include "core/string/translation_server.h"
#include "editor/animation/animation_bezier_editor.h"
#include "editor/animation/animation_player_editor_plugin.h"

View file

@ -33,6 +33,7 @@
#include "core/io/dir_access.h"
#include "core/io/json.h"
#include "core/io/stream_peer_tls.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "core/version.h"
#include "editor/editor_main_screen.h"

View file

@ -30,6 +30,8 @@
#include "audio_stream_preview.h"
#include "core/object/class_db.h"
/////////////////////
float AudioStreamPreview::get_length() const {

View file

@ -33,6 +33,7 @@
#include "core/config/project_settings.h"
#include "core/input/input.h"
#include "core/io/resource_saver.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "editor/docks/editor_dock_manager.h"
#include "editor/docks/filesystem_dock.h"

View file

@ -30,6 +30,7 @@
#include "debug_adapter_parser.h"
#include "core/object/class_db.h"
#include "editor/debugger/debug_adapter/debug_adapter_protocol.h"
#include "editor/debugger/editor_debugger_node.h"
#include "editor/debugger/script_editor_debugger.h"

View file

@ -33,6 +33,7 @@
#include "core/debugger/debugger_marshalls.h"
#include "core/io/marshalls.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/variant/typed_dictionary.h"
#include "editor/docks/inspector_dock.h"
#include "editor/editor_node.h"

View file

@ -31,6 +31,7 @@
#include "editor_debugger_node.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/object/undo_redo.h"
#include "editor/debugger/editor_debugger_plugin.h"
#include "editor/debugger/editor_debugger_tree.h"

View file

@ -30,6 +30,7 @@
#include "editor_debugger_plugin.h"
#include "core/object/class_db.h"
#include "editor/debugger/script_editor_debugger.h"
void EditorDebuggerSession::_breaked(bool p_really_did, bool p_can_debug, const String &p_message, bool p_has_stackdump) {

View file

@ -31,6 +31,7 @@
#include "editor_debugger_tree.h"
#include "core/io/resource_saver.h"
#include "core/object/class_db.h"
#include "editor/debugger/editor_debugger_node.h"
#include "editor/docks/scene_tree_dock.h"
#include "editor/editor_node.h"

View file

@ -31,6 +31,7 @@
#include "editor_profiler.h"
#include "core/io/image.h"
#include "core/object/class_db.h"
#include "core/string/translation_server.h"
#include "editor/editor_string_names.h"
#include "editor/run/editor_run_bar.h"

View file

@ -31,6 +31,7 @@
#include "editor_visual_profiler.h"
#include "core/io/image.h"
#include "core/object/class_db.h"
#include "core/string/translation_server.h"
#include "editor/editor_string_names.h"
#include "editor/run/editor_run_bar.h"

View file

@ -33,6 +33,7 @@
#include "core/config/project_settings.h"
#include "core/debugger/debugger_marshalls.h"
#include "core/debugger/remote_debugger.h"
#include "core/object/class_db.h"
#include "core/string/ustring.h"
#include "core/variant/typed_dictionary.h"
#include "core/version.h"

View file

@ -35,6 +35,7 @@
#include "core/extension/gdextension.h"
#include "core/input/input.h"
#include "core/io/json.h"
#include "core/object/class_db.h"
#include "core/object/script_language.h"
#include "core/os/keyboard.h"
#include "core/string/string_builder.h"

View file

@ -30,6 +30,7 @@
#include "editor_help_search.h"
#include "core/object/class_db.h"
#include "editor/editor_main_screen.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"

View file

@ -32,6 +32,7 @@
#include "core/input/shortcut.h"
#include "core/io/config_file.h"
#include "core/object/class_db.h"
#include "editor/docks/dock_tab_container.h"
#include "editor/docks/editor_dock_manager.h"

View file

@ -30,6 +30,7 @@
#include "editor_dock_manager.h"
#include "core/object/class_db.h"
#include "scene/gui/box_container.h"
#include "scene/gui/button.h"
#include "scene/gui/label.h"

View file

@ -35,6 +35,7 @@
#include "core/io/dir_access.h"
#include "core/io/file_access.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/os/keyboard.h"
#include "core/os/os.h"
#include "core/templates/list.h"

View file

@ -30,6 +30,7 @@
#include "groups_editor.h"
#include "core/object/class_db.h"
#include "editor/docks/scene_tree_dock.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"

View file

@ -31,6 +31,7 @@
#include "import_dock.h"
#include "core/config/project_settings.h"
#include "core/object/class_db.h"
#include "editor/editor_node.h"
#include "editor/editor_string_names.h"
#include "editor/editor_undo_redo_manager.h"

View file

@ -30,6 +30,7 @@
#include "inspector_dock.h"
#include "core/object/class_db.h"
#include "editor/debugger/editor_debugger_inspector.h"
#include "editor/debugger/editor_debugger_node.h"
#include "editor/docks/filesystem_dock.h"

View file

@ -34,6 +34,7 @@
#include "core/extension/gdextension_manager.h"
#include "core/io/file_access.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/os/time.h"
#include "editor/editor_node.h"
#include "editor/editor_undo_redo_manager.h"

View file

@ -28,9 +28,11 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/**************************************************************************/
#ifndef DISABLE_DEPRECATED
#include "editor_interface.h"
#ifndef DISABLE_DEPRECATED
#include "core/object/class_db.h"
void EditorInterface::_popup_node_selector_bind_compat_94323(const Callable &p_callback, const TypedArray<StringName> &p_valid_types) {
popup_node_selector(p_callback, p_valid_types, nullptr);
@ -50,4 +52,4 @@ void EditorInterface::_bind_compatibility_methods() {
ClassDB::bind_compatibility_method(D_METHOD("open_scene_from_path", "scene_path"), &EditorInterface::_open_scene_from_path_bind_compat_90057);
}
#endif
#endif // DISABLE_DEPRECATED

View file

@ -33,6 +33,7 @@
#include "core/config/project_settings.h"
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "editor/docks/filesystem_dock.h"
#include "editor/docks/inspector_dock.h"
#include "editor/editor_main_screen.h"

Some files were not shown because too many files have changed in this diff Show more