4ec6c3a042
Some changes to the API for notifications. * Don't go through be_roster to send a notification, but use Notification->Send() instead. * Rename App to Group to make the purpose clearer And some changes to the notification code itself: * Use the Notification class as the way to convey informations about a notification. Allows easier extension of this class * Code cleanup * Use of the layout kit for the notify window Unfortunately, the latter part clashes quite a bit with the changes I already did to the notification window, so it's now quite broken. Working on that next, but I wanted to separate that work from the patch ... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43114 a95241bf-73f2-0310-859d-f6bbb57e9c96
92 lines
2.0 KiB
C++
92 lines
2.0 KiB
C++
/*
|
|
* Copyright 2010, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _NOTIFICATION_H
|
|
#define _NOTIFICATION_H
|
|
|
|
|
|
#include <Archivable.h>
|
|
#include <Entry.h>
|
|
#include <List.h>
|
|
#include <String.h>
|
|
|
|
|
|
// notification types
|
|
enum notification_type {
|
|
B_INFORMATION_NOTIFICATION,
|
|
B_IMPORTANT_NOTIFICATION,
|
|
B_ERROR_NOTIFICATION,
|
|
B_PROGRESS_NOTIFICATION
|
|
};
|
|
|
|
class BBitmap;
|
|
|
|
|
|
class BNotification : public BArchivable {
|
|
public:
|
|
BNotification(notification_type type);
|
|
BNotification(BMessage* archive);
|
|
virtual ~BNotification();
|
|
|
|
status_t InitCheck() const;
|
|
|
|
static BArchivable* Instantiate(BMessage* archive);
|
|
virtual status_t Archive(BMessage* archive, bool deep = true) const;
|
|
|
|
notification_type Type() const;
|
|
|
|
const char* Group() const;
|
|
void SetGroup(const BString& group);
|
|
|
|
const char* Title() const;
|
|
void SetTitle(const BString& title);
|
|
|
|
const char* Content() const;
|
|
void SetContent(const BString& content);
|
|
|
|
const char* MessageID() const;
|
|
void SetMessageID(const BString& id);
|
|
|
|
float Progress() const;
|
|
void SetProgress(float progress);
|
|
|
|
const char* OnClickApp() const;
|
|
void SetOnClickApp(const BString& app);
|
|
|
|
const entry_ref* OnClickFile() const;
|
|
status_t SetOnClickFile(const entry_ref* file);
|
|
|
|
status_t AddOnClickRef(const entry_ref* ref);
|
|
int32 CountOnClickRefs() const;
|
|
const entry_ref* OnClickRefAt(int32 index) const;
|
|
|
|
status_t AddOnClickArg(const BString& arg);
|
|
int32 CountOnClickArgs() const;
|
|
const char* OnClickArgAt(int32 index) const;
|
|
|
|
const BBitmap* Icon() const;
|
|
status_t SetIcon(const BBitmap* icon);
|
|
|
|
status_t Send(bigtime_t timeout = -1);
|
|
|
|
private:
|
|
status_t fInitStatus;
|
|
|
|
notification_type fType;
|
|
BString fGroup;
|
|
BString fTitle;
|
|
BString fContent;
|
|
BString fID;
|
|
float fProgress;
|
|
|
|
BString fApp;
|
|
entry_ref* fFile;
|
|
BList fRefs;
|
|
BList fArgv;
|
|
BBitmap* fBitmap;
|
|
};
|
|
|
|
|
|
#endif // _NOTIFICATION_H
|