32 lines
663 B
C
32 lines
663 B
C
/*
|
|
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _CAYA_PREFERENCES_H
|
|
#define _CAYA_PREFERENCES_H
|
|
|
|
#include "PreferencesContainer.h"
|
|
|
|
typedef struct _CayaPreferencesData
|
|
{
|
|
bool MoveToCurrentWorkspace;
|
|
bool ActivateWindow;
|
|
bool IgnoreEmoticons;
|
|
bool HideCayaDeskbar;
|
|
bool DisableReplicant;
|
|
|
|
_CayaPreferencesData()
|
|
:
|
|
MoveToCurrentWorkspace(true),
|
|
ActivateWindow(true),
|
|
IgnoreEmoticons(false),
|
|
HideCayaDeskbar(false),
|
|
DisableReplicant(false)
|
|
{
|
|
}
|
|
} CayaPreferencesData;
|
|
|
|
typedef PreferencesContainer<CayaPreferencesData> CayaPreferences;
|
|
|
|
#endif // _CAYA_PREFERENCES_H
|