16ed1e1d15
* Removed DisplaySupport.h, wasn't needed anymore. * Removed private color set functions from InterfaceDefs.cpp - we might want something similar, but definitely not like that. * Minor cleanup, added some missing licenses. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16831 a95241bf-73f2-0310-859d-f6bbb57e9c96
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
/*
|
|
* Copyright 2001-2006, Haiku.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* DarkWyrm <bpmagic@columbus.rr.com>
|
|
*/
|
|
#ifndef CURSOR_SET_H
|
|
#define CURSOR_SET_H
|
|
|
|
|
|
#include <Bitmap.h>
|
|
#include <Cursor.h>
|
|
#include <Message.h>
|
|
|
|
#include <ServerProtocol.h>
|
|
|
|
class ServerCursor;
|
|
|
|
|
|
/*!
|
|
\brief Class to manage system cursor sets
|
|
*/
|
|
class CursorSet : public BMessage {
|
|
public:
|
|
CursorSet(const char *name);
|
|
|
|
status_t Save(const char *path,int32 saveflags=0);
|
|
status_t Load(const char *path);
|
|
status_t AddCursor(cursor_which which,const BBitmap *cursor, const BPoint &hotspot);
|
|
status_t AddCursor(cursor_which which, uint8 *data);
|
|
void RemoveCursor(cursor_which which);
|
|
status_t FindCursor(cursor_which which, BBitmap **cursor, BPoint *hotspot);
|
|
status_t FindCursor(cursor_which which, ServerCursor **cursor);
|
|
void SetName(const char *name);
|
|
const char *GetName(void);
|
|
|
|
private:
|
|
const char *_CursorWhichToString(cursor_which which);
|
|
BBitmap *_CursorDataToBitmap(uint8 *data);
|
|
};
|
|
|
|
#endif // CURSOR_SET_H
|