]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/gen_iface.py
Fixed child positioning on window resizing.
[wxWidgets.git] / src / stc / gen_iface.py
index 541dd96ee880dd3408e108f3587da8380e891b5b..f35fb2931bb823c7a1ef9250077258b5d1d092d0 100644 (file)
@@ -93,6 +93,14 @@ methodOverrideMap = {
                           SendMsg(%s, data.GetDataLen(), (long)data.GetData());''',
                        0),
 
+    'AppendText' : (0,
+                 'void %s(const wxString& text);',
+
+                 '''void %s(const wxString& text) {
+                    wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
+                    SendMsg(%s, strlen(buf), (long)(const char*)buf);''',
+                 0),
+
     'GetViewWS' : ( 'GetViewWhiteSpace', 0, 0, 0),
     'SetViewWS' : ( 'SetViewWhiteSpace', 0, 0, 0),
 
@@ -501,6 +509,11 @@ methodOverrideMap = {
          return SendMsg(%s, strlen(buf), (long)(const char*)buf);''',
      0),
 
+    # not sure what to do about these yet
+    'TargetAsUTF8' :       ( None, 0, 0, 0),
+    'SetLengthForEncode' : ( None, 0, 0, 0),
+    'EncodedFromUTF8' :    ( None, 0, 0, 0),
+    
 
     'GetDocPointer' :
     (0,