+void
+wxLayoutWindow::DeleteToEndOfLine(void)
+{
+ int help = m_llist.GetLineLength(
+ m_llist.GetCurrentObject())
+ - m_llist.GetCursor().x;
+ m_llist.Delete(help>1 ? help-1 : 1);
+}
+
+void
+wxLayoutWindow::GotoEndOfLine(void)
+{
+ wxPoint p = m_llist.GetCursor();
+ p.x = m_llist.GetLineLength(m_llist.GetCurrentObject());
+ if(p.x > 0) p.x --; // do not count the linebreak
+ m_llist.SetCursor(p);
+}
+
+void
+wxLayoutWindow::GotoBeginOfLine(void)
+{
+ wxPoint p = m_llist.GetCursor();
+ p.x = 0;
+ m_llist.SetCursor(p);
+}
+
+void
+wxLayoutWindow::DeleteLine(void)
+{
+ GotoBeginOfLine();
+ DeleteToEndOfLine();
+ m_llist.Delete(1); // newline
+}
+
+void
+wxLayoutWindow::DeleteToBeginOfLine(void)
+{
+ wxPoint p = m_llist.GetCursor();
+ int count = p.x;
+ if(count > 0)
+ {
+ p.x = 0;
+ m_llist.SetCursor(p);
+ m_llist.Delete(count);
+ }
+}
+
+
+void
+wxLayoutWindow::ScrollToCursor(void)
+{
+ /** Scroll so that cursor is visible! */
+ int x0,y0,x1,y1,ux,uy;
+ ViewStart(&x0,&y0);
+ GetScrollPixelsPerUnit(&ux,&uy);
+ x0*=ux; y0*=uy;
+ GetClientSize(&x1,&y1);
+
+ wxPoint cc = m_llist.GetCursorCoords();
+
+ if(cc.x < x0 || cc.y < y0
+ || cc.x >= x0+(9*x1)/10 || cc.y >= y0+(9*y1/10)) // (9*x)/10 == 90%
+ {
+ int nx, ny;
+ nx = cc.x - (8*x1)/10; if(nx < 0) nx = 0;
+ ny = cc.y - (8*y1)/10; if(ny < 0) ny = 0;
+ Scroll(nx/ux,ny/uy);
+ }
+}
+