2006-10-29 19:45:16 +03:00
|
|
|
/*
|
2009-08-27 15:12:41 +04:00
|
|
|
* Copyright 2006-2009, Haiku, Inc. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
2006-10-29 19:45:16 +03:00
|
|
|
*/
|
2002-09-24 08:11:55 +04:00
|
|
|
#ifndef _DESKBAR_H
|
|
|
|
#define _DESKBAR_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <Rect.h>
|
|
|
|
|
|
|
|
class BMessenger;
|
|
|
|
class BView;
|
2007-10-16 00:13:55 +04:00
|
|
|
struct entry_ref;
|
2002-09-24 08:11:55 +04:00
|
|
|
|
2006-10-29 19:45:16 +03:00
|
|
|
|
2002-09-24 08:11:55 +04:00
|
|
|
enum deskbar_location {
|
|
|
|
B_DESKBAR_TOP,
|
|
|
|
B_DESKBAR_BOTTOM,
|
|
|
|
B_DESKBAR_LEFT_TOP,
|
|
|
|
B_DESKBAR_RIGHT_TOP,
|
|
|
|
B_DESKBAR_LEFT_BOTTOM,
|
|
|
|
B_DESKBAR_RIGHT_BOTTOM
|
|
|
|
};
|
|
|
|
|
2006-10-29 19:45:16 +03:00
|
|
|
class BDeskbar {
|
2009-08-26 14:45:36 +04:00
|
|
|
public:
|
|
|
|
BDeskbar();
|
|
|
|
~BDeskbar();
|
|
|
|
|
|
|
|
bool IsRunning() const;
|
|
|
|
|
|
|
|
// Location member functions
|
|
|
|
BRect Frame() const;
|
|
|
|
deskbar_location Location(bool* _isExpanded = NULL) const;
|
|
|
|
status_t SetLocation(deskbar_location location,
|
|
|
|
bool expanded = false);
|
|
|
|
bool IsExpanded() const;
|
|
|
|
status_t Expand(bool expand);
|
|
|
|
|
|
|
|
// Item querying member functions
|
|
|
|
status_t GetItemInfo(int32 id,
|
|
|
|
const char** _name) const;
|
|
|
|
status_t GetItemInfo(const char* name,
|
|
|
|
int32* _id) const;
|
|
|
|
bool HasItem(int32 id) const;
|
|
|
|
bool HasItem(const char* name) const;
|
|
|
|
uint32 CountItems() const;
|
|
|
|
|
|
|
|
// Item modification member functions
|
|
|
|
status_t AddItem(BView* archivableView,
|
|
|
|
int32* _id = NULL);
|
|
|
|
status_t AddItem(entry_ref* addOn, int32* _id = NULL);
|
|
|
|
status_t RemoveItem(int32 id);
|
|
|
|
status_t RemoveItem(const char* name);
|
|
|
|
|
|
|
|
private:
|
|
|
|
BMessenger* fMessenger;
|
|
|
|
uint32 _reserved[12];
|
2002-09-24 08:11:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _DESKBAR_H
|