]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/iphone/private/textimpl.h
Add support for custom scheme handling and virtual file systems to the OSX WebKit...
[wxWidgets.git] / include / wx / osx / iphone / private / textimpl.h
index 5c1bf8d6f19acb93be9b5211301851ff54ebc158..1bd750f996953f9f10f53d418909b2b511703eba 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        textimpl.h
+// Name:        wx/osx/iphone/private/textimpl.h
 // Purpose:     textcontrol implementation classes that have to be exposed
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     03/02/99
-// RCS-ID:      $Id: textimpl.h 63564 2010-02-27 02:51:45Z KO $
+// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -20,7 +20,7 @@
 class wxUITextFieldControl : public wxWidgetIPhoneImpl, public wxTextWidgetImpl
 {
 public :
-    wxUITextFieldControl( wxWindow *wxPeer, UITextField* w );
+    wxUITextFieldControl( wxTextCtrl *wxPeer, UITextField* w );
     virtual ~wxUITextFieldControl();
 
     virtual wxString GetStringValue() const ;
@@ -35,9 +35,14 @@ public :
     virtual void WriteText(const wxString& str) ;
     virtual bool HasOwnContextMenu() const { return true; }
 
+    virtual wxSize GetBestSize() const;    
+    
+    virtual bool SetHint(const wxString& hint);
+    
     virtual void controlAction(WXWidget slf, void* _cmd, void *sender);
 protected :
     UITextField* m_textField;
+    NSObject<UITextFieldDelegate>* m_delegate;
     long m_selStart;
     long m_selEnd;
 };
@@ -71,6 +76,7 @@ public:
     virtual wxSize GetBestSize() const;
 
 protected:
+    NSObject<UITextViewDelegate>* m_delegate;
     UITextView* m_textView;
 };