]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/text/text.cpp
updated templates and regenerated project files for OpenGL samples
[wxWidgets.git] / samples / text / text.cpp
index 081fac55823c94745cff191207589d2c2a89fce0..3872f7cccc4d496e3300227f6245c6c2aa0286a4 100644 (file)
@@ -79,6 +79,7 @@ public:
     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('-'); }
@@ -197,6 +198,11 @@ public:
         MyTextCtrl::ms_logMouse = event.IsChecked();
     }
 
+    void OnLogText(wxCommandEvent& event)
+    {
+        MyTextCtrl::ms_logText = event.IsChecked();
+    }
+
     void OnIdle( wxIdleEvent& event );
 
 private:
@@ -207,7 +213,7 @@ 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);
 
@@ -262,6 +268,7 @@ enum
     TEXT_LOG_KEY,
     TEXT_LOG_CHAR,
     TEXT_LOG_MOUSE,
+    TEXT_LOG_TEXT,
 
     TEXT_END
 };
@@ -325,12 +332,13 @@ bool MyApp::OnInit()
     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);
@@ -361,7 +369,8 @@ END_EVENT_TABLE()
 
 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
 {
@@ -475,9 +484,11 @@ 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);
             }
         }
     }
@@ -529,7 +540,7 @@ void MyTextCtrl::OnMouseEvent(wxMouseEvent& ev)
 {
     ev.Skip();
 
-    if ( !MyTextCtrl::ms_logMouse )
+    if ( !ms_logMouse )
         return;
 
     if ( !ev.Moving() )
@@ -565,6 +576,9 @@ void MyTextCtrl::OnMouseEvent(wxMouseEvent& ev)
 
 void MyTextCtrl::OnText(wxCommandEvent& event)
 {
+    if ( !ms_logText )
+        return;
+
     MyTextCtrl *win = (MyTextCtrl *)event.GetEventObject();
     const wxChar *data = (const wxChar *)(win->GetClientData());
     if ( data )
@@ -600,7 +614,7 @@ void MyTextCtrl::OnTextURL(wxTextUrlEvent& event)
 
 void MyTextCtrl::OnChar(wxKeyEvent& event)
 {
-    if ( MyTextCtrl::ms_logChar )
+    if ( ms_logChar )
         LogEvent( _T("Char"), event);
 
     event.Skip();
@@ -608,7 +622,7 @@ void MyTextCtrl::OnChar(wxKeyEvent& event)
 
 void MyTextCtrl::OnKeyUp(wxKeyEvent& event)
 {
-    if ( MyTextCtrl::ms_logKey )
+    if ( ms_logKey )
         LogEvent( _T("Key up"), event);
 
     event.Skip();
@@ -624,11 +638,7 @@ void MyTextCtrl::OnKeyDown(wxKeyEvent& event)
                 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(),
@@ -677,7 +687,7 @@ void MyTextCtrl::OnKeyDown(wxKeyEvent& event)
             break;
     }
 
-    if ( MyTextCtrl::ms_logKey )
+    if ( ms_logKey )
         LogEvent( wxT("Key down"), event);
 
     event.Skip();
@@ -928,8 +938,9 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
     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
@@ -1058,9 +1069,8 @@ void MyFrame::OnFileSave(wxCommandEvent& event)
     {
 #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