upping version numbers
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@48802 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -58,6 +58,14 @@
|
|||||||
#define wxMAC_USE_NATIVE_TOOLBAR 1
|
#define wxMAC_USE_NATIVE_TOOLBAR 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* using mixins of cocoa functionality
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef wxMAC_USE_COCOA
|
||||||
|
#define wxMAC_USE_COCOA 1
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
/* _WX_MAC_CHKCONF_H_ */
|
/* _WX_MAC_CHKCONF_H_ */
|
||||||
|
|
||||||
|
@@ -116,9 +116,9 @@
|
|||||||
#define WXWIN_OS_DESCRIPTION "Darwin 7.9.0 Power Macintosh"
|
#define WXWIN_OS_DESCRIPTION "Darwin 7.9.0 Power Macintosh"
|
||||||
#define PACKAGE_BUGREPORT "wx-dev@lists.wxwidgets.org"
|
#define PACKAGE_BUGREPORT "wx-dev@lists.wxwidgets.org"
|
||||||
#define PACKAGE_NAME "wxWidgets"
|
#define PACKAGE_NAME "wxWidgets"
|
||||||
#define PACKAGE_STRING "wxWidgets 2.8.3"
|
#define PACKAGE_STRING "wxWidgets 2.8.6"
|
||||||
#define PACKAGE_TARNAME "wxwidgets"
|
#define PACKAGE_TARNAME "wxwidgets"
|
||||||
#define PACKAGE_VERSION "2.8.3"
|
#define PACKAGE_VERSION "2.8.6"
|
||||||
|
|
||||||
// for regex
|
// for regex
|
||||||
#define WX_NO_REGEX_ADVANCED 1
|
#define WX_NO_REGEX_ADVANCED 1
|
||||||
|
@@ -454,6 +454,7 @@ CTabHandle wxMacCreateColorTable( int numColors );
|
|||||||
*/
|
*/
|
||||||
void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap , int forceType = 0 );
|
void wxMacCreateBitmapButton( ControlButtonContentInfo*info , const wxBitmap& bitmap , int forceType = 0 );
|
||||||
void wxMacReleaseBitmapButton( ControlButtonContentInfo*info );
|
void wxMacReleaseBitmapButton( ControlButtonContentInfo*info );
|
||||||
|
CGImageRef wxMacCreateCGImageFromBitmap( const wxBitmap& bitmap );
|
||||||
|
|
||||||
#define MAC_WXCOLORREF(a) (*((RGBColor*)&(a)))
|
#define MAC_WXCOLORREF(a) (*((RGBColor*)&(a)))
|
||||||
#define MAC_WXHBITMAP(a) (GWorldPtr(a))
|
#define MAC_WXHBITMAP(a) (GWorldPtr(a))
|
||||||
@@ -1372,5 +1373,63 @@ private :
|
|||||||
void* m_pool;
|
void* m_pool;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// NSObject
|
||||||
|
|
||||||
|
void wxMacCocoaRelease( void* obj );
|
||||||
|
void wxMacCocoaAutorelease( void* obj );
|
||||||
|
void wxMacCocoaRetain( void* obj );
|
||||||
|
|
||||||
|
#if wxMAC_USE_COCOA
|
||||||
|
|
||||||
|
// NSCursor
|
||||||
|
|
||||||
|
WX_NSCursor wxMacCocoaCreateStockCursor( int cursor_type );
|
||||||
|
WX_NSCursor wxMacCocoaCreateCursorFromCGImage( CGImageRef cgImageRef, float hotSpotX, float hotSpotY );
|
||||||
|
void wxMacCocoaSetCursor( WX_NSCursor cursor );
|
||||||
|
void wxMacCocoaHideCursor();
|
||||||
|
void wxMacCocoaShowCursor();
|
||||||
|
|
||||||
|
typedef struct tagClassicCursor
|
||||||
|
{
|
||||||
|
wxUint16 bits[16];
|
||||||
|
wxUint16 mask[16];
|
||||||
|
wxInt16 hotspot[2];
|
||||||
|
}ClassicCursor;
|
||||||
|
|
||||||
|
#else // !wxMAC_USE_COCOA
|
||||||
|
|
||||||
|
// non Darwin
|
||||||
|
|
||||||
|
typedef Cursor ClassicCursor;
|
||||||
|
|
||||||
|
#endif // wxMAC_USE_COCOA
|
||||||
|
|
||||||
|
// -------------
|
||||||
|
// Common to all
|
||||||
|
// -------------
|
||||||
|
|
||||||
|
// Cursor support
|
||||||
|
|
||||||
|
const short kwxCursorBullseye = 0;
|
||||||
|
const short kwxCursorBlank = 1;
|
||||||
|
const short kwxCursorPencil = 2;
|
||||||
|
const short kwxCursorMagnifier = 3;
|
||||||
|
const short kwxCursorNoEntry = 4;
|
||||||
|
const short kwxCursorPaintBrush = 5;
|
||||||
|
const short kwxCursorPointRight = 6;
|
||||||
|
const short kwxCursorPointLeft = 7;
|
||||||
|
const short kwxCursorQuestionArrow = 8;
|
||||||
|
const short kwxCursorRightArrow = 9;
|
||||||
|
const short kwxCursorSizeNS = 10;
|
||||||
|
const short kwxCursorSize = 11;
|
||||||
|
const short kwxCursorSizeNESW = 12;
|
||||||
|
const short kwxCursorSizeNWSE = 13;
|
||||||
|
const short kwxCursorRoller = 14;
|
||||||
|
const short kwxCursorLast = kwxCursorRoller;
|
||||||
|
|
||||||
|
// exposing our fallback cursor map
|
||||||
|
|
||||||
|
extern ClassicCursor gMacCursors[];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// _WX_PRIVATE_H_
|
// _WX_PRIVATE_H_
|
||||||
|
Reference in New Issue
Block a user