summaryrefslogtreecommitdiff
blob: 1d342e58898dfb89fd14737707b54cd2aa68ac49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
expose function for setting cursor position

From: Jelle van der Waa <jelle@vdwaa.nl>


---
 src/vte/vteterminal.h |    5 +++++
 src/vtegtk.cc         |   24 ++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/src/vte/vteterminal.h b/src/vte/vteterminal.h
index 7925d1a9..b53a582a 100644
--- a/src/vte/vteterminal.h
+++ b/src/vte/vteterminal.h
@@ -347,6 +347,11 @@ _VTE_PUBLIC
 void vte_terminal_get_cursor_position(VteTerminal *terminal,
 				      glong *column,
                                       glong *row) _VTE_GNUC_NONNULL(1);
+_VTE_PUBLIC
+void vte_terminal_set_cursor_position(VteTerminal *terminal,
+                                      glong column,
+                                      glong row) _VTE_GNUC_NONNULL(1);
+
 
 /* Add a matching expression, returning the tag the widget assigns to that
  * expression. */
diff --git a/src/vtegtk.cc b/src/vtegtk.cc
index 20de9b35..b0039481 100644
--- a/src/vtegtk.cc
+++ b/src/vtegtk.cc
@@ -2160,6 +2160,30 @@ vte_terminal_get_cursor_position(VteTerminal *terminal,
 	}
 }
 
+/**
+ * vte_terminal_set_cursor_position
+ * @terminal: a #VteTerminal
+ * @column: the new cursor column
+ * @row: the new cursor row
+ *
+ * Set the location of the cursor.
+ */
+void
+vte_terminal_set_cursor_position(VteTerminal *terminal,
+		                 long column, long row)
+{
+	g_return_if_fail(VTE_IS_TERMINAL(terminal));
+
+        auto impl = IMPL(terminal);
+	impl->invalidate_cursor_once(FALSE);
+	impl->m_screen->cursor.col = column;
+	impl->m_screen->cursor.row = row;
+	impl->invalidate_cursor_once(FALSE);
+	impl->check_cursor_blink();
+	impl->queue_cursor_moved();
+
+}
+
 /**
  * vte_terminal_pty_new_sync:
  * @terminal: a #VteTerminal