/* * 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 CayaPreferences; #endif // _CAYA_PREFERENCES_H