2010-05-19 13:05:30 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _PREFERENCES_BEHAVIOR_H
|
|
|
|
#define _PREFERENCES_BEHAVIOR_H
|
|
|
|
|
|
|
|
#include <View.h>
|
|
|
|
|
|
|
|
class BCheckBox;
|
|
|
|
class BStringView;
|
|
|
|
|
|
|
|
class PreferencesBehavior : public BView {
|
|
|
|
public:
|
|
|
|
PreferencesBehavior();
|
|
|
|
|
|
|
|
virtual void AttachedToWindow();
|
|
|
|
virtual void MessageReceived(BMessage* msg);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
BStringView* fOnIncomming;
|
|
|
|
BCheckBox* fToCurrentWorkspace;
|
|
|
|
BCheckBox* fActivateChatWindow;
|
|
|
|
BCheckBox* fPlaySoundOnMessageReceived;
|
|
|
|
BCheckBox* fMarkUnreadWindow;
|
|
|
|
|
2010-05-20 13:37:01 -05:00
|
|
|
BCheckBox* fIgnoreEmoticons;
|
2010-05-19 13:05:30 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _PREFERENCES_BEHAVIOR_H
|