2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* line_edit.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2016-01-01 14:50:53 +01:00
|
|
|
/* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "line_edit.h"
|
|
|
|
#include "os/keyboard.h"
|
|
|
|
#include "os/os.h"
|
|
|
|
#include "print_string.h"
|
|
|
|
#include "label.h"
|
2016-07-10 00:39:17 +02:00
|
|
|
#include "translation.h"
|
2016-06-21 15:38:35 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
#include "tools/editor/editor_settings.h"
|
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
static bool _is_text_char(CharType c) {
|
|
|
|
|
|
|
|
return (c>='a' && c<='z') || (c>='A' && c<='Z') || (c>='0' && c<='9') || c=='_';
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void LineEdit::_input_event(InputEvent p_event) {
|
|
|
|
|
|
|
|
|
|
|
|
switch(p_event.type) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
case InputEvent::MOUSE_BUTTON: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
const InputEventMouseButton &b = p_event.mouse_button;
|
|
|
|
|
2016-05-17 01:25:17 +02:00
|
|
|
if (b.pressed && b.button_index==BUTTON_RIGHT) {
|
|
|
|
menu->set_pos(get_global_transform().xform(get_local_mouse_pos()));
|
|
|
|
menu->set_size(Vector2(1,1));
|
|
|
|
menu->popup();
|
|
|
|
grab_focus();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (b.button_index!=BUTTON_LEFT)
|
2014-02-10 02:10:30 +01:00
|
|
|
break;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
_reset_caret_blink_timer();
|
2014-02-10 02:10:30 +01:00
|
|
|
if (b.pressed) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
shift_selection_check_pre(b.mod.shift);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
set_cursor_at_pixel_pos(b.x);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
if (b.mod.shift) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
selection_fill_at_cursor();
|
|
|
|
selection.creating=true;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
} else {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
if (b.doubleclick) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
selection.enabled=true;
|
|
|
|
selection.begin=0;
|
|
|
|
selection.end=text.length();
|
|
|
|
selection.doubleclick=true;
|
|
|
|
}
|
|
|
|
|
|
|
|
selection.drag_attempt=false;
|
|
|
|
|
|
|
|
if ((cursor_pos<selection.begin) || (cursor_pos>selection.end) || !selection.enabled) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
selection_clear();
|
|
|
|
selection.cursor_start=cursor_pos;
|
|
|
|
selection.creating=true;
|
|
|
|
} else if (selection.enabled) {
|
|
|
|
|
|
|
|
selection.drag_attempt=true;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// if (!editable)
|
|
|
|
// non_editable_clicked_signal.call();
|
|
|
|
update();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} else {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if ( (!selection.creating) && (!selection.doubleclick)) {
|
|
|
|
selection_clear();
|
|
|
|
}
|
|
|
|
selection.creating=false;
|
|
|
|
selection.doubleclick=false;
|
2014-03-13 09:58:03 +01:00
|
|
|
|
2016-01-31 22:09:45 +01:00
|
|
|
if (OS::get_singleton()->has_virtual_keyboard())
|
2016-06-27 13:47:40 +02:00
|
|
|
OS::get_singleton()->show_virtual_keyboard(text,get_global_rect());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
update();
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case InputEvent::MOUSE_MOTION: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
const InputEventMouseMotion& m=p_event.mouse_motion;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-07-15 22:57:46 +02:00
|
|
|
if (m.button_mask&BUTTON_LEFT) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (selection.creating) {
|
|
|
|
set_cursor_at_pixel_pos(m.x);
|
|
|
|
selection_fill_at_cursor();
|
|
|
|
}
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case InputEvent::KEY: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
const InputEventKey &k =p_event.key;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!k.pressed)
|
|
|
|
return;
|
2016-03-09 00:00:52 +01:00
|
|
|
unsigned int code = k.scancode;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
if (k.mod.command) {
|
|
|
|
|
|
|
|
bool handled=true;
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
|
|
|
case (KEY_X): { // CUT
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if(editable) {
|
2014-02-10 02:10:30 +01:00
|
|
|
cut_text();
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case (KEY_C): { // COPY
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
copy_text();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case (KEY_V): { // PASTE
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if(editable) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
paste_text();
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case (KEY_Z): { // Simple One level undo
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if(editable) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-17 01:25:17 +02:00
|
|
|
undo();
|
2015-08-15 08:47:22 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case (KEY_U): { // Delete from start to cursor
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if(editable) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
selection_clear();
|
|
|
|
undo_text = text;
|
|
|
|
text = text.substr(cursor_pos,text.length()-cursor_pos);
|
2015-08-15 08:47:22 +02:00
|
|
|
|
|
|
|
Ref<Font> font = get_font("font");
|
|
|
|
|
|
|
|
cached_width = 0;
|
2015-09-02 13:36:52 +02:00
|
|
|
if (font != NULL) {
|
|
|
|
for (int i = 0; i < text.length(); i++)
|
|
|
|
cached_width += font->get_char_size(text[i]).width;
|
|
|
|
}
|
2015-08-15 08:47:22 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
set_cursor_pos(0);
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case (KEY_Y): { // PASTE (Yank for unix users)
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if(editable) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
paste_text();
|
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
|
|
|
case (KEY_K): { // Delete from cursor_pos to end
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if(editable) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
selection_clear();
|
|
|
|
undo_text = text;
|
|
|
|
text = text.substr(0,cursor_pos);
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
2015-11-06 21:24:39 +01:00
|
|
|
case (KEY_A): { //Select All
|
|
|
|
select();
|
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
default: { handled=false;}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handled) {
|
|
|
|
accept_event();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
_reset_caret_blink_timer();
|
2016-06-18 16:15:26 +02:00
|
|
|
if (!k.mod.meta) {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
bool handled=true;
|
|
|
|
switch (code) {
|
|
|
|
|
|
|
|
case KEY_ENTER:
|
|
|
|
case KEY_RETURN: {
|
|
|
|
|
|
|
|
emit_signal( "text_entered",text );
|
2016-01-31 22:09:45 +01:00
|
|
|
if (OS::get_singleton()->has_virtual_keyboard())
|
|
|
|
OS::get_singleton()->hide_virtual_keyboard();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case KEY_BACKSPACE: {
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if (!editable)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (selection.enabled) {
|
|
|
|
undo_text=text;
|
|
|
|
selection_delete();
|
|
|
|
break;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-06-18 16:15:26 +02:00
|
|
|
|
|
|
|
#ifdef APPLE_STYLE_KEYS
|
|
|
|
if (k.mod.alt) {
|
|
|
|
#else
|
|
|
|
if (k.mod.alt) {
|
|
|
|
handled=false;
|
|
|
|
break;
|
|
|
|
} else if (k.mod.command) {
|
|
|
|
#endif
|
|
|
|
int cc=cursor_pos;
|
|
|
|
bool prev_char=false;
|
|
|
|
|
|
|
|
while (cc>0) {
|
|
|
|
bool ischar=_is_text_char(text[cc-1]);
|
|
|
|
|
|
|
|
if (prev_char && !ischar)
|
|
|
|
break;
|
|
|
|
|
|
|
|
prev_char=ischar;
|
|
|
|
cc--;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete_text(cc, cursor_pos);
|
|
|
|
|
|
|
|
set_cursor_pos(cc);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
undo_text=text;
|
|
|
|
delete_char();
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2016-01-07 21:38:38 +01:00
|
|
|
case KEY_KP_4: {
|
|
|
|
if (k.unicode != 0) {
|
|
|
|
handled = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// numlock disabled. fallthrough to key_left
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
case KEY_LEFT: {
|
2016-06-18 16:15:26 +02:00
|
|
|
|
2016-06-23 23:03:32 +02:00
|
|
|
#ifndef APPLE_STYLE_KEYS
|
|
|
|
if (!k.mod.alt)
|
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
shift_selection_check_pre(k.mod.shift);
|
2016-06-18 16:15:26 +02:00
|
|
|
|
|
|
|
#ifdef APPLE_STYLE_KEYS
|
|
|
|
if (k.mod.command) {
|
|
|
|
set_cursor_pos(0);
|
|
|
|
} else if (k.mod.alt) {
|
|
|
|
|
|
|
|
#else
|
|
|
|
if (k.mod.alt) {
|
|
|
|
handled=false;
|
|
|
|
break;
|
|
|
|
} else if (k.mod.command) {
|
|
|
|
#endif
|
|
|
|
bool prev_char=false;
|
|
|
|
int cc=cursor_pos;
|
|
|
|
|
|
|
|
while (cc>0) {
|
|
|
|
bool ischar=_is_text_char(text[cc-1]);
|
|
|
|
|
|
|
|
if (prev_char && !ischar)
|
|
|
|
break;
|
|
|
|
|
|
|
|
prev_char=ischar;
|
|
|
|
cc--;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_cursor_pos(cc);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
set_cursor_pos(get_cursor_pos()-1);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
shift_selection_check_post(k.mod.shift);
|
|
|
|
|
|
|
|
} break;
|
2016-01-07 21:38:38 +01:00
|
|
|
case KEY_KP_6: {
|
|
|
|
if (k.unicode != 0) {
|
|
|
|
handled = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// numlock disabled. fallthrough to key_right
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
case KEY_RIGHT: {
|
|
|
|
|
|
|
|
shift_selection_check_pre(k.mod.shift);
|
2016-06-18 16:15:26 +02:00
|
|
|
|
|
|
|
#ifdef APPLE_STYLE_KEYS
|
|
|
|
if (k.mod.command) {
|
|
|
|
set_cursor_pos(text.length());
|
|
|
|
} else if (k.mod.alt) {
|
|
|
|
#else
|
|
|
|
if (k.mod.alt) {
|
|
|
|
handled=false;
|
|
|
|
break;
|
|
|
|
} else if (k.mod.command) {
|
|
|
|
#endif
|
|
|
|
bool prev_char=false;
|
|
|
|
int cc=cursor_pos;
|
|
|
|
|
|
|
|
while (cc<text.length()) {
|
|
|
|
bool ischar=_is_text_char(text[cc]);
|
|
|
|
|
|
|
|
if (prev_char && !ischar)
|
|
|
|
break;
|
|
|
|
|
|
|
|
prev_char=ischar;
|
|
|
|
cc++;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_cursor_pos(cc);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
set_cursor_pos(get_cursor_pos()+1);
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
shift_selection_check_post(k.mod.shift);
|
2016-06-18 16:15:26 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case KEY_DELETE: {
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if (!editable)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (k.mod.shift && !k.mod.command && !k.mod.alt) {
|
2016-03-15 13:03:38 +01:00
|
|
|
cut_text();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if (selection.enabled) {
|
|
|
|
undo_text=text;
|
|
|
|
selection_delete();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int text_len = text.length();
|
|
|
|
|
|
|
|
if (cursor_pos==text_len)
|
|
|
|
break; // nothing to do
|
|
|
|
|
|
|
|
#ifdef APPLE_STYLE_KEYS
|
|
|
|
if (k.mod.alt) {
|
|
|
|
#else
|
|
|
|
if (k.mod.alt) {
|
|
|
|
handled=false;
|
|
|
|
break;
|
|
|
|
} else if (k.mod.command) {
|
|
|
|
#endif
|
|
|
|
int cc=cursor_pos;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
bool prev_char=false;
|
|
|
|
|
|
|
|
while (cc<text.length()) {
|
|
|
|
|
|
|
|
bool ischar=_is_text_char(text[cc]);
|
|
|
|
|
|
|
|
if (prev_char && !ischar)
|
|
|
|
break;
|
|
|
|
prev_char=ischar;
|
|
|
|
cc++;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-06-18 16:15:26 +02:00
|
|
|
|
|
|
|
delete_text(cursor_pos,cc);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
undo_text=text;
|
|
|
|
set_cursor_pos(cursor_pos+1);
|
|
|
|
delete_char();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} break;
|
2016-01-07 22:45:28 +01:00
|
|
|
case KEY_KP_7: {
|
|
|
|
if (k.unicode != 0) {
|
|
|
|
handled = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// numlock disabled. fallthrough to key_home
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
case KEY_HOME: {
|
|
|
|
|
|
|
|
shift_selection_check_pre(k.mod.shift);
|
|
|
|
set_cursor_pos(0);
|
|
|
|
shift_selection_check_post(k.mod.shift);
|
|
|
|
} break;
|
2016-01-07 22:45:28 +01:00
|
|
|
case KEY_KP_1: {
|
|
|
|
if (k.unicode != 0) {
|
|
|
|
handled = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// numlock disabled. fallthrough to key_end
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
case KEY_END: {
|
|
|
|
|
|
|
|
shift_selection_check_pre(k.mod.shift);
|
|
|
|
set_cursor_pos(text.length());
|
|
|
|
shift_selection_check_post(k.mod.shift);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
|
|
|
|
default: {
|
|
|
|
|
2016-01-07 21:38:38 +01:00
|
|
|
handled=false;
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
2016-01-07 21:38:38 +01:00
|
|
|
if (handled) {
|
2014-02-10 02:10:30 +01:00
|
|
|
accept_event();
|
2016-07-27 19:32:46 +02:00
|
|
|
} else if (!k.mod.alt && !k.mod.command) {
|
2016-01-07 21:38:38 +01:00
|
|
|
if (k.unicode>=32 && k.scancode!=KEY_DELETE) {
|
|
|
|
|
|
|
|
if (editable) {
|
|
|
|
selection_delete();
|
|
|
|
CharType ucodestr[2]={(CharType)k.unicode,0};
|
|
|
|
append_at_cursor(ucodestr);
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2016-01-14 16:26:22 +01:00
|
|
|
accept_event();
|
2016-01-07 21:38:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
update();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
void LineEdit::set_align(Align p_align) {
|
|
|
|
|
|
|
|
ERR_FAIL_INDEX(p_align, 4);
|
|
|
|
align = p_align;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
LineEdit::Align LineEdit::get_align() const{
|
|
|
|
|
|
|
|
return align;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Variant LineEdit::get_drag_data(const Point2& p_point) {
|
|
|
|
|
|
|
|
if (selection.drag_attempt && selection.enabled) {
|
|
|
|
String t = text.substr(selection.begin, selection.end - selection.begin);
|
|
|
|
Label *l = memnew( Label );
|
|
|
|
l->set_text(t);
|
|
|
|
set_drag_preview(l);
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Variant();
|
|
|
|
|
|
|
|
}
|
|
|
|
bool LineEdit::can_drop_data(const Point2& p_point,const Variant& p_data) const{
|
|
|
|
|
|
|
|
return p_data.get_type()==Variant::STRING;
|
|
|
|
}
|
|
|
|
void LineEdit::drop_data(const Point2& p_point,const Variant& p_data){
|
|
|
|
|
|
|
|
if (p_data.get_type()==Variant::STRING) {
|
|
|
|
set_cursor_at_pixel_pos(p_point.x);
|
2014-05-11 06:14:33 +02:00
|
|
|
int selected = selection.end - selection.begin;
|
2015-08-15 08:47:22 +02:00
|
|
|
|
|
|
|
Ref<Font> font = get_font("font");
|
2015-09-02 13:36:52 +02:00
|
|
|
if (font != NULL) {
|
|
|
|
for (int i = selection.begin; i < selection.end; i++)
|
|
|
|
cached_width -= font->get_char_size(text[i]).width;
|
|
|
|
}
|
2015-08-15 08:47:22 +02:00
|
|
|
|
2014-05-11 06:14:33 +02:00
|
|
|
text.erase(selection.begin, selected);
|
2015-08-15 08:47:22 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
append_at_cursor(p_data);
|
2014-05-11 06:14:33 +02:00
|
|
|
selection.begin = cursor_pos-selected;
|
|
|
|
selection.end = cursor_pos;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LineEdit::_notification(int p_what) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
switch(p_what) {
|
2016-06-21 15:38:35 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
case NOTIFICATION_ENTER_TREE: {
|
|
|
|
if (get_tree()->is_editor_hint()) {
|
|
|
|
cursor_set_blink_enabled(EDITOR_DEF("text_editor/caret_blink", false));
|
|
|
|
cursor_set_blink_speed(EDITOR_DEF("text_editor/caret_blink_speed", 0.65));
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-30 16:12:14 +02:00
|
|
|
if (!EditorSettings::get_singleton()->is_connected("settings_changed",this,"_editor_settings_changed")) {
|
|
|
|
EditorSettings::get_singleton()->connect("settings_changed",this,"_editor_settings_changed");
|
|
|
|
}
|
2016-06-21 15:38:35 +02:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
case NOTIFICATION_RESIZED: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
set_cursor_pos( get_cursor_pos() );
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
2016-06-21 01:16:18 +02:00
|
|
|
case MainLoop::NOTIFICATION_WM_FOCUS_IN: {
|
|
|
|
window_has_focus = true;
|
|
|
|
draw_caret = true;
|
|
|
|
update();
|
|
|
|
} break;
|
|
|
|
case MainLoop::NOTIFICATION_WM_FOCUS_OUT: {
|
|
|
|
window_has_focus = false;
|
|
|
|
draw_caret = false;
|
|
|
|
update();
|
|
|
|
} break;
|
2014-02-10 02:10:30 +01:00
|
|
|
case NOTIFICATION_DRAW: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-21 01:16:18 +02:00
|
|
|
if ((!has_focus() && !menu->has_focus()) || !window_has_focus) {
|
|
|
|
draw_caret = false;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int width,height;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Size2 size=get_size();
|
|
|
|
width=size.width;
|
|
|
|
height=size.height;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
RID ci = get_canvas_item();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<StyleBox> style = get_stylebox("normal");
|
|
|
|
if (!is_editable())
|
|
|
|
style=get_stylebox("read_only");
|
|
|
|
|
|
|
|
Ref<Font> font=get_font("font");
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
style->draw( ci, Rect2( Point2(), size ) );
|
|
|
|
|
|
|
|
if (has_focus()) {
|
|
|
|
|
|
|
|
get_stylebox("focus")->draw( ci, Rect2( Point2(), size ) );
|
|
|
|
}
|
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
int x_ofs=0;
|
|
|
|
|
|
|
|
switch (align) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
case ALIGN_FILL:
|
|
|
|
case ALIGN_LEFT: {
|
|
|
|
|
|
|
|
x_ofs=style->get_offset().x;
|
|
|
|
} break;
|
|
|
|
case ALIGN_CENTER: {
|
|
|
|
|
2016-07-15 22:57:46 +02:00
|
|
|
x_ofs=int(size.width-(cached_width))/2;
|
2015-08-15 08:47:22 +02:00
|
|
|
} break;
|
|
|
|
case ALIGN_RIGHT: {
|
|
|
|
|
2016-07-15 22:57:46 +02:00
|
|
|
x_ofs=int(size.width-style->get_offset().x-(cached_width));
|
2015-08-15 08:47:22 +02:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
2016-06-10 03:05:41 +02:00
|
|
|
int ofs_max=width-style->get_minimum_size().width;
|
2014-02-10 02:10:30 +01:00
|
|
|
int char_ofs=window_pos;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int y_area=height-style->get_minimum_size().height;
|
|
|
|
int y_ofs=style->get_offset().y;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int font_ascent=font->get_ascent();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Color selection_color=get_color("selection_color");
|
|
|
|
Color font_color=get_color("font_color");
|
|
|
|
Color font_color_selected=get_color("font_color_selected");
|
|
|
|
Color cursor_color=get_color("cursor_color");
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-27 13:47:40 +02:00
|
|
|
const String& t = text.empty() ? placeholder : text;
|
|
|
|
// draw placeholder color
|
|
|
|
if(text.empty())
|
2016-06-28 05:45:17 +02:00
|
|
|
font_color.a *= placeholder_alpha;
|
2016-06-27 13:47:40 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
while(true) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
//end of string, break!
|
2016-06-27 13:47:40 +02:00
|
|
|
if (char_ofs>=t.length())
|
2014-02-10 02:10:30 +01:00
|
|
|
break;
|
|
|
|
|
2016-06-27 13:47:40 +02:00
|
|
|
CharType cchar=pass?'*':t[char_ofs];
|
|
|
|
CharType next=pass?'*':t[char_ofs+1];
|
2014-02-10 02:10:30 +01:00
|
|
|
int char_width=font->get_char_size( cchar,next ).width;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// end of widget, break!
|
2015-08-15 08:47:22 +02:00
|
|
|
if ((x_ofs + char_width) > ofs_max)
|
2014-02-10 02:10:30 +01:00
|
|
|
break;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
bool selected=selection.enabled && char_ofs>=selection.begin && char_ofs<selection.end;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (selected)
|
2015-08-15 08:47:22 +02:00
|
|
|
VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(Point2(x_ofs, y_ofs), Size2(char_width, y_area)), selection_color);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
font->draw_char(ci, Point2(x_ofs, y_ofs + font_ascent), cchar, next, selected ? font_color_selected : font_color);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
if (char_ofs==cursor_pos && draw_caret) {
|
2014-02-10 02:10:30 +01:00
|
|
|
VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(
|
2015-08-15 08:47:22 +02:00
|
|
|
Point2( x_ofs , y_ofs ), Size2( 1, y_area ) ), cursor_color );
|
2016-06-21 01:05:52 +02:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
x_ofs+=char_width;
|
2014-02-10 02:10:30 +01:00
|
|
|
char_ofs++;
|
|
|
|
}
|
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
if (char_ofs==cursor_pos && draw_caret) {//may be at the end
|
2014-02-10 02:10:30 +01:00
|
|
|
VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(
|
2016-03-09 00:00:52 +01:00
|
|
|
Point2( x_ofs , y_ofs ), Size2( 1, y_area ) ), cursor_color );
|
2016-06-21 01:05:52 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
} break;
|
|
|
|
case NOTIFICATION_FOCUS_ENTER: {
|
|
|
|
|
2016-06-21 01:16:18 +02:00
|
|
|
if (!caret_blink_enabled) {
|
|
|
|
draw_caret = true;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (OS::get_singleton()->has_virtual_keyboard())
|
2016-06-27 13:47:40 +02:00
|
|
|
OS::get_singleton()->show_virtual_keyboard(text,get_global_rect());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
} break;
|
|
|
|
case NOTIFICATION_FOCUS_EXIT: {
|
|
|
|
|
|
|
|
if (OS::get_singleton()->has_virtual_keyboard())
|
|
|
|
OS::get_singleton()->hide_virtual_keyboard();
|
|
|
|
|
|
|
|
} break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::copy_text() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if(selection.enabled) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
OS::get_singleton()->set_clipboard(text.substr(selection.begin, selection.end - selection.begin));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::cut_text() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if(selection.enabled) {
|
|
|
|
undo_text = text;
|
|
|
|
OS::get_singleton()->set_clipboard(text.substr(selection.begin, selection.end - selection.begin));
|
|
|
|
selection_delete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::paste_text() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
String paste_buffer = OS::get_singleton()->get_clipboard();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if(paste_buffer != "") {
|
|
|
|
|
|
|
|
if(selection.enabled) selection_delete();
|
|
|
|
append_at_cursor(paste_buffer);
|
|
|
|
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-17 01:25:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::undo() {
|
|
|
|
|
|
|
|
int old_cursor_pos = cursor_pos;
|
|
|
|
text = undo_text;
|
|
|
|
|
|
|
|
Ref<Font> font = get_font("font");
|
|
|
|
|
|
|
|
cached_width = 0;
|
|
|
|
for (int i = 0; i<text.length(); i++)
|
|
|
|
cached_width += font->get_char_size(text[i]).width;
|
|
|
|
|
|
|
|
if(old_cursor_pos > text.length()) {
|
|
|
|
set_cursor_pos(text.length());
|
|
|
|
} else {
|
|
|
|
set_cursor_pos(old_cursor_pos);
|
|
|
|
}
|
|
|
|
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::shift_selection_check_pre(bool p_shift) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:14:43 +02:00
|
|
|
if (!selection.enabled && p_shift) {
|
2014-02-10 02:10:30 +01:00
|
|
|
selection.cursor_start=cursor_pos;
|
|
|
|
}
|
|
|
|
if (!p_shift)
|
|
|
|
selection_clear();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::shift_selection_check_post(bool p_shift) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (p_shift)
|
|
|
|
selection_fill_at_cursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::set_cursor_at_pixel_pos(int p_x) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
Ref<Font> font = get_font("font");
|
|
|
|
int ofs = window_pos;
|
|
|
|
Ref<StyleBox> style = get_stylebox("normal");
|
|
|
|
int pixel_ofs = 0;
|
|
|
|
Size2 size = get_size();
|
|
|
|
|
|
|
|
switch (align) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
case ALIGN_FILL:
|
|
|
|
case ALIGN_LEFT: {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
pixel_ofs = int(style->get_offset().x);
|
|
|
|
} break;
|
|
|
|
case ALIGN_CENTER: {
|
|
|
|
|
|
|
|
pixel_ofs=int(size.width-(cached_width))/2;
|
|
|
|
} break;
|
|
|
|
case ALIGN_RIGHT: {
|
|
|
|
|
|
|
|
pixel_ofs=int(size.width-style->get_offset().x-(cached_width));
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
while (ofs<text.length()) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-09-02 13:36:52 +02:00
|
|
|
int char_w = 0;
|
|
|
|
if (font != NULL) {
|
2015-12-07 20:31:21 +01:00
|
|
|
char_w = font->get_char_size(text[ofs]).width;
|
2015-09-02 13:36:52 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
pixel_ofs+=char_w;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (pixel_ofs > p_x) { //found what we look for
|
|
|
|
break;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ofs++;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
set_cursor_pos( ofs );
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
/*
|
|
|
|
int new_cursor_pos=p_x;
|
|
|
|
int charwidth=draw_area->get_font_char_width(' ',0);
|
|
|
|
new_cursor_pos=( ( (new_cursor_pos-2)+ (charwidth/2) ) /charwidth );
|
|
|
|
if (new_cursor_pos>(int)text.length()) new_cursor_pos=text.length();
|
|
|
|
set_cursor_pos(window_pos+new_cursor_pos); */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
bool LineEdit::cursor_get_blink_enabled() const {
|
|
|
|
return caret_blink_enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::cursor_set_blink_enabled(const bool p_enabled) {
|
|
|
|
caret_blink_enabled = p_enabled;
|
|
|
|
if (p_enabled) {
|
|
|
|
caret_blink_timer->start();
|
|
|
|
} else {
|
|
|
|
caret_blink_timer->stop();
|
|
|
|
}
|
|
|
|
draw_caret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
float LineEdit::cursor_get_blink_speed() const {
|
|
|
|
return caret_blink_timer->get_wait_time();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::cursor_set_blink_speed(const float p_speed) {
|
|
|
|
ERR_FAIL_COND(p_speed <= 0);
|
|
|
|
caret_blink_timer->set_wait_time(p_speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::_reset_caret_blink_timer() {
|
|
|
|
if (caret_blink_enabled) {
|
|
|
|
caret_blink_timer->stop();
|
|
|
|
caret_blink_timer->start();
|
|
|
|
draw_caret = true;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::_toggle_draw_caret() {
|
|
|
|
draw_caret = !draw_caret;
|
|
|
|
if (is_visible()) {
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void LineEdit::delete_char() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if ((text.length()<=0) || (cursor_pos==0)) return;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
Ref<Font> font = get_font("font");
|
2015-09-02 13:36:52 +02:00
|
|
|
if (font != NULL) {
|
|
|
|
cached_width -= font->get_char_size(text[cursor_pos - 1]).width;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
text.erase( cursor_pos-1, 1 );
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
set_cursor_pos(get_cursor_pos()-1);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (cursor_pos==window_pos) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// set_window_pos(cursor_pos-get_window_length());
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
void LineEdit::delete_text(int p_from_column, int p_to_column) {
|
|
|
|
|
|
|
|
undo_text = text;
|
|
|
|
|
|
|
|
if (text.size() > 0)
|
|
|
|
{
|
|
|
|
Ref<Font> font = get_font("font");
|
|
|
|
if (font != NULL) {
|
|
|
|
for (int i = p_from_column; i < p_to_column; i++)
|
|
|
|
cached_width -= font->get_char_size(text[i]).width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cached_width = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
text.erase(p_from_column,p_to_column-p_from_column);
|
|
|
|
cursor_pos-=CLAMP( cursor_pos-p_from_column, 0, p_to_column-p_from_column);
|
|
|
|
|
|
|
|
if (cursor_pos>=text.length()) {
|
|
|
|
|
|
|
|
cursor_pos=text.length();
|
|
|
|
}
|
|
|
|
if (window_pos>cursor_pos) {
|
|
|
|
|
|
|
|
window_pos=cursor_pos;
|
|
|
|
}
|
|
|
|
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2016-06-18 16:15:26 +02:00
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void LineEdit::set_text(String p_text) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
clear_internal();
|
|
|
|
append_at_cursor(p_text);
|
|
|
|
update();
|
|
|
|
cursor_pos=0;
|
|
|
|
window_pos=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::clear() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
clear_internal();
|
2016-09-07 01:34:24 +02:00
|
|
|
_text_changed();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String LineEdit::get_text() const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2016-06-27 13:47:40 +02:00
|
|
|
void LineEdit::set_placeholder(String p_text) {
|
|
|
|
|
2016-07-10 00:39:17 +02:00
|
|
|
placeholder = XL_MESSAGE(p_text);
|
2016-06-27 13:47:40 +02:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
String LineEdit::get_placeholder() const {
|
|
|
|
|
|
|
|
return placeholder;
|
|
|
|
}
|
|
|
|
|
2016-06-28 05:45:17 +02:00
|
|
|
|
|
|
|
void LineEdit::set_placeholder_alpha(float p_alpha) {
|
|
|
|
|
|
|
|
placeholder_alpha = p_alpha;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
float LineEdit::get_placeholder_alpha() const {
|
|
|
|
|
|
|
|
return placeholder_alpha;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void LineEdit::set_cursor_pos(int p_pos) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (p_pos>(int)text.length())
|
|
|
|
p_pos=text.length();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if(p_pos<0)
|
|
|
|
p_pos=0;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
cursor_pos=p_pos;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree()) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
window_pos=cursor_pos;
|
|
|
|
return;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<StyleBox> style = get_stylebox("normal");
|
|
|
|
Ref<Font> font=get_font("font");
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (cursor_pos<window_pos) {
|
|
|
|
/* Adjust window if cursor goes too much to the left */
|
|
|
|
set_window_pos(cursor_pos);
|
|
|
|
} else if (cursor_pos>window_pos) {
|
|
|
|
/* Adjust window if cursor goes too much to the right */
|
|
|
|
int window_width=get_size().width-style->get_minimum_size().width;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (window_width<0)
|
|
|
|
return;
|
|
|
|
int wp=window_pos;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-12 17:05:21 +02:00
|
|
|
if (font.is_valid()) {
|
|
|
|
|
|
|
|
int accum_width=0;
|
|
|
|
|
|
|
|
for(int i=cursor_pos;i>=window_pos;i--) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-12 17:05:21 +02:00
|
|
|
if (i>=text.length()) {
|
|
|
|
accum_width=font->get_char_size(' ').width; //anything should do
|
|
|
|
} else {
|
|
|
|
accum_width+=font->get_char_size(text[i],i+1<text.length()?text[i+1]:0).width; //anything should do
|
|
|
|
}
|
|
|
|
if (accum_width>=window_width)
|
|
|
|
break;
|
2015-09-02 13:36:52 +02:00
|
|
|
|
2016-06-12 17:05:21 +02:00
|
|
|
wp=i;
|
2015-09-02 13:36:52 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (wp!=window_pos)
|
|
|
|
set_window_pos( wp );
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
int LineEdit::get_cursor_pos() const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return cursor_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::set_window_pos(int p_pos) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
window_pos=p_pos;
|
|
|
|
if (window_pos<0) window_pos=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::append_at_cursor(String p_text) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if ( ( max_length <= 0 ) || (text.length()+p_text.length() <= max_length)) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
undo_text = text;
|
2015-08-15 08:47:22 +02:00
|
|
|
|
|
|
|
Ref<Font> font = get_font("font");
|
2015-09-02 13:36:52 +02:00
|
|
|
if (font != NULL) {
|
|
|
|
for (int i = 0; i < p_text.length(); i++)
|
|
|
|
cached_width += font->get_char_size(p_text[i]).width;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cached_width = 0;
|
|
|
|
}
|
2015-08-15 08:47:22 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
String pre = text.substr( 0, cursor_pos );
|
|
|
|
String post = text.substr( cursor_pos, text.length()-cursor_pos );
|
|
|
|
text=pre+p_text+post;
|
|
|
|
set_cursor_pos(cursor_pos+p_text.length());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::clear_internal() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
cached_width = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
cursor_pos=0;
|
|
|
|
window_pos=0;
|
|
|
|
undo_text="";
|
|
|
|
text="";
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
Size2 LineEdit::get_minimum_size() const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<StyleBox> style = get_stylebox("normal");
|
|
|
|
Ref<Font> font=get_font("font");
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Size2 min=style->get_minimum_size();
|
2016-06-10 03:05:41 +02:00
|
|
|
min.height+=font->get_height();
|
2016-09-07 01:34:24 +02:00
|
|
|
|
|
|
|
//minimum size of text
|
|
|
|
int space_size = font->get_char_size(' ').x;
|
|
|
|
int mstext = get_constant("minimum_spaces")*space_size;
|
|
|
|
|
|
|
|
if (expand_to_text_length) {
|
|
|
|
mstext=MAX(mstext,font->get_string_size(text).x+space_size); //add a spce because some fonts are too exact
|
|
|
|
}
|
|
|
|
|
|
|
|
min.width+=mstext;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* selection */
|
|
|
|
|
|
|
|
void LineEdit::selection_clear() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
selection.begin=0;
|
|
|
|
selection.end=0;
|
|
|
|
selection.cursor_start=0;
|
|
|
|
selection.enabled=false;
|
|
|
|
selection.creating=false;
|
|
|
|
selection.doubleclick=false;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::selection_delete() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-18 16:15:26 +02:00
|
|
|
if (selection.enabled)
|
|
|
|
delete_text(selection.begin,selection.end);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
selection_clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::set_max_length(int p_max_length) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
ERR_FAIL_COND(p_max_length<0);
|
|
|
|
max_length = p_max_length;
|
|
|
|
set_text(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
int LineEdit::get_max_length() const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return max_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::selection_fill_at_cursor() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int aux;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
selection.begin=cursor_pos;
|
|
|
|
selection.end=selection.cursor_start;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (selection.end<selection.begin) {
|
|
|
|
aux=selection.end;
|
|
|
|
selection.end=selection.begin;
|
|
|
|
selection.begin=aux;
|
|
|
|
}
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
selection.enabled=(selection.begin!=selection.end);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::select_all() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
if (!text.length())
|
|
|
|
return;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
selection.begin=0;
|
|
|
|
selection.end=text.length();
|
|
|
|
selection.enabled=true;
|
|
|
|
update();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
void LineEdit::set_editable(bool p_editable) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
editable=p_editable;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LineEdit::is_editable() const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return editable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::set_secret(bool p_secret) {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
pass=p_secret;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
bool LineEdit::is_secret() const {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
return pass;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LineEdit::select(int p_from, int p_to) {
|
|
|
|
|
2014-02-27 15:16:00 +01:00
|
|
|
if (p_from==0 && p_to==0) {
|
|
|
|
selection_clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int len = text.length();
|
|
|
|
if (p_from<0)
|
|
|
|
p_from=0;
|
|
|
|
if (p_from>len)
|
|
|
|
p_from=len;
|
|
|
|
if (p_to<0 || p_to>len)
|
|
|
|
p_to=len;
|
|
|
|
|
|
|
|
if (p_from>=p_to)
|
|
|
|
return;
|
|
|
|
|
|
|
|
selection.enabled=true;
|
|
|
|
selection.begin=p_from;
|
|
|
|
selection.end=p_to;
|
|
|
|
selection.creating=false;
|
|
|
|
selection.doubleclick=false;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2015-10-17 15:29:54 +02:00
|
|
|
bool LineEdit::is_text_field() const {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-05-17 01:25:17 +02:00
|
|
|
void LineEdit::menu_option(int p_option) {
|
|
|
|
|
|
|
|
switch(p_option) {
|
|
|
|
case MENU_CUT: {
|
|
|
|
cut_text();
|
|
|
|
} break;
|
|
|
|
case MENU_COPY: {
|
|
|
|
|
|
|
|
copy_text();
|
|
|
|
} break;
|
|
|
|
case MENU_PASTE: {
|
|
|
|
|
|
|
|
paste_text();
|
|
|
|
} break;
|
|
|
|
case MENU_CLEAR: {
|
|
|
|
clear();
|
|
|
|
} break;
|
|
|
|
case MENU_SELECT_ALL: {
|
|
|
|
select_all();
|
|
|
|
} break;
|
|
|
|
case MENU_UNDO: {
|
|
|
|
|
|
|
|
undo();
|
|
|
|
} break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
PopupMenu *LineEdit::get_menu() const {
|
|
|
|
return menu;
|
|
|
|
}
|
|
|
|
|
2016-06-21 15:38:35 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
void LineEdit::_editor_settings_changed() {
|
|
|
|
cursor_set_blink_enabled(EDITOR_DEF("text_editor/caret_blink", false));
|
|
|
|
cursor_set_blink_speed(EDITOR_DEF("text_editor/caret_blink_speed", 0.65));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-09-07 01:34:24 +02:00
|
|
|
|
|
|
|
void LineEdit::set_expand_to_text_length(bool p_len) {
|
|
|
|
|
|
|
|
expand_to_text_length=p_len;
|
|
|
|
minimum_size_changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LineEdit::get_expand_to_text_length() const{
|
|
|
|
|
|
|
|
return expand_to_text_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LineEdit::_text_changed() {
|
|
|
|
|
|
|
|
if (expand_to_text_length)
|
|
|
|
minimum_size_changed();
|
|
|
|
|
|
|
|
emit_signal("text_changed",text);
|
|
|
|
_change_notify("text");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void LineEdit::_bind_methods() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("_toggle_draw_caret"),&LineEdit::_toggle_draw_caret);
|
|
|
|
|
2016-06-21 15:38:35 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
ObjectTypeDB::bind_method("_editor_settings_changed",&LineEdit::_editor_settings_changed);
|
|
|
|
#endif
|
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_align", "align"), &LineEdit::set_align);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_align"), &LineEdit::get_align);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ObjectTypeDB::bind_method(_MD("_input_event"),&LineEdit::_input_event);
|
2016-03-09 00:00:52 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("clear"),&LineEdit::clear);
|
|
|
|
ObjectTypeDB::bind_method(_MD("select_all"),&LineEdit::select_all);
|
2014-02-10 02:10:30 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_text","text"),&LineEdit::set_text);
|
2016-03-09 00:00:52 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("get_text"),&LineEdit::get_text);
|
2016-06-27 13:47:40 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_placeholder","text"),&LineEdit::set_placeholder);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_placeholder"),&LineEdit::get_placeholder);
|
2016-06-28 05:45:17 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_placeholder_alpha","alpha"),&LineEdit::set_placeholder_alpha);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_placeholder_alpha"),&LineEdit::get_placeholder_alpha);
|
2014-02-10 02:10:30 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_cursor_pos","pos"),&LineEdit::set_cursor_pos);
|
2016-03-09 00:00:52 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("get_cursor_pos"),&LineEdit::get_cursor_pos);
|
2016-09-07 01:34:24 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_expand_to_text_length","pos"),&LineEdit::set_expand_to_text_length);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_expand_to_text_length"),&LineEdit::get_expand_to_text_length);
|
2016-06-21 01:05:52 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("cursor_set_blink_enabled", "enable"),&LineEdit::cursor_set_blink_enabled);
|
|
|
|
ObjectTypeDB::bind_method(_MD("cursor_get_blink_enabled"),&LineEdit::cursor_get_blink_enabled);
|
|
|
|
ObjectTypeDB::bind_method(_MD("cursor_set_blink_speed", "blink_speed"),&LineEdit::cursor_set_blink_speed);
|
|
|
|
ObjectTypeDB::bind_method(_MD("cursor_get_blink_speed"),&LineEdit::cursor_get_blink_speed);
|
2014-02-10 02:10:30 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_max_length","chars"),&LineEdit::set_max_length);
|
2016-03-09 00:00:52 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("get_max_length"),&LineEdit::get_max_length);
|
2014-02-10 02:10:30 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("append_at_cursor","text"),&LineEdit::append_at_cursor);
|
|
|
|
ObjectTypeDB::bind_method(_MD("set_editable","enabled"),&LineEdit::set_editable);
|
2016-03-09 00:00:52 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("is_editable"),&LineEdit::is_editable);
|
2014-02-10 02:10:30 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("set_secret","enabled"),&LineEdit::set_secret);
|
2016-03-09 00:00:52 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("is_secret"),&LineEdit::is_secret);
|
2014-02-27 14:39:31 +01:00
|
|
|
ObjectTypeDB::bind_method(_MD("select","from","to"),&LineEdit::select,DEFVAL(0),DEFVAL(-1));
|
2016-05-17 01:25:17 +02:00
|
|
|
ObjectTypeDB::bind_method(_MD("menu_option","option"),&LineEdit::menu_option);
|
|
|
|
ObjectTypeDB::bind_method(_MD("get_menu:PopupMenu"),&LineEdit::get_menu);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
ADD_SIGNAL( MethodInfo("text_changed", PropertyInfo( Variant::STRING, "text" )) );
|
|
|
|
ADD_SIGNAL( MethodInfo("text_entered", PropertyInfo( Variant::STRING, "text" )) );
|
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
BIND_CONSTANT(ALIGN_LEFT);
|
|
|
|
BIND_CONSTANT(ALIGN_CENTER);
|
|
|
|
BIND_CONSTANT(ALIGN_RIGHT);
|
|
|
|
BIND_CONSTANT(ALIGN_FILL);
|
|
|
|
|
2016-05-17 01:25:17 +02:00
|
|
|
BIND_CONSTANT( MENU_CUT );
|
|
|
|
BIND_CONSTANT( MENU_COPY );
|
|
|
|
BIND_CONSTANT( MENU_PASTE );
|
|
|
|
BIND_CONSTANT( MENU_CLEAR );
|
|
|
|
BIND_CONSTANT( MENU_SELECT_ALL );
|
|
|
|
BIND_CONSTANT( MENU_UNDO );
|
|
|
|
BIND_CONSTANT( MENU_MAX );
|
|
|
|
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::STRING, "text" ), _SCS("set_text"),_SCS("get_text") );
|
2016-06-28 05:45:17 +02:00
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::STRING, "placeholder/text" ), _SCS("set_placeholder"),_SCS("get_placeholder") );
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::REAL, "placeholder/alpha",PROPERTY_HINT_RANGE,"0,1,0.001" ), _SCS("set_placeholder_alpha"),_SCS("get_placeholder_alpha") );
|
2015-08-15 08:47:22 +02:00
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::INT, "align", PROPERTY_HINT_ENUM, "Left,Center,Right,Fill"), _SCS("set_align"), _SCS("get_align"));
|
2016-05-17 01:25:17 +02:00
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::INT, "max_length" ), _SCS("set_max_length"),_SCS("get_max_length") );
|
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::BOOL, "editable" ), _SCS("set_editable"),_SCS("is_editable") );
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::BOOL, "secret" ), _SCS("set_secret"),_SCS("is_secret") );
|
2016-09-07 01:34:24 +02:00
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::BOOL, "expand_to_len" ), _SCS("set_expand_to_text_length"),_SCS("get_expand_to_text_length") );
|
2016-04-12 18:25:17 +02:00
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::INT,"focus_mode", PROPERTY_HINT_ENUM, "None,Click,All" ), _SCS("set_focus_mode"), _SCS("get_focus_mode") );
|
2016-06-21 01:05:52 +02:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "caret/caret_blink"), _SCS("cursor_set_blink_enabled"), _SCS("cursor_get_blink_enabled"));;
|
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::REAL, "caret/caret_blink_speed",PROPERTY_HINT_RANGE,"0.1,10,0.1"), _SCS("cursor_set_blink_speed"),_SCS("cursor_get_blink_speed") );
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LineEdit::LineEdit() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2015-08-15 08:47:22 +02:00
|
|
|
align = ALIGN_LEFT;
|
|
|
|
cached_width = 0;
|
2014-02-10 02:10:30 +01:00
|
|
|
cursor_pos=0;
|
|
|
|
window_pos=0;
|
2016-06-21 01:16:18 +02:00
|
|
|
window_has_focus=true;
|
2014-02-10 02:10:30 +01:00
|
|
|
max_length = 0;
|
|
|
|
pass=false;
|
2016-06-28 05:45:17 +02:00
|
|
|
placeholder_alpha=0.6;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
selection_clear();
|
|
|
|
set_focus_mode( FOCUS_ALL );
|
|
|
|
editable=true;
|
|
|
|
set_default_cursor_shape(CURSOR_IBEAM);
|
|
|
|
set_stop_mouse(true);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-06-21 01:05:52 +02:00
|
|
|
draw_caret=true;
|
|
|
|
caret_blink_enabled=false;
|
|
|
|
caret_blink_timer = memnew(Timer);
|
|
|
|
add_child(caret_blink_timer);
|
|
|
|
caret_blink_timer->set_wait_time(0.65);
|
|
|
|
caret_blink_timer->connect("timeout", this,"_toggle_draw_caret");
|
|
|
|
cursor_set_blink_enabled(false);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2016-05-17 01:25:17 +02:00
|
|
|
menu = memnew( PopupMenu );
|
|
|
|
add_child(menu);
|
|
|
|
menu->add_item(TTR("Cut"),MENU_CUT,KEY_MASK_CMD|KEY_X);
|
|
|
|
menu->add_item(TTR("Copy"),MENU_COPY,KEY_MASK_CMD|KEY_C);
|
|
|
|
menu->add_item(TTR("Paste"),MENU_PASTE,KEY_MASK_CMD|KEY_V);
|
|
|
|
menu->add_separator();
|
|
|
|
menu->add_item(TTR("Select All"),MENU_SELECT_ALL,KEY_MASK_CMD|KEY_A);
|
|
|
|
menu->add_item(TTR("Clear"),MENU_CLEAR);
|
|
|
|
menu->add_separator();
|
|
|
|
menu->add_item(TTR("Undo"),MENU_UNDO,KEY_MASK_CMD|KEY_Z);
|
|
|
|
menu->connect("item_pressed",this,"menu_option");
|
2016-09-07 01:34:24 +02:00
|
|
|
expand_to_text_length=false;
|
2016-05-17 01:25:17 +02:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LineEdit::~LineEdit() {
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|