2018-05-16 19:19:33 +02:00
/*************************************************************************/
/* editor_spin_slider.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2021-01-01 20:13:46 +01:00
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
2018-05-16 19:19:33 +02:00
/* */
/* 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. */
/*************************************************************************/
2018-05-15 22:12:35 +02:00
# include "editor_spin_slider.h"
2020-03-04 17:36:09 +01:00
2020-04-28 15:19:37 +02:00
# include "core/input/input.h"
2018-09-11 18:13:45 +02:00
# include "core/math/expression.h"
2021-08-02 12:43:43 +02:00
# include "core/os/keyboard.h"
2020-02-15 02:18:24 +01:00
# include "editor_node.h"
2018-05-15 22:12:35 +02:00
# include "editor_scale.h"
2018-08-07 17:19:19 +02:00
String EditorSpinSlider : : get_tooltip ( const Point2 & p_pos ) const {
2020-05-06 02:38:15 +02:00
if ( grabber - > is_visible ( ) ) {
2021-08-02 12:43:43 +02:00
# ifdef OSX_ENABLED
const int key = KEY_META ;
# else
const int key = KEY_CTRL ;
# endif
return TS - > format_number ( rtos ( get_value ( ) ) ) + " \n \n " + vformat ( TTR ( " Hold %s to round to integers. Hold Shift for more precise changes. " ) , find_keycode_name ( key ) ) ;
2020-05-06 02:38:15 +02:00
}
2020-09-03 13:22:16 +02:00
return TS - > format_number ( rtos ( get_value ( ) ) ) ;
2018-08-07 17:19:19 +02:00
}
2018-05-15 22:12:35 +02:00
String EditorSpinSlider : : get_text_value ( ) const {
2020-09-03 13:22:16 +02:00
return TS - > format_number ( String : : num ( get_value ( ) , Math : : range_step_decimals ( get_step ( ) ) ) ) ;
2018-05-15 22:12:35 +02:00
}
2019-07-23 17:27:55 +02:00
2018-05-15 22:12:35 +02:00
void EditorSpinSlider : : _gui_input ( const Ref < InputEvent > & p_event ) {
2021-04-05 08:52:21 +02:00
ERR_FAIL_COND ( p_event . is_null ( ) ) ;
2020-05-14 16:41:43 +02:00
if ( read_only ) {
2018-06-07 17:46:14 +02:00
return ;
2020-05-14 16:41:43 +02:00
}
2018-06-07 17:46:14 +02:00
2018-05-15 22:12:35 +02:00
Ref < InputEventMouseButton > mb = p_event ;
2019-08-17 21:12:05 +02:00
if ( mb . is_valid ( ) ) {
2021-01-08 04:37:37 +01:00
if ( mb - > get_button_index ( ) = = MOUSE_BUTTON_LEFT ) {
2019-08-17 21:12:05 +02:00
if ( mb - > is_pressed ( ) ) {
if ( updown_offset ! = - 1 & & mb - > get_position ( ) . x > updown_offset ) {
//there is an updown, so use it.
if ( mb - > get_position ( ) . y < get_size ( ) . height / 2 ) {
set_value ( get_value ( ) + get_step ( ) ) ;
} else {
set_value ( get_value ( ) - get_step ( ) ) ;
}
return ;
2018-05-15 22:12:35 +02:00
} else {
2019-08-17 21:12:05 +02:00
grabbing_spinner_attempt = true ;
grabbing_spinner_dist_cache = 0 ;
pre_grab_value = get_value ( ) ;
grabbing_spinner = false ;
2021-05-23 07:18:26 +02:00
grabbing_spinner_mouse_pos = get_global_mouse_position ( ) ;
2018-05-15 22:12:35 +02:00
}
} else {
2019-08-17 21:12:05 +02:00
if ( grabbing_spinner_attempt ) {
if ( grabbing_spinner ) {
2020-04-28 15:19:37 +02:00
Input : : get_singleton ( ) - > set_mouse_mode ( Input : : MOUSE_MODE_VISIBLE ) ;
Input : : get_singleton ( ) - > warp_mouse_position ( grabbing_spinner_mouse_pos ) ;
2019-08-17 21:12:05 +02:00
update ( ) ;
} else {
_focus_entered ( ) ;
}
2018-05-15 22:12:35 +02:00
2019-08-17 21:12:05 +02:00
grabbing_spinner = false ;
grabbing_spinner_attempt = false ;
2018-05-15 22:12:35 +02:00
}
}
2021-01-08 04:37:37 +01:00
} else if ( mb - > get_button_index ( ) = = MOUSE_BUTTON_WHEEL_UP | | mb - > get_button_index ( ) = = MOUSE_BUTTON_WHEEL_DOWN ) {
2020-05-14 16:41:43 +02:00
if ( grabber - > is_visible ( ) ) {
2021-07-17 23:22:52 +02:00
call_deferred ( SNAME ( " update " ) ) ;
2020-05-14 16:41:43 +02:00
}
2018-05-15 22:12:35 +02:00
}
}
Ref < InputEventMouseMotion > mm = p_event ;
if ( mm . is_valid ( ) ) {
if ( grabbing_spinner_attempt ) {
2018-05-21 15:02:20 +02:00
double diff_x = mm - > get_relative ( ) . x ;
2021-04-24 22:33:50 +02:00
if ( mm - > is_shift_pressed ( ) & & grabbing_spinner ) {
2018-05-21 15:02:20 +02:00
diff_x * = 0.1 ;
}
grabbing_spinner_dist_cache + = diff_x ;
2018-07-18 20:35:01 +02:00
if ( ! grabbing_spinner & & ABS ( grabbing_spinner_dist_cache ) > 4 * EDSCALE ) {
2020-04-28 15:19:37 +02:00
Input : : get_singleton ( ) - > set_mouse_mode ( Input : : MOUSE_MODE_CAPTURED ) ;
2018-05-15 22:12:35 +02:00
grabbing_spinner = true ;
2018-07-18 20:35:01 +02:00
}
if ( grabbing_spinner ) {
2020-05-06 02:38:15 +02:00
// Don't make the user scroll all the way back to 'in range' if they went off the end.
if ( pre_grab_value < get_min ( ) & & ! is_lesser_allowed ( ) ) {
pre_grab_value = get_min ( ) ;
}
if ( pre_grab_value > get_max ( ) & & ! is_greater_allowed ( ) ) {
pre_grab_value = get_max ( ) ;
}
2021-08-02 12:43:43 +02:00
if ( mm - > is_command_pressed ( ) ) {
2020-05-06 02:38:15 +02:00
// If control was just pressed, don't make the value do a huge jump in magnitude.
if ( grabbing_spinner_dist_cache ! = 0 ) {
pre_grab_value + = grabbing_spinner_dist_cache * get_step ( ) ;
grabbing_spinner_dist_cache = 0 ;
}
2019-09-06 19:38:11 +02:00
set_value ( Math : : round ( pre_grab_value + get_step ( ) * grabbing_spinner_dist_cache * 10 ) ) ;
2018-05-21 15:02:20 +02:00
} else {
2019-11-05 15:53:19 +01:00
set_value ( pre_grab_value + get_step ( ) * grabbing_spinner_dist_cache ) ;
2018-05-21 15:02:20 +02:00
}
2018-05-15 22:12:35 +02:00
}
} else if ( updown_offset ! = - 1 ) {
bool new_hover = ( mm - > get_position ( ) . x > updown_offset ) ;
if ( new_hover ! = hover_updown ) {
hover_updown = new_hover ;
update ( ) ;
}
}
}
Ref < InputEventKey > k = p_event ;
if ( k . is_valid ( ) & & k - > is_pressed ( ) & & k - > is_action ( " ui_accept " ) ) {
2018-05-21 21:36:43 +02:00
_focus_entered ( ) ;
2018-05-15 22:12:35 +02:00
}
}
void EditorSpinSlider : : _grabber_gui_input ( const Ref < InputEvent > & p_event ) {
Ref < InputEventMouseButton > mb = p_event ;
2019-08-13 12:11:24 +02:00
if ( grabbing_grabber ) {
if ( mb . is_valid ( ) ) {
2021-01-08 04:37:37 +01:00
if ( mb - > get_button_index ( ) = = MOUSE_BUTTON_WHEEL_UP ) {
2019-08-13 12:11:24 +02:00
set_value ( get_value ( ) + get_step ( ) ) ;
mousewheel_over_grabber = true ;
2021-01-08 04:37:37 +01:00
} else if ( mb - > get_button_index ( ) = = MOUSE_BUTTON_WHEEL_DOWN ) {
2019-08-13 12:11:24 +02:00
set_value ( get_value ( ) - get_step ( ) ) ;
mousewheel_over_grabber = true ;
}
}
}
2021-01-08 04:37:37 +01:00
if ( mb . is_valid ( ) & & mb - > get_button_index ( ) = = MOUSE_BUTTON_LEFT ) {
2018-05-15 22:12:35 +02:00
if ( mb - > is_pressed ( ) ) {
grabbing_grabber = true ;
2019-08-13 12:11:24 +02:00
if ( ! mousewheel_over_grabber ) {
grabbing_ratio = get_as_ratio ( ) ;
grabbing_from = grabber - > get_transform ( ) . xform ( mb - > get_position ( ) ) . x ;
}
2018-05-15 22:12:35 +02:00
} else {
grabbing_grabber = false ;
2019-08-13 12:11:24 +02:00
mousewheel_over_grabber = false ;
2018-05-15 22:12:35 +02:00
}
}
Ref < InputEventMouseMotion > mm = p_event ;
if ( mm . is_valid ( ) & & grabbing_grabber ) {
2020-05-14 16:41:43 +02:00
if ( mousewheel_over_grabber ) {
2019-08-13 12:11:24 +02:00
return ;
2020-05-14 16:41:43 +02:00
}
2018-05-15 22:12:35 +02:00
2021-03-05 15:06:05 +01:00
float scale_x = get_global_transform_with_canvas ( ) . get_scale ( ) . x ;
ERR_FAIL_COND ( Math : : is_zero_approx ( scale_x ) ) ;
float grabbing_ofs = ( grabber - > get_transform ( ) . xform ( mm - > get_position ( ) ) . x - grabbing_from ) / float ( grabber_range ) / scale_x ;
2018-05-15 22:12:35 +02:00
set_as_ratio ( grabbing_ratio + grabbing_ofs ) ;
update ( ) ;
}
}
2021-07-16 23:36:05 +02:00
void EditorSpinSlider : : _update_value_input_stylebox ( ) {
if ( ! value_input ) {
return ;
}
// Add a left margin to the stylebox to make the number align with the Label
// when it's edited. The LineEdit "focus" stylebox uses the "normal" stylebox's
// default margins.
Ref < StyleBoxFlat > stylebox =
2021-07-17 23:22:52 +02:00
EditorNode : : get_singleton ( ) - > get_theme_base ( ) - > get_theme_stylebox ( SNAME ( " normal " ) , SNAME ( " LineEdit " ) ) - > duplicate ( ) ;
2021-07-16 23:36:05 +02:00
// EditorSpinSliders with a label have more space on the left, so add an
// higher margin to match the location where the text begins.
// The margin values below were determined by empirical testing.
if ( is_layout_rtl ( ) ) {
stylebox - > set_default_margin ( SIDE_LEFT , 0 ) ;
stylebox - > set_default_margin ( SIDE_RIGHT , ( get_label ( ) ! = String ( ) ? 23 : 16 ) * EDSCALE ) ;
} else {
stylebox - > set_default_margin ( SIDE_LEFT , ( get_label ( ) ! = String ( ) ? 23 : 16 ) * EDSCALE ) ;
stylebox - > set_default_margin ( SIDE_RIGHT , 0 ) ;
}
value_input - > add_theme_style_override ( " normal " , stylebox ) ;
}
2018-05-15 22:12:35 +02:00
void EditorSpinSlider : : _notification ( int p_what ) {
2020-06-30 01:47:18 +02:00
if ( p_what = = NOTIFICATION_WM_WINDOW_FOCUS_OUT | |
p_what = = NOTIFICATION_WM_WINDOW_FOCUS_IN | |
2018-12-16 23:20:03 +01:00
p_what = = NOTIFICATION_EXIT_TREE ) {
2018-05-15 22:12:35 +02:00
if ( grabbing_spinner ) {
2020-05-15 15:37:13 +02:00
grabber - > hide ( ) ;
2020-04-28 15:19:37 +02:00
Input : : get_singleton ( ) - > set_mouse_mode ( Input : : MOUSE_MODE_VISIBLE ) ;
2018-05-15 22:12:35 +02:00
grabbing_spinner = false ;
grabbing_spinner_attempt = false ;
}
}
2021-07-16 23:36:05 +02:00
if ( p_what = = NOTIFICATION_READY | | p_what = = NOTIFICATION_THEME_CHANGED ) {
_update_value_input_stylebox ( ) ;
2020-02-15 02:18:24 +01:00
}
2018-05-15 22:12:35 +02:00
if ( p_what = = NOTIFICATION_DRAW ) {
updown_offset = - 1 ;
2021-06-30 19:11:01 +02:00
RID ci = get_canvas_item ( ) ;
bool rtl = is_layout_rtl ( ) ;
Vector2 size = get_size ( ) ;
2021-07-17 23:22:52 +02:00
Ref < StyleBox > sb = get_theme_stylebox ( SNAME ( " normal " ) , SNAME ( " LineEdit " ) ) ;
2018-07-19 00:37:17 +02:00
if ( ! flat ) {
2021-06-30 19:11:01 +02:00
draw_style_box ( sb , Rect2 ( Vector2 ( ) , size ) ) ;
2018-07-19 00:37:17 +02:00
}
2021-07-17 23:22:52 +02:00
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " LineEdit " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " LineEdit " ) ) ;
2018-07-19 03:27:39 +02:00
int sep_base = 4 * EDSCALE ;
int sep = sep_base + sb - > get_offset ( ) . x ; //make it have the same margin on both sides, looks better
2018-07-19 00:37:17 +02:00
2021-06-30 19:11:01 +02:00
int label_width = font - > get_string_size ( label , font_size ) . width ;
int number_width = size . width - sb - > get_minimum_size ( ) . width - label_width - sep ;
2018-05-15 22:12:35 +02:00
2021-07-17 23:22:52 +02:00
Ref < Texture2D > updown = get_theme_icon ( SNAME ( " updown " ) , SNAME ( " SpinBox " ) ) ;
2018-05-15 22:12:35 +02:00
if ( get_step ( ) = = 1 ) {
2018-07-19 00:37:17 +02:00
number_width - = updown - > get_width ( ) ;
2018-05-15 22:12:35 +02:00
}
String numstr = get_text_value ( ) ;
2021-06-30 19:11:01 +02:00
int vofs = ( size . height - font - > get_height ( font_size ) ) / 2 + font - > get_ascent ( font_size ) ;
2018-05-15 22:12:35 +02:00
2021-07-17 23:22:52 +02:00
Color fc = get_theme_color ( SNAME ( " font_color " ) , SNAME ( " LineEdit " ) ) ;
2018-07-19 03:27:39 +02:00
Color lc ;
if ( use_custom_label_color ) {
lc = custom_label_color ;
} else {
lc = fc ;
}
if ( flat & & label ! = String ( ) ) {
2021-07-17 23:22:52 +02:00
Color label_bg_color = get_theme_color ( SNAME ( " dark_color_3 " ) , SNAME ( " Editor " ) ) ;
2021-06-30 19:11:01 +02:00
if ( rtl ) {
draw_rect ( Rect2 ( Vector2 ( size . width - ( sb - > get_offset ( ) . x * 2 + label_width ) , 0 ) , Vector2 ( sb - > get_offset ( ) . x * 2 + label_width , size . height ) ) , label_bg_color ) ;
} else {
draw_rect ( Rect2 ( Vector2 ( ) , Vector2 ( sb - > get_offset ( ) . x * 2 + label_width , size . height ) ) , label_bg_color ) ;
}
2018-07-19 03:27:39 +02:00
}
if ( has_focus ( ) ) {
2021-07-17 23:22:52 +02:00
Ref < StyleBox > focus = get_theme_stylebox ( SNAME ( " focus " ) , SNAME ( " LineEdit " ) ) ;
2021-06-30 19:11:01 +02:00
draw_style_box ( focus , Rect2 ( Vector2 ( ) , size ) ) ;
2018-07-19 03:27:39 +02:00
}
2021-06-30 19:11:01 +02:00
if ( rtl ) {
draw_string ( font , Vector2 ( Math : : round ( size . width - sb - > get_offset ( ) . x - label_width ) , vofs ) , label , HALIGN_RIGHT , - 1 , font_size , lc * Color ( 1 , 1 , 1 , 0.5 ) ) ;
} else {
draw_string ( font , Vector2 ( Math : : round ( sb - > get_offset ( ) . x ) , vofs ) , label , HALIGN_LEFT , - 1 , font_size , lc * Color ( 1 , 1 , 1 , 0.5 ) ) ;
}
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
2021-06-30 19:11:01 +02:00
int suffix_start = numstr . length ( ) ;
RID num_rid = TS - > create_shaped_text ( ) ;
TS - > shaped_text_add_string ( num_rid , numstr + U " \u2009 " + suffix , font - > get_rids ( ) , font_size ) ;
float text_start = rtl ? Math : : round ( sb - > get_offset ( ) . x ) : Math : : round ( sb - > get_offset ( ) . x + label_width + sep ) ;
Vector2 text_ofs = rtl ? Vector2 ( text_start + ( number_width - TS - > shaped_text_get_width ( num_rid ) ) , vofs ) : Vector2 ( text_start , vofs ) ;
const Vector < TextServer : : Glyph > visual = TS - > shaped_text_get_glyphs ( num_rid ) ;
int v_size = visual . size ( ) ;
const TextServer : : Glyph * glyphs = visual . ptr ( ) ;
for ( int i = 0 ; i < v_size ; i + + ) {
for ( int j = 0 ; j < glyphs [ i ] . repeat ; j + + ) {
if ( text_ofs . x > = text_start & & ( text_ofs . x + glyphs [ i ] . advance ) < = ( text_start + number_width ) ) {
Color color = fc ;
if ( glyphs [ i ] . start > = suffix_start ) {
color . a * = 0.4 ;
}
if ( glyphs [ i ] . font_rid ! = RID ( ) ) {
TS - > font_draw_glyph ( glyphs [ i ] . font_rid , ci , glyphs [ i ] . font_size , text_ofs + Vector2 ( glyphs [ i ] . x_off , glyphs [ i ] . y_off ) , glyphs [ i ] . index , color ) ;
} else if ( ( glyphs [ i ] . flags & TextServer : : GRAPHEME_IS_VIRTUAL ) ! = TextServer : : GRAPHEME_IS_VIRTUAL ) {
TS - > draw_hex_code_box ( ci , glyphs [ i ] . font_size , text_ofs + Vector2 ( glyphs [ i ] . x_off , glyphs [ i ] . y_off ) , glyphs [ i ] . index , color ) ;
}
}
text_ofs . x + = glyphs [ i ] . advance ;
}
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
}
2021-06-30 19:11:01 +02:00
TS - > free ( num_rid ) ;
2018-05-15 22:12:35 +02:00
if ( get_step ( ) = = 1 ) {
2021-07-17 23:22:52 +02:00
Ref < Texture2D > updown2 = get_theme_icon ( SNAME ( " updown " ) , SNAME ( " SpinBox " ) ) ;
2021-06-30 19:11:01 +02:00
int updown_vofs = ( size . height - updown2 - > get_height ( ) ) / 2 ;
if ( rtl ) {
updown_offset = sb - > get_margin ( SIDE_LEFT ) ;
} else {
updown_offset = size . width - sb - > get_margin ( SIDE_RIGHT ) - updown2 - > get_width ( ) ;
}
2018-05-15 22:12:35 +02:00
Color c ( 1 , 1 , 1 ) ;
if ( hover_updown ) {
c * = Color ( 1.2 , 1.2 , 1.2 ) ;
}
2019-02-12 21:10:08 +01:00
draw_texture ( updown2 , Vector2 ( updown_offset , updown_vofs ) , c ) ;
2018-05-15 22:12:35 +02:00
if ( grabber - > is_visible ( ) ) {
grabber - > hide ( ) ;
}
} else if ( ! hide_slider ) {
int grabber_w = 4 * EDSCALE ;
2021-06-30 19:11:01 +02:00
int width = size . width - sb - > get_minimum_size ( ) . width - grabber_w ;
2018-05-15 22:12:35 +02:00
int ofs = sb - > get_offset ( ) . x ;
2021-06-30 19:11:01 +02:00
int svofs = ( size . height + vofs ) / 2 - 1 ;
2018-05-15 22:12:35 +02:00
Color c = fc ;
c . a = 0.2 ;
draw_rect ( Rect2 ( ofs , svofs + 1 , width , 2 * EDSCALE ) , c ) ;
int gofs = get_as_ratio ( ) * width ;
c . a = 0.9 ;
Rect2 grabber_rect = Rect2 ( ofs + gofs , svofs + 1 , grabber_w , 2 * EDSCALE ) ;
draw_rect ( grabber_rect , c ) ;
2021-05-04 14:02:54 +02:00
grabbing_spinner_mouse_pos = get_global_position ( ) + grabber_rect . position + grabber_rect . size * 0.5 ;
2021-07-16 23:36:05 +02:00
bool display_grabber = ( mouse_over_spin | | mouse_over_grabber ) & & ! grabbing_spinner & & ! ( value_input_popup & & value_input_popup - > is_visible ( ) ) ;
2018-05-15 22:12:35 +02:00
if ( grabber - > is_visible ( ) ! = display_grabber ) {
if ( display_grabber ) {
grabber - > show ( ) ;
} else {
grabber - > hide ( ) ;
}
}
if ( display_grabber ) {
2019-06-11 20:43:37 +02:00
Ref < Texture2D > grabber_tex ;
2018-05-15 22:12:35 +02:00
if ( mouse_over_grabber ) {
2021-07-17 23:22:52 +02:00
grabber_tex = get_theme_icon ( SNAME ( " grabber_highlight " ) , SNAME ( " HSlider " ) ) ;
2018-05-15 22:12:35 +02:00
} else {
2021-07-17 23:22:52 +02:00
grabber_tex = get_theme_icon ( SNAME ( " grabber " ) , SNAME ( " HSlider " ) ) ;
2018-05-15 22:12:35 +02:00
}
if ( grabber - > get_texture ( ) ! = grabber_tex ) {
grabber - > set_texture ( grabber_tex ) ;
}
2021-03-05 15:06:05 +01:00
Vector2 scale = get_global_transform_with_canvas ( ) . get_scale ( ) ;
grabber - > set_scale ( scale ) ;
2018-05-15 22:12:35 +02:00
grabber - > set_size ( Size2 ( 0 , 0 ) ) ;
2021-03-05 15:06:05 +01:00
grabber - > set_position ( get_global_position ( ) + ( grabber_rect . position + grabber_rect . size * 0.5 - grabber - > get_size ( ) * 0.5 ) * scale ) ;
2019-08-13 12:11:24 +02:00
if ( mousewheel_over_grabber ) {
2020-04-28 15:19:37 +02:00
Input : : get_singleton ( ) - > warp_mouse_position ( grabber - > get_position ( ) + grabber_rect . size ) ;
2019-08-13 12:11:24 +02:00
}
2018-05-15 22:12:35 +02:00
grabber_range = width ;
}
}
}
if ( p_what = = NOTIFICATION_MOUSE_ENTER ) {
mouse_over_spin = true ;
update ( ) ;
}
if ( p_what = = NOTIFICATION_MOUSE_EXIT ) {
mouse_over_spin = false ;
update ( ) ;
}
2018-05-21 21:36:43 +02:00
if ( p_what = = NOTIFICATION_FOCUS_ENTER ) {
2020-04-28 15:19:37 +02:00
if ( ( Input : : get_singleton ( ) - > is_action_pressed ( " ui_focus_next " ) | | Input : : get_singleton ( ) - > is_action_pressed ( " ui_focus_prev " ) ) & & ! value_input_just_closed ) {
2018-08-08 22:34:24 +02:00
_focus_entered ( ) ;
}
2018-05-21 21:36:43 +02:00
value_input_just_closed = false ;
}
2018-05-15 22:12:35 +02:00
}
2021-07-18 01:04:27 +02:00
LineEdit * EditorSpinSlider : : get_line_edit ( ) {
_ensure_input_popup ( ) ;
return value_input ;
}
2018-05-15 22:12:35 +02:00
Size2 EditorSpinSlider : : get_minimum_size ( ) const {
2021-07-17 23:22:52 +02:00
Ref < StyleBox > sb = get_theme_stylebox ( SNAME ( " normal " ) , SNAME ( " LineEdit " ) ) ;
Ref < Font > font = get_theme_font ( SNAME ( " font " ) , SNAME ( " LineEdit " ) ) ;
int font_size = get_theme_font_size ( SNAME ( " font_size " ) , SNAME ( " LineEdit " ) ) ;
2018-05-15 22:12:35 +02:00
Size2 ms = sb - > get_minimum_size ( ) ;
2020-09-03 13:22:16 +02:00
ms . height + = font - > get_height ( font_size ) ;
2018-05-15 22:12:35 +02:00
return ms ;
}
void EditorSpinSlider : : set_hide_slider ( bool p_hide ) {
hide_slider = p_hide ;
update ( ) ;
}
bool EditorSpinSlider : : is_hiding_slider ( ) const {
return hide_slider ;
}
void EditorSpinSlider : : set_label ( const String & p_label ) {
label = p_label ;
update ( ) ;
}
String EditorSpinSlider : : get_label ( ) const {
return label ;
}
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
void EditorSpinSlider : : set_suffix ( const String & p_suffix ) {
suffix = p_suffix ;
update ( ) ;
}
String EditorSpinSlider : : get_suffix ( ) const {
return suffix ;
}
2018-08-08 22:34:24 +02:00
void EditorSpinSlider : : _evaluate_input_text ( ) {
2020-09-27 22:29:40 +02:00
// Replace comma with dot to support it as decimal separator (GH-6028).
// This prevents using functions like `pow()`, but using functions
// in EditorSpinSlider is a barely known (and barely used) feature.
// Instead, we'd rather support German/French keyboard layouts out of the box.
2020-09-03 13:22:16 +02:00
const String text = TS - > parse_number ( value_input - > get_text ( ) . replace ( " , " , " . " ) ) ;
2020-09-27 22:29:40 +02:00
2018-08-08 22:34:24 +02:00
Ref < Expression > expr ;
2021-06-18 00:03:09 +02:00
expr . instantiate ( ) ;
2018-08-08 22:34:24 +02:00
Error err = expr - > parse ( text ) ;
if ( err ! = OK ) {
return ;
}
2020-04-02 01:20:12 +02:00
Variant v = expr - > execute ( Array ( ) , nullptr , false ) ;
2020-05-14 16:41:43 +02:00
if ( v . get_type ( ) = = Variant : : NIL ) {
2018-08-08 22:34:24 +02:00
return ;
2020-05-14 16:41:43 +02:00
}
2018-08-08 22:34:24 +02:00
set_value ( v ) ;
}
2021-06-16 18:43:34 +02:00
//text_submitted signal
void EditorSpinSlider : : _value_input_submitted ( const String & p_text ) {
2018-05-21 21:36:43 +02:00
value_input_just_closed = true ;
2021-07-16 23:36:05 +02:00
if ( value_input_popup ) {
value_input_popup - > hide ( ) ;
}
2018-05-21 21:36:43 +02:00
}
//modal_closed signal
void EditorSpinSlider : : _value_input_closed ( ) {
2018-08-08 22:34:24 +02:00
_evaluate_input_text ( ) ;
2018-05-21 21:36:43 +02:00
value_input_just_closed = true ;
}
//focus_exited signal
void EditorSpinSlider : : _value_focus_exited ( ) {
2019-08-12 12:39:27 +02:00
// discontinue because the focus_exit was caused by right-click context menu
2021-07-16 23:36:05 +02:00
if ( value_input - > is_menu_visible ( ) ) {
2019-08-12 12:39:27 +02:00
return ;
2020-05-14 16:41:43 +02:00
}
2019-08-12 12:39:27 +02:00
2018-08-08 22:34:24 +02:00
_evaluate_input_text ( ) ;
2018-05-21 21:36:43 +02:00
// focus is not on the same element after the vlalue_input was exited
// -> focus is on next element
// -> TAB was pressed
// -> modal_close was not called
// -> need to close/hide manually
if ( ! value_input_just_closed ) { //value_input_just_closed should do the same
2021-07-16 23:36:05 +02:00
if ( value_input_popup ) {
value_input_popup - > hide ( ) ;
}
2018-05-21 21:36:43 +02:00
//tab was pressed
} else {
//enter, click, esc
}
}
2018-05-15 22:12:35 +02:00
void EditorSpinSlider : : _grabber_mouse_entered ( ) {
mouse_over_grabber = true ;
update ( ) ;
}
void EditorSpinSlider : : _grabber_mouse_exited ( ) {
mouse_over_grabber = false ;
update ( ) ;
}
2018-06-07 17:46:14 +02:00
void EditorSpinSlider : : set_read_only ( bool p_enable ) {
read_only = p_enable ;
update ( ) ;
}
bool EditorSpinSlider : : is_read_only ( ) const {
return read_only ;
}
2018-07-19 00:37:17 +02:00
void EditorSpinSlider : : set_flat ( bool p_enable ) {
flat = p_enable ;
update ( ) ;
}
bool EditorSpinSlider : : is_flat ( ) const {
return flat ;
}
2018-07-19 03:27:39 +02:00
void EditorSpinSlider : : set_custom_label_color ( bool p_use_custom_label_color , Color p_custom_label_color ) {
use_custom_label_color = p_use_custom_label_color ;
custom_label_color = p_custom_label_color ;
}
2018-05-21 21:36:43 +02:00
void EditorSpinSlider : : _focus_entered ( ) {
2021-07-16 23:36:05 +02:00
_ensure_input_popup ( ) ;
2020-03-20 03:32:09 +01:00
Rect2 gr = get_screen_rect ( ) ;
2018-05-21 21:36:43 +02:00
value_input - > set_text ( get_text_value ( ) ) ;
2020-03-20 03:32:09 +01:00
value_input_popup - > set_position ( gr . position ) ;
value_input_popup - > set_size ( gr . size ) ;
2021-07-17 23:22:52 +02:00
value_input_popup - > call_deferred ( SNAME ( " popup " ) ) ;
value_input - > call_deferred ( SNAME ( " grab_focus " ) ) ;
value_input - > call_deferred ( SNAME ( " select_all " ) ) ;
2018-05-21 21:36:43 +02:00
value_input - > set_focus_next ( find_next_valid_focus ( ) - > get_path ( ) ) ;
value_input - > set_focus_previous ( find_prev_valid_focus ( ) - > get_path ( ) ) ;
}
2018-05-15 22:12:35 +02:00
void EditorSpinSlider : : _bind_methods ( ) {
ClassDB : : bind_method ( D_METHOD ( " set_label " , " label " ) , & EditorSpinSlider : : set_label ) ;
ClassDB : : bind_method ( D_METHOD ( " get_label " ) , & EditorSpinSlider : : get_label ) ;
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_suffix " , " suffix " ) , & EditorSpinSlider : : set_suffix ) ;
ClassDB : : bind_method ( D_METHOD ( " get_suffix " ) , & EditorSpinSlider : : get_suffix ) ;
2018-06-07 17:46:14 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_read_only " , " read_only " ) , & EditorSpinSlider : : set_read_only ) ;
ClassDB : : bind_method ( D_METHOD ( " is_read_only " ) , & EditorSpinSlider : : is_read_only ) ;
2018-07-19 00:37:17 +02:00
ClassDB : : bind_method ( D_METHOD ( " set_flat " , " flat " ) , & EditorSpinSlider : : set_flat ) ;
ClassDB : : bind_method ( D_METHOD ( " is_flat " ) , & EditorSpinSlider : : is_flat ) ;
2018-05-15 22:12:35 +02:00
ClassDB : : bind_method ( D_METHOD ( " _gui_input " ) , & EditorSpinSlider : : _gui_input ) ;
ADD_PROPERTY ( PropertyInfo ( Variant : : STRING , " label " ) , " set_label " , " get_label " ) ;
Fix editor suffixes and degrees conversion
* Functions to convert to/from degrees are all gone. Conversion is done by the editor.
* Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees.
* Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m"
* In general, can add suffixes for EditorSpinSlider
Not covered by this PR, will have to be addressed by future ones:
* Ability to switch radians/degrees in the inspector for angle properties (if actually wanted).
* Animations previously made will most likely break, need to add a way to make old ones compatible.
* Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes.
* Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
2021-06-29 21:42:12 +02:00
ADD_PROPERTY ( PropertyInfo ( Variant : : STRING , " suffix " ) , " set_suffix " , " get_suffix " ) ;
2018-06-07 17:46:14 +02:00
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " read_only " ) , " set_read_only " , " is_read_only " ) ;
2018-07-19 00:37:17 +02:00
ADD_PROPERTY ( PropertyInfo ( Variant : : BOOL , " flat " ) , " set_flat " , " is_flat " ) ;
2018-05-15 22:12:35 +02:00
}
2021-07-16 23:36:05 +02:00
void EditorSpinSlider : : _ensure_input_popup ( ) {
if ( value_input_popup ) {
return ;
}
value_input_popup = memnew ( Popup ) ;
add_child ( value_input_popup ) ;
value_input = memnew ( LineEdit ) ;
value_input_popup - > add_child ( value_input ) ;
value_input_popup - > set_wrap_controls ( true ) ;
value_input - > set_anchors_and_offsets_preset ( PRESET_WIDE ) ;
value_input_popup - > connect ( " popup_hide " , callable_mp ( this , & EditorSpinSlider : : _value_input_closed ) ) ;
value_input - > connect ( " text_submitted " , callable_mp ( this , & EditorSpinSlider : : _value_input_submitted ) ) ;
value_input - > connect ( " focus_exited " , callable_mp ( this , & EditorSpinSlider : : _value_focus_exited ) ) ;
if ( is_inside_tree ( ) ) {
_update_value_input_stylebox ( ) ;
}
}
2018-05-15 22:12:35 +02:00
EditorSpinSlider : : EditorSpinSlider ( ) {
2018-07-19 00:37:17 +02:00
flat = false ;
2018-05-15 22:12:35 +02:00
grabbing_spinner_attempt = false ;
grabbing_spinner = false ;
2018-05-21 15:02:20 +02:00
grabbing_spinner_dist_cache = 0 ;
2018-11-09 04:48:44 +01:00
pre_grab_value = 0 ;
2018-05-15 22:12:35 +02:00
set_focus_mode ( FOCUS_ALL ) ;
updown_offset = - 1 ;
hover_updown = false ;
grabber = memnew ( TextureRect ) ;
add_child ( grabber ) ;
grabber - > hide ( ) ;
2020-10-01 09:17:33 +02:00
grabber - > set_as_top_level ( true ) ;
2018-05-15 22:12:35 +02:00
grabber - > set_mouse_filter ( MOUSE_FILTER_STOP ) ;
2020-02-21 18:28:45 +01:00
grabber - > connect ( " mouse_entered " , callable_mp ( this , & EditorSpinSlider : : _grabber_mouse_entered ) ) ;
grabber - > connect ( " mouse_exited " , callable_mp ( this , & EditorSpinSlider : : _grabber_mouse_exited ) ) ;
grabber - > connect ( " gui_input " , callable_mp ( this , & EditorSpinSlider : : _grabber_gui_input ) ) ;
2018-05-15 22:12:35 +02:00
mouse_over_spin = false ;
mouse_over_grabber = false ;
2019-08-13 12:11:24 +02:00
mousewheel_over_grabber = false ;
2018-05-15 22:12:35 +02:00
grabbing_grabber = false ;
grabber_range = 1 ;
2018-05-21 21:36:43 +02:00
value_input_just_closed = false ;
2018-05-15 22:12:35 +02:00
hide_slider = false ;
2018-06-07 17:46:14 +02:00
read_only = false ;
2018-07-19 03:27:39 +02:00
use_custom_label_color = false ;
2018-05-15 22:12:35 +02:00
}