Fixed building of catalogs.
[AROS.git] / workbench / classes / zune / nlist / nlist_mcc / Pointer.h
blobdd4cf5af161acaf4eaa5f1030232f0260e34cc07
1 #if !defined(_POINTER_H_)
2 #define _POINTER_H_
3 /***************************************************************************
5 NList.mcc - New List MUI Custom Class
6 Registered MUI class, Serial Number: 1d51 0x9d510030 to 0x9d5100A0
7 0x9d5100C0 to 0x9d5100FF
9 Copyright (C) 1996-2001 by Gilles Masson
10 Copyright (C) 2001-2013 by NList Open Source Team
12 This library is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Lesser General Public
14 License as published by the Free Software Foundation; either
15 version 2.1 of the License, or (at your option) any later version.
17 This library is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
22 NList classes Support Site: http://www.sf.net/projects/nlist-classes
24 $Id$
26 ***************************************************************************/
28 // forward declarations
29 struct NLData;
31 // enums
32 enum PointerType
34 PT_NONE=0, // no custom pointer active
35 PT_SIZE, // sizePointer active
36 PT_MOVE, // movePointer active
37 PT_SELECT, // selectPointer active
40 // prototypes
41 void SetupCustomPointers(struct NLData *data);
42 void CleanupCustomPointers(struct NLData *data);
43 void ShowCustomPointer(struct NLData *data, enum PointerType type);
44 void HideCustomPointer(struct NLData *data);
46 #endif // _POINTER_H_