mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 17:19:10 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/osx/cursor.h
|
|
// Purpose: wxCursor class
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 1998-01-01
|
|
// RCS-ID: $Id: cursor.h 62771 2009-12-03 17:20:15Z PC $
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_CURSOR_H_
|
|
#define _WX_CURSOR_H_
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
// Cursor
|
|
class WXDLLIMPEXP_CORE wxCursor : public wxGDIObject
|
|
{
|
|
public:
|
|
wxCursor();
|
|
|
|
wxCursor(const wxImage & image) ;
|
|
wxCursor(const wxString& name,
|
|
wxBitmapType type = wxCURSOR_DEFAULT_TYPE,
|
|
int hotSpotX = 0, int hotSpotY = 0);
|
|
|
|
wxCursor(wxStockCursor id) { InitFromStock(id); }
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
wxCursor(int id) { InitFromStock((wxStockCursor)id); }
|
|
#endif
|
|
virtual ~wxCursor();
|
|
|
|
void MacInstall() const ;
|
|
|
|
void SetHCURSOR(WXHCURSOR cursor);
|
|
WXHCURSOR GetHCURSOR() const;
|
|
|
|
protected:
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
private:
|
|
void InitFromStock(wxStockCursor);
|
|
|
|
void CreateFromImage(const wxImage & image) ;
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
|
};
|
|
|
|
extern WXDLLIMPEXP_CORE void wxSetCursor(const wxCursor& cursor);
|
|
|
|
#endif // _WX_CURSOR_H_
|