static bool ms_logKey;
static bool ms_logChar;
static bool ms_logMouse;
+ static bool ms_logText;
private:
static inline wxChar GetChar(bool on, wxChar c) { return on ? c : _T('-'); }
MyTextCtrl::ms_logMouse = event.IsChecked();
}
+ void OnLogText(wxCommandEvent& event)
+ {
+ MyTextCtrl::ms_logText = event.IsChecked();
+ }
+
void OnIdle( wxIdleEvent& event );
private:
text->Freeze();
for ( int i = 0; i < 100; i++ )
- text->AppendText(wxString::Format("Line %i\n", i));
+ text->AppendText(wxString::Format(wxT("Line %i\n"), i));
text->SetInsertionPoint(0);
TEXT_LOG_KEY,
TEXT_LOG_CHAR,
TEXT_LOG_MOUSE,
+ TEXT_LOG_TEXT,
TEXT_END
};
menuLog->Append(TEXT_LOG_KEY, "Log &key events", "", TRUE);
menuLog->Append(TEXT_LOG_CHAR, "Log &char events", "", TRUE);
menuLog->Append(TEXT_LOG_MOUSE, "Log &mouse events", "", TRUE);
+ menuLog->Append(TEXT_LOG_TEXT, "Log &text events", "", TRUE);
menuLog->AppendSeparator();
menuLog->Append(TEXT_CLEAR, "&Clear the log\tCtrl-C",
"Clear the log window contents");
menuLog->Check(TEXT_LOG_KEY, TRUE);
menuLog->Check(TEXT_LOG_CHAR, TRUE);
- menuLog->Check(TEXT_LOG_MOUSE, TRUE);
+ menuLog->Check(TEXT_LOG_TEXT, TRUE);
menu_bar->Append(menuLog, "&Log");
frame->SetMenuBar(menu_bar);
bool MyTextCtrl::ms_logKey = TRUE;
bool MyTextCtrl::ms_logChar = TRUE;
-bool MyTextCtrl::ms_logMouse = TRUE;
+bool MyTextCtrl::ms_logMouse = FALSE;
+bool MyTextCtrl::ms_logText = TRUE;
void MyTextCtrl::LogEvent(const wxChar *name, wxKeyEvent& event) const
{
default:
{
if ( wxIsprint((int)keycode) )
- key.Printf( _T("'%c'") , (char)keycode);
+ key.Printf(_T("'%c'"), (char)keycode);
+ else if ( keycode > 0 && keycode < 27 )
+ key.Printf(_("Ctrl-%c"), _T('A') + keycode - 1);
else
- key.Printf( _T("unknown (%ld)"), keycode);
+ key.Printf(_T("unknown (%ld)"), keycode);
}
}
}
{
ev.Skip();
- if ( !MyTextCtrl::ms_logMouse )
+ if ( !ms_logMouse )
return;
if ( !ev.Moving() )
void MyTextCtrl::OnText(wxCommandEvent& event)
{
+ if ( !ms_logText )
+ return;
+
MyTextCtrl *win = (MyTextCtrl *)event.GetEventObject();
const wxChar *data = (const wxChar *)(win->GetClientData());
if ( data )
void MyTextCtrl::OnChar(wxKeyEvent& event)
{
- if ( MyTextCtrl::ms_logChar )
+ if ( ms_logChar )
LogEvent( _T("Char"), event);
event.Skip();
void MyTextCtrl::OnKeyUp(wxKeyEvent& event)
{
- if ( MyTextCtrl::ms_logKey )
+ if ( ms_logKey )
LogEvent( _T("Key up"), event);
event.Skip();
long line, column, pos = GetInsertionPoint();
PositionToXY(pos, &column, &line);
- wxLogMessage( _T("Current position: %ld\n"
- "Current line, column: (%ld, %ld)\n"
- "Number of lines: %ld\n"
- "Current line length: %ld\n"
- "Total text length: %u (%ld)"),
+ wxLogMessage( _T("Current position: %ld\nCurrent line, column: (%ld, %ld)\nNumber of lines: %ld\nCurrent line length: %ld\nTotal text length: %u (%ld)"),
pos,
line, column,
GetNumberOfLines(),
break;
}
- if ( MyTextCtrl::ms_logKey )
+ if ( ms_logKey )
LogEvent( wxT("Key down"), event);
event.Skip();
EVT_MENU(TEXT_LOAD, MyFrame::OnFileLoad)
EVT_MENU(TEXT_LOG_KEY, MyFrame::OnLogKey)
- EVT_MENU(TEXT_LOG_CHAR, MyFrame::OnLogChar)
- EVT_MENU(TEXT_LOG_MOUSE, MyFrame::OnLogMouse)
+ EVT_MENU(TEXT_LOG_CHAR, MyFrame::OnLogChar)
+ EVT_MENU(TEXT_LOG_MOUSE,MyFrame::OnLogMouse)
+ EVT_MENU(TEXT_LOG_TEXT, MyFrame::OnLogText)
EVT_MENU(TEXT_CLEAR, MyFrame::OnLogClear)
#if wxUSE_TOOLTIPS
{
#if wxUSE_FILE
// verify that the fil length is correct (it wasn't under Win95)
- wxFile file("dummy.txt");
- wxLogStatus(this, _T("Successfully saved file "
- "(text len = %ld, file size = %ld)"),
+ wxFile file(wxT("dummy.txt"));
+ wxLogStatus(this, _T("Successfully saved file (text len = %ld, file size = %ld)"),
m_panel->m_textrich->GetValue().length(),
file.Length());
#endif