58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
/*
|
|
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
|
|
* Copyright 2012, Casalinuovo Dario. All rights reserved.
|
|
* Copyright 2021-2022, Jaidyn Levesque <jadedctrl@teknik.io>
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
*/
|
|
#ifndef _APP_PREFERENCES_H
|
|
#define _APP_PREFERENCES_H
|
|
|
|
#include <Rect.h>
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
class AppPreferences {
|
|
public:
|
|
static AppPreferences* Get();
|
|
|
|
void Load();
|
|
void Save();
|
|
|
|
bool MoveToCurrentWorkspace;
|
|
bool RaiseOnMessageReceived;
|
|
bool MarkUnreadWindow;
|
|
|
|
bool NotifyProtocolStatus;
|
|
bool NotifyContactStatus;
|
|
bool NotifyNewMessage;
|
|
bool SoundOnMessageReceived;
|
|
bool SoundOnMention;
|
|
|
|
bool HideDeskbar;
|
|
bool DisableReplicant;
|
|
bool DisableQuitConfirm;
|
|
|
|
bool IgnoreEmoticons;
|
|
bool MembershipUpdates;
|
|
|
|
bool HideOffline;
|
|
|
|
float MainWindowListWeight;
|
|
float MainWindowChatWeight;
|
|
|
|
float ChatViewHorizChatWeight;
|
|
float ChatViewHorizListWeight;
|
|
float ChatViewVertChatWeight;
|
|
float ChatViewVertSendWeight;
|
|
|
|
BRect MainWindowRect;
|
|
BRect RoomDirectoryRect;
|
|
|
|
private:
|
|
const char* _PreferencesPath();
|
|
|
|
static AppPreferences* fInstance;
|
|
};
|
|
|
|
#endif // _APP_PREFERENCES_H
|