Chat-O-Matic/application/preferences/PreferencesBehavior.h
2021-08-18 18:28:53 -05:00

31 lines
656 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_BEHAVIOR_H
#define _PREFERENCES_BEHAVIOR_H
#include <View.h>
class BCheckBox;
class PreferencesBehavior : public BView {
public:
PreferencesBehavior();
virtual void AttachedToWindow();
virtual void MessageReceived(BMessage* msg);
private:
BCheckBox* fHideOffline;
BCheckBox* fToCurrentWorkspace;
BCheckBox* fRaiseOnMessageReceived;
BCheckBox* fMarkUnreadWindow;
BCheckBox* fDisableQuitConfirm;
};
#endif // _PREFERENCES_BEHAVIOR_H