wxCursor(wxImage) added (Chris Elliott, patch 517439)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14340 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-02-21 15:22:58 +00:00
parent 1af5934b54
commit bff4ec6360
3 changed files with 85 additions and 1 deletions

View File

@@ -12,6 +12,8 @@
#ifndef _WX_CURSOR_H_
#define _WX_CURSOR_H_
#include <wx/image.h>
#ifdef __GNUG__
#pragma interface "cursor.h"
#endif
@@ -55,7 +57,7 @@ public:
// Copy constructors
wxCursor(const wxCursor& cursor) { Ref(cursor); }
wxCursor(const wxImage & image) ;
wxCursor(const char bits[], int width, int height,
int hotSpotX = -1, int hotSpotY = -1,
const char maskBits[] = NULL);