godot/editor/gui/editor_spin_slider.cpp

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

#include "core/input/input.h"
#include "core/math/expression.h"
#include "core/os/keyboard.h"
#include "editor/editor_settings.h"
#include "editor/themes/editor_scale.h"
#include "scene/theme/theme_db.h"

bool EditorSpinSlider::is_text_field() const {}

String EditorSpinSlider::get_tooltip(const Point2 &p_pos) const {}

String EditorSpinSlider::get_text_value() const {}

void EditorSpinSlider::gui_input(const Ref<InputEvent> &p_event) {}

void EditorSpinSlider::_grab_start() {}

void EditorSpinSlider::_grab_end() {}

void EditorSpinSlider::_grabber_gui_input(const Ref<InputEvent> &p_event) {}

void EditorSpinSlider::_value_input_gui_input(const Ref<InputEvent> &p_event) {}

void EditorSpinSlider::_update_value_input_stylebox() {}

void EditorSpinSlider::_draw_spin_slider() {}

void EditorSpinSlider::_notification(int p_what) {}

LineEdit *EditorSpinSlider::get_line_edit() {}

Size2 EditorSpinSlider::get_minimum_size() const {}

void EditorSpinSlider::set_hide_slider(bool p_hide) {}

bool EditorSpinSlider::is_hiding_slider() const {}

void EditorSpinSlider::set_label(const String &p_label) {}

String EditorSpinSlider::get_label() const {}

void EditorSpinSlider::set_suffix(const String &p_suffix) {}

String EditorSpinSlider::get_suffix() const {}

void EditorSpinSlider::_evaluate_input_text() {}

//text_submitted signal
void EditorSpinSlider::_value_input_submitted(const String &p_text) {}

//modal_closed signal
void EditorSpinSlider::_value_input_closed() {}

//focus_exited signal
void EditorSpinSlider::_value_focus_exited() {}

void EditorSpinSlider::_grabber_mouse_entered() {}

void EditorSpinSlider::_grabber_mouse_exited() {}

void EditorSpinSlider::set_read_only(bool p_enable) {}

bool EditorSpinSlider::is_read_only() const {}

void EditorSpinSlider::set_flat(bool p_enable) {}

bool EditorSpinSlider::is_flat() const {}

bool EditorSpinSlider::is_grabbing() const {}

void EditorSpinSlider::_focus_entered() {}

void EditorSpinSlider::_bind_methods() {}

void EditorSpinSlider::_ensure_input_popup() {}

EditorSpinSlider::EditorSpinSlider() {}