]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/palmos/cursor.h
adding 10.4 build compatibility for osx cocoa, see #10361
[wxWidgets.git] / include / wx / palmos / cursor.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/cursor.h
3// Purpose: wxCursor class
4// Author: William Osborne - minimal working wxPalmOS port
5// Modified by:
6// Created: 10/13/04
7// RCS-ID: $Id$
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_CURSOR_H_
13#define _WX_CURSOR_H_
14
15#include "wx/palmos/gdiimage.h"
16
17class WXDLLIMPEXP_FWD_CORE wxImage;
18
19// Cursor
20class WXDLLIMPEXP_CORE wxCursor : public wxGDIImage
21{
22public:
23 // constructors
24 wxCursor();
25 wxCursor(const wxImage& image);
26 wxCursor(const wxString& name,
27 wxBitmapType type = wxCURSOR_DEFAULT_TYPE,
28 int hotSpotX = 0, int hotSpotY = 0);
29 wxCursor(wxStockCursor id) { InitFromStock(id); }
30#if WXWIN_COMPATIBILITY_2_8
31 wxCursor(int id) { InitFromStock((wxStockCursor)id); }
32#endif
33 virtual ~wxCursor();
34
35 // implementation only
36 void SetHCURSOR(WXHCURSOR cursor) { SetHandle((WXHANDLE)cursor); }
37 WXHCURSOR GetHCURSOR() const { return (WXHCURSOR)GetHandle(); }
38
39protected:
40 void InitFromStock(wxStockCursor);
41 virtual wxGDIImageRefData *CreateData() const;
42
43private:
44 DECLARE_DYNAMIC_CLASS(wxCursor)
45};
46
47#endif
48 // _WX_CURSOR_H_