X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03647350fc7cd141953c72e0284e928847d30f44..b2e04188bd940ce8933394fee71790c9887ba32c:/include/wx/osx/iphone/private.h diff --git a/include/wx/osx/iphone/private.h b/include/wx/osx/iphone/private.h index b4c25709a5..250ff2512f 100644 --- a/include/wx/osx/iphone/private.h +++ b/include/wx/osx/iphone/private.h @@ -27,7 +27,7 @@ OSStatus WXDLLIMPEXP_CORE wxMacDrawCGImage( const CGRect * inBounds, CGImageRef inImage) ; -WX_UIImage WXDLLIMPEXP_CORE wxOSXCreateUIImageFromCGImage( CGImageRef image ); +WX_UIImage WXDLLIMPEXP_CORE wxOSXGetUIImageFromCGImage( CGImageRef image ); class WXDLLIMPEXP_CORE wxWidgetIPhoneImpl : public wxWidgetImpl { @@ -50,6 +50,7 @@ public : virtual WXWidget GetWXWidget() const { return m_osxView; } virtual void SetBackgroundColour( const wxColour& col ) ; + virtual bool SetBackgroundStyle(wxBackgroundStyle style) ; virtual void GetContentArea( int &left , int &top , int &width , int &height ) const; virtual void Move(int x, int y, int width, int height); @@ -110,8 +111,8 @@ public : // action - virtual void touchUpInsideAction(void* sender, WX_UIEvent evt, WXWidget slf, void* _cmd); - + virtual void controlAction(void* sender, wxUint32 controlEvent, WX_UIEvent rawEvent); + virtual void controlTextDidChange(); protected: WXWidget m_osxView; DECLARE_DYNAMIC_CLASS_NO_COPY(wxWidgetIPhoneImpl) @@ -125,9 +126,10 @@ public : virtual ~wxNonOwnedWindowIPhoneImpl(); - virtual void Destroy() ; + virtual void WillBeDestroyed() ; void Create( wxWindow* parent, const wxPoint& pos, const wxSize& size, long style, long extraStyle, const wxString& name ) ; + void Create( wxWindow* parent, WXWindow nativeWindow ); WXWindow GetWXWindow() const; void Raise(); @@ -169,10 +171,16 @@ public : virtual void WindowToScreen( int *x, int *y ); + // FIXME: Does iPhone have a concept of inactive windows? + virtual bool IsActive() { return true; } + wxNonOwnedWindow* GetWXPeer() { return m_wxPeer; } + + virtual bool InitialShowEventSent() { return m_initialShowSent; } protected : WX_UIWindow m_macWindow; void * m_macFullScreenData ; + bool m_initialShowSent; DECLARE_DYNAMIC_CLASS_NO_COPY(wxNonOwnedWindowIPhoneImpl) }; @@ -192,6 +200,13 @@ protected : @end + @interface wxUIView : UIView + { + } + + @end // wxUIView + + void WXDLLIMPEXP_CORE wxOSXIPhoneClassAddWXMethods(Class c); #endif