1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: curico.h
|
|
|
|
// Purpose: Icon and cursor functions
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-10-24 19:50:17 +00:00
|
|
|
#ifndef _WX_CURICO_H_
|
|
|
|
#define _WX_CURICO_H_
|
|
|
|
|
1999-06-10 18:12:13 +00:00
|
|
|
HICON ReadIconFile( wxChar *szFileName, HINSTANCE hInst,
|
1998-05-20 14:12:05 +00:00
|
|
|
int *W = 0, int *H = 0);
|
1999-06-10 18:12:13 +00:00
|
|
|
HCURSOR ReadCursorFile( wxChar *szFileName, HINSTANCE hInst,
|
1998-05-20 14:12:05 +00:00
|
|
|
int *W = 0, int *H = 0, int *XHot = 0, int *YHot = 0);
|
1999-06-10 18:12:13 +00:00
|
|
|
HCURSOR IconToCursor( wxChar *szFileName, HINSTANCE hInst, int XHot, int YHot,
|
1998-05-20 14:12:05 +00:00
|
|
|
int *W = 0, int *H = 0);
|
1999-06-10 18:12:13 +00:00
|
|
|
HICON CursorToIcon( wxChar *szFileName, HINSTANCE hInst,
|
1998-05-20 14:12:05 +00:00
|
|
|
int *W = 0, int *H = 0);
|
|
|
|
|
|
|
|
HCURSOR MakeCursorFromBitmap(HINSTANCE hInst, HBITMAP hBitmap, POINT *pPoint);
|
|
|
|
HICON MakeIconFromBitmap(HINSTANCE hInst, HBITMAP hBitmap);
|
1999-10-24 19:50:17 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|