29 lines
676 B
C
29 lines
676 B
C
|
/*
|
||
|
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
|
||
|
* Copyright 2012, Dario Casalinuovo. All rights reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _PREFERENCES_NOTIFICATIONS_H
|
||
|
#define _PREFERENCES_NOTIFICATIONS_H
|
||
|
|
||
|
#include <View.h>
|
||
|
|
||
|
class BCheckBox;
|
||
|
|
||
|
class PreferencesNotifications : public BView {
|
||
|
public:
|
||
|
PreferencesNotifications();
|
||
|
|
||
|
virtual void AttachedToWindow();
|
||
|
virtual void MessageReceived(BMessage* msg);
|
||
|
|
||
|
private:
|
||
|
BCheckBox* fNotifyProtocols;
|
||
|
BCheckBox* fNotifyContactStatus;
|
||
|
BCheckBox* fNotifyNewMessage;
|
||
|
BCheckBox* fSoundOnMessageReceived;
|
||
|
BCheckBox* fSoundOnMention;
|
||
|
};
|
||
|
|
||
|
#endif // _PREFERENCES_BEHAVIOR_H
|