Chat-O-Matic/application/preferences/CayaPreferences.h

28 lines
563 B
C
Raw Normal View History

/*
* 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;
_CayaPreferencesData()
:
MoveToCurrentWorkspace(true),
ActivateWindow(true),
IgnoreEmoticons(false)
{
}
} CayaPreferencesData;
typedef PreferencesContainer<CayaPreferencesData> CayaPreferences;
#endif // _CAYA_PREFERENCES_H