2010-05-19 13:05:30 -05:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
CayaPreferencesData()
|
2010-05-19 15:37:26 -05:00
|
|
|
: MoveToCurrentWorkspace(true),
|
2010-05-19 13:05:30 -05:00
|
|
|
ActivateWindow(true)
|
2010-05-19 15:37:26 -05:00
|
|
|
{
|
|
|
|
}
|
2010-05-19 13:05:30 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef PreferencesContainer<CayaPreferencesData> CayaPreferences;
|
|
|
|
|
|
|
|
#endif // _CAYA_PREFERENCES_H
|