Updated for Mahogany.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1999-05-10 10:44:09 +00:00
parent 9931f08ade
commit b6bc5bf37c
5 changed files with 20 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
#endif
//#include "Mpch.h"
#include "Mpch.h"
#ifdef M_BASEDIR
# ifndef USE_PCH
# include "Mcommon.h"
@@ -277,6 +277,9 @@ wxLayoutWindow::OnChar(wxKeyEvent& event)
case 'k':
m_llist->DeleteToEndOfLine();
break;
case 'v':
Paste();
break;
#ifdef WXLAYOUT_DEBUG
case WXK_F1:
m_llist->SetFont(-1,-1,-1,-1,true); // underlined
@@ -328,6 +331,10 @@ wxLayoutWindow::OnChar(wxKeyEvent& event)
case WXK_END:
m_llist->MoveCursorToEndOfLine();
break;
case WXK_INSERT:
if(event.ShiftDown())
Paste();
break;
case WXK_DELETE :
m_llist->Delete(1);
break;