]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/textctrl.h
Fixed and clarified editor control event handling
[wxWidgets.git] / interface / wx / textctrl.h
index c4f03743d5e33d597b7c59b90ab4afad0e5dbbd6..568edff93007f91fdaec7b5633dc63dee2e388ee 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxTextAttr
-    @wxheader{textctrl.h}
 
     wxTextAttr represents the character and paragraph attributes, or style,
     for a range of text in a wxTextCtrl or wxRichTextCtrl.
@@ -648,7 +647,6 @@ enum wxTextCtrlHitTestResult
 
 /**
     @class wxTextCtrl
-    @wxheader{textctrl.h}
 
     A text control allows text to be displayed and edited.
 
@@ -1437,6 +1435,9 @@ public:
 
         If both parameters are equal to -1 all text in the control is selected.
 
+        Notice that the insertion point will be moved to @a from by this
+        function.
+
         @param from
             The first position.
         @param to
@@ -1556,7 +1557,6 @@ public:
 
 /**
     @class wxStreamToTextRedirector
-    @wxheader{textctrl.h}
 
     This class can be used to (temporarily) redirect all output sent to a C++
     ostream object to a wxTextCtrl instead.
@@ -1571,21 +1571,17 @@ public:
 
     @code
     using namespace std;
-
-      wxTextCtrl *text = new wxTextCtrl(...);
-
-      {
+    wxTextCtrl* text = new wxTextCtrl(...);
+    {
         wxStreamToTextRedirector redirect(text);
 
         // this goes to the text control
-        cout  "Hello, text!"  endl;
-      }
-
-      // this goes somewhere else, presumably to stdout
-      cout  "Hello, console!"  endl;
+        cout << "Hello, text!" << endl;
+    }
+    // this goes somewhere else, presumably to stdout
+    cout << "Hello, console!" << endl;
     @endcode
 
-
     @library{wxcore}
     @category{logging}