TextEdit: Fix inconsistent copy, cut and paste behaviour
This commit is contained in:
parent
c9a401e541
commit
4dfd0c1863
|
@ -2169,35 +2169,7 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!selection.active){
|
cut();
|
||||||
|
|
||||||
String clipboard = text[cursor.line];
|
|
||||||
OS::get_singleton()->set_clipboard(clipboard);
|
|
||||||
cursor_set_line(cursor.line);
|
|
||||||
cursor_set_column(0);
|
|
||||||
_remove_text(cursor.line,0,cursor.line,text[cursor.line].length());
|
|
||||||
|
|
||||||
backspace_at_cursor();
|
|
||||||
update();
|
|
||||||
cursor_set_line(cursor.line+1);
|
|
||||||
cut_copy_line = true;
|
|
||||||
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
|
|
||||||
String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
|
||||||
OS::get_singleton()->set_clipboard(clipboard);
|
|
||||||
|
|
||||||
cursor_set_line(selection.from_line);
|
|
||||||
cursor_set_column(selection.from_column);
|
|
||||||
|
|
||||||
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
|
||||||
selection.active=false;
|
|
||||||
selection.selecting_mode=Selection::MODE_NONE;
|
|
||||||
update();
|
|
||||||
cut_copy_line = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
case KEY_C: {
|
case KEY_C: {
|
||||||
|
@ -2207,16 +2179,8 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!selection.active){
|
copy();
|
||||||
String clipboard = _base_get_text(cursor.line,0,cursor.line,text[cursor.line].length());
|
|
||||||
OS::get_singleton()->set_clipboard(clipboard);
|
|
||||||
cut_copy_line = true;
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
|
||||||
OS::get_singleton()->set_clipboard(clipboard);
|
|
||||||
cut_copy_line = false;
|
|
||||||
}
|
|
||||||
} break;
|
} break;
|
||||||
case KEY_Z: {
|
case KEY_Z: {
|
||||||
|
|
||||||
|
@ -2237,25 +2201,8 @@ void TextEdit::_input_event(const InputEvent& p_input_event) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
String clipboard = OS::get_singleton()->get_clipboard();
|
paste();
|
||||||
|
|
||||||
if (selection.active) {
|
|
||||||
selection.active=false;
|
|
||||||
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
|
||||||
cursor_set_line(selection.from_line);
|
|
||||||
cursor_set_column(selection.from_column);
|
|
||||||
|
|
||||||
}
|
|
||||||
else if (cut_copy_line)
|
|
||||||
{
|
|
||||||
cursor_set_column(0);
|
|
||||||
String ins="\n";
|
|
||||||
clipboard += ins;
|
|
||||||
}
|
|
||||||
|
|
||||||
_insert_text_at_cursor(clipboard);
|
|
||||||
|
|
||||||
update();
|
|
||||||
} break;
|
} break;
|
||||||
case KEY_SPACE: {
|
case KEY_SPACE: {
|
||||||
#ifdef OSX_ENABLED
|
#ifdef OSX_ENABLED
|
||||||
|
@ -3028,39 +2975,23 @@ void TextEdit::set_auto_indent(bool p_auto_indent) {
|
||||||
|
|
||||||
void TextEdit::cut() {
|
void TextEdit::cut() {
|
||||||
|
|
||||||
if (!selection.active)
|
if (!selection.active) {
|
||||||
return;
|
|
||||||
|
|
||||||
String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
String clipboard = text[cursor.line];
|
||||||
OS::get_singleton()->set_clipboard(clipboard);
|
OS::get_singleton()->set_clipboard(clipboard);
|
||||||
|
cursor_set_line(cursor.line);
|
||||||
|
cursor_set_column(0);
|
||||||
|
_remove_text(cursor.line,0,cursor.line,text[cursor.line].length());
|
||||||
|
|
||||||
cursor_set_line(selection.from_line);
|
backspace_at_cursor();
|
||||||
cursor_set_column(selection.from_column);
|
update();
|
||||||
|
cursor_set_line(cursor.line+1);
|
||||||
|
cut_copy_line = true;
|
||||||
|
|
||||||
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
} else {
|
||||||
selection.active=false;
|
|
||||||
selection.selecting_mode=Selection::MODE_NONE;
|
|
||||||
update();
|
|
||||||
|
|
||||||
}
|
String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
||||||
|
OS::get_singleton()->set_clipboard(clipboard);
|
||||||
void TextEdit::copy() {
|
|
||||||
|
|
||||||
if (!selection.active)
|
|
||||||
return;
|
|
||||||
|
|
||||||
print_line("from line: "+itos(selection.from_line));
|
|
||||||
print_line("from column: "+itos(selection.from_column));
|
|
||||||
print_line("to line: "+itos(selection.to_line));
|
|
||||||
print_line("to column: "+itos(selection.to_column));
|
|
||||||
|
|
||||||
String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
|
||||||
OS::get_singleton()->set_clipboard(clipboard);
|
|
||||||
|
|
||||||
}
|
|
||||||
void TextEdit::paste() {
|
|
||||||
|
|
||||||
if (selection.active) {
|
|
||||||
|
|
||||||
cursor_set_line(selection.from_line);
|
cursor_set_line(selection.from_line);
|
||||||
cursor_set_column(selection.from_column);
|
cursor_set_column(selection.from_column);
|
||||||
|
@ -3068,13 +2999,48 @@ void TextEdit::paste() {
|
||||||
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
||||||
selection.active=false;
|
selection.active=false;
|
||||||
selection.selecting_mode=Selection::MODE_NONE;
|
selection.selecting_mode=Selection::MODE_NONE;
|
||||||
|
update();
|
||||||
|
cut_copy_line = false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TextEdit::copy() {
|
||||||
|
|
||||||
|
if (!selection.active)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!selection.active) {
|
||||||
|
String clipboard = _base_get_text(cursor.line,0,cursor.line,text[cursor.line].length());
|
||||||
|
OS::get_singleton()->set_clipboard(clipboard);
|
||||||
|
cut_copy_line = true;
|
||||||
|
} else {
|
||||||
|
String clipboard = _base_get_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
||||||
|
OS::get_singleton()->set_clipboard(clipboard);
|
||||||
|
cut_copy_line = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void TextEdit::paste() {
|
||||||
|
|
||||||
String clipboard = OS::get_singleton()->get_clipboard();
|
String clipboard = OS::get_singleton()->get_clipboard();
|
||||||
|
|
||||||
|
if (selection.active) {
|
||||||
|
|
||||||
|
selection.active=false;
|
||||||
|
selection.selecting_mode=Selection::MODE_NONE;
|
||||||
|
_remove_text(selection.from_line,selection.from_column,selection.to_line,selection.to_column);
|
||||||
|
cursor_set_line(selection.from_line);
|
||||||
|
cursor_set_column(selection.from_column);
|
||||||
|
|
||||||
|
} else if (cut_copy_line) {
|
||||||
|
|
||||||
|
cursor_set_column(0);
|
||||||
|
String ins="\n";
|
||||||
|
clipboard += ins;
|
||||||
|
}
|
||||||
|
|
||||||
_insert_text_at_cursor(clipboard);
|
_insert_text_at_cursor(clipboard);
|
||||||
update();
|
update();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextEdit::select_all() {
|
void TextEdit::select_all() {
|
||||||
|
|
Loading…
Reference in New Issue