godot/scene/gui/spin_box.cpp

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

#include "core/input/input.h"
#include "core/math/expression.h"
#include "scene/theme/theme_db.h"

Size2 SpinBox::get_minimum_size() const {}

void SpinBox::_update_text(bool p_keep_line_edit) {}

void SpinBox::_text_submitted(const String &p_string) {}

void SpinBox::_text_changed(const String &p_string) {}

LineEdit *SpinBox::get_line_edit() {}

void SpinBox::_line_edit_input(const Ref<InputEvent> &p_event) {}

void SpinBox::_range_click_timeout() {}

void SpinBox::_release_mouse_from_drag_mode() {}

void SpinBox::_mouse_exited() {}

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

void SpinBox::_line_edit_editing_toggled(bool p_toggled_on) {}

inline void SpinBox::_compute_sizes() {}

inline int SpinBox::_get_widest_button_icon_width() {}

void SpinBox::_notification(int p_what) {}

void SpinBox::set_horizontal_alignment(HorizontalAlignment p_alignment) {}

HorizontalAlignment SpinBox::get_horizontal_alignment() const {}

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

String SpinBox::get_suffix() const {}

void SpinBox::set_prefix(const String &p_prefix) {}

String SpinBox::get_prefix() const {}

void SpinBox::set_update_on_text_changed(bool p_enabled) {}

bool SpinBox::get_update_on_text_changed() const {}

void SpinBox::set_select_all_on_focus(bool p_enabled) {}

bool SpinBox::is_select_all_on_focus() const {}

void SpinBox::set_editable(bool p_enabled) {}

bool SpinBox::is_editable() const {}

void SpinBox::apply() {}

void SpinBox::set_custom_arrow_step(double p_custom_arrow_step) {}

double SpinBox::get_custom_arrow_step() const {}

void SpinBox::_value_changed(double p_value) {}

void SpinBox::_update_buttons_state_for_current_value() {}

void SpinBox::_bind_methods() {}

SpinBox::SpinBox() {}