Carbon Events
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -58,6 +58,10 @@ class WXDLLEXPORT wxApp: public wxAppBase
|
|||||||
virtual void SetPrintMode(int mode) { m_printMode = mode; }
|
virtual void SetPrintMode(int mode) { m_printMode = mode; }
|
||||||
virtual int GetPrintMode() const { return m_printMode; }
|
virtual int GetPrintMode() const { return m_printMode; }
|
||||||
|
|
||||||
|
#if wxUSE_GUI
|
||||||
|
// setting up all MacOS Specific Event-Handlers etc
|
||||||
|
virtual bool OnInitGui();
|
||||||
|
#endif // wxUSE_GUI
|
||||||
// implementation only
|
// implementation only
|
||||||
void OnIdle(wxIdleEvent& event);
|
void OnIdle(wxIdleEvent& event);
|
||||||
void OnEndSession(wxCloseEvent& event);
|
void OnEndSession(wxCloseEvent& event);
|
||||||
@@ -86,9 +90,11 @@ public:
|
|||||||
static bool Initialize();
|
static bool Initialize();
|
||||||
static void CleanUp();
|
static void CleanUp();
|
||||||
|
|
||||||
virtual bool OnInit();
|
|
||||||
void DeletePendingObjects();
|
void DeletePendingObjects();
|
||||||
bool IsExiting() { return !m_keepGoing ; }
|
bool IsExiting() { return !m_keepGoing ; }
|
||||||
|
#if TARGET_CARBON
|
||||||
|
WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; }
|
||||||
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static long sm_lastMessageTime;
|
static long sm_lastMessageTime;
|
||||||
@@ -106,6 +112,11 @@ protected:
|
|||||||
// mac specifics
|
// mac specifics
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
#if TARGET_CARBON
|
||||||
|
// public to avoid change in initialization order of handlers
|
||||||
|
// could be moved into a override of OnInitGui eventually
|
||||||
|
WXEVENTHANDLERREF m_macEventHandler ;
|
||||||
|
#endif
|
||||||
static bool s_macDefaultEncodingIsPC ;
|
static bool s_macDefaultEncodingIsPC ;
|
||||||
static bool s_macSupportPCMenuShortcuts ;
|
static bool s_macSupportPCMenuShortcuts ;
|
||||||
static long s_macAboutMenuItemId ;
|
static long s_macAboutMenuItemId ;
|
||||||
@@ -130,10 +141,20 @@ public:
|
|||||||
|
|
||||||
virtual void MacSuspend( bool convertClipboard ) ;
|
virtual void MacSuspend( bool convertClipboard ) ;
|
||||||
virtual void MacResume( bool convertClipboard ) ;
|
virtual void MacResume( bool convertClipboard ) ;
|
||||||
|
|
||||||
virtual void MacConvertPrivateToPublicScrap() ;
|
virtual void MacConvertPrivateToPublicScrap() ;
|
||||||
virtual void MacConvertPublicToPrivateScrap() ;
|
virtual void MacConvertPublicToPrivateScrap() ;
|
||||||
|
|
||||||
|
#if !TARGET_CARBON
|
||||||
|
virtual void MacHandleMenuSelect( int menuid , int menuitem ) ;
|
||||||
|
virtual void MacHandleMouseUpEvent( WXEVENTREF ev ) ;
|
||||||
|
virtual void MacHandleOSEvent( WXEVENTREF ev ) ;
|
||||||
|
virtual void MacHandleDiskEvent( WXEVENTREF ev ) ;
|
||||||
|
virtual void MacHandleActivateEvent( WXEVENTREF ev ) ;
|
||||||
|
virtual void MacHandleUpdateEvent( WXEVENTREF ev ) ;
|
||||||
|
#endif
|
||||||
|
virtual void MacHandleMouseDownEvent( WXEVENTREF ev ) ;
|
||||||
|
|
||||||
|
void MacHandleMenuCommand( wxUint32 command ) ;
|
||||||
// event main methods
|
// event main methods
|
||||||
|
|
||||||
void MacDoOneEvent() ;
|
void MacDoOneEvent() ;
|
||||||
@@ -143,16 +164,9 @@ public:
|
|||||||
|
|
||||||
// primary events
|
// primary events
|
||||||
|
|
||||||
virtual void MacHandleMouseDownEvent( WXEVENTREF ev ) ;
|
|
||||||
virtual void MacHandleMouseUpEvent( WXEVENTREF ev ) ;
|
|
||||||
virtual void MacHandleActivateEvent( WXEVENTREF ev ) ;
|
|
||||||
virtual void MacHandleUpdateEvent( WXEVENTREF ev ) ;
|
|
||||||
virtual void MacHandleKeyDownEvent( WXEVENTREF ev ) ;
|
virtual void MacHandleKeyDownEvent( WXEVENTREF ev ) ;
|
||||||
virtual void MacHandleKeyUpEvent( WXEVENTREF ev ) ;
|
virtual void MacHandleKeyUpEvent( WXEVENTREF ev ) ;
|
||||||
virtual void MacHandleDiskEvent( WXEVENTREF ev ) ;
|
|
||||||
virtual void MacHandleOSEvent( WXEVENTREF ev ) ;
|
|
||||||
virtual void MacHandleHighLevelEvent( WXEVENTREF ev ) ;
|
virtual void MacHandleHighLevelEvent( WXEVENTREF ev ) ;
|
||||||
virtual void MacHandleMenuSelect( int menuid , int menuitem ) ;
|
|
||||||
|
|
||||||
virtual bool MacSendKeyDownEvent( wxWindow* focus , long keyval , long modifiers , long when , short wherex , short wherey ) ;
|
virtual bool MacSendKeyDownEvent( wxWindow* focus , long keyval , long modifiers , long when , short wherex , short wherey ) ;
|
||||||
virtual bool MacSendKeyUpEvent( wxWindow* focus , long keyval , long modifiers , long when , short wherex , short wherey ) ;
|
virtual bool MacSendKeyUpEvent( wxWindow* focus , long keyval , long modifiers , long when , short wherex , short wherey ) ;
|
||||||
|
@@ -75,13 +75,15 @@ public:
|
|||||||
virtual void Clear() ;
|
virtual void Clear() ;
|
||||||
virtual WXWidget MacGetContainerForEmbedding() ;
|
virtual WXWidget MacGetContainerForEmbedding() ;
|
||||||
WXWindow MacGetWindowRef() { return m_macWindow ; }
|
WXWindow MacGetWindowRef() { return m_macWindow ; }
|
||||||
virtual void MacActivate( WXEVENTREF ev , bool inIsActivating ) ;
|
virtual void MacActivate( long timestamp , bool inIsActivating ) ;
|
||||||
virtual void MacUpdate( long timestamp ) ;
|
virtual void MacUpdate( long timestamp ) ;
|
||||||
|
#if !TARGET_CARBON
|
||||||
virtual void MacMouseDown( WXEVENTREF ev , short windowPart ) ;
|
virtual void MacMouseDown( WXEVENTREF ev , short windowPart ) ;
|
||||||
virtual void MacMouseUp( WXEVENTREF ev , short windowPart ) ;
|
virtual void MacMouseUp( WXEVENTREF ev , short windowPart ) ;
|
||||||
virtual void MacMouseMoved( WXEVENTREF ev , short windowPart ) ;
|
virtual void MacMouseMoved( WXEVENTREF ev , short windowPart ) ;
|
||||||
virtual void MacKeyDown( WXEVENTREF ev ) ;
|
virtual void MacKeyDown( WXEVENTREF ev ) ;
|
||||||
virtual void MacFireMouseEvent( WXEVENTREF ev ) ;
|
#endif
|
||||||
|
virtual void MacFireMouseEvent( wxUint16 kind , wxInt32 x , wxInt32 y ,wxUint32 modifiers , long timestamp ) ;
|
||||||
virtual void Raise();
|
virtual void Raise();
|
||||||
virtual void Lower();
|
virtual void Lower();
|
||||||
virtual void SetTitle( const wxString& title);
|
virtual void SetTitle( const wxString& title);
|
||||||
@@ -89,7 +91,10 @@ public:
|
|||||||
virtual void DoMoveWindow(int x, int y, int width, int height);
|
virtual void DoMoveWindow(int x, int y, int width, int height);
|
||||||
void MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) ;
|
void MacInvalidate( const WXRECTPTR rect, bool eraseBackground ) ;
|
||||||
short MacGetWindowBackgroundTheme() const { return m_macWindowBackgroundTheme ; }
|
short MacGetWindowBackgroundTheme() const { return m_macWindowBackgroundTheme ; }
|
||||||
virtual void MacInstallEventHandler() ;
|
|
||||||
|
#if TARGET_CARBON
|
||||||
|
WXEVENTHANDLERREF MacGetEventHandler() { return m_macEventHandler ; }
|
||||||
|
#endif
|
||||||
protected:
|
protected:
|
||||||
// common part of all ctors
|
// common part of all ctors
|
||||||
void Init();
|
void Init();
|
||||||
@@ -107,9 +112,12 @@ protected:
|
|||||||
wxWindowMac* m_macFocus ;
|
wxWindowMac* m_macFocus ;
|
||||||
WXHRGN m_macNoEraseUpdateRgn ;
|
WXHRGN m_macNoEraseUpdateRgn ;
|
||||||
bool m_macNeedsErasing ;
|
bool m_macNeedsErasing ;
|
||||||
void* m_macEventHandler ;
|
|
||||||
|
|
||||||
static WXWindow s_macWindowInUpdate ;
|
static WXWindow s_macWindowInUpdate ;
|
||||||
|
private :
|
||||||
|
#if TARGET_CARBON
|
||||||
|
WXEVENTHANDLERREF m_macEventHandler ;
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
// list of all frames and modeless dialogs
|
// list of all frames and modeless dialogs
|
||||||
|
Reference in New Issue
Block a user