2010-05-07 04:47:10 -05:00
|
|
|
/*
|
2011-12-03 16:38:03 -06:00
|
|
|
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
|
2010-05-07 04:47:10 -05:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _CAYA_RESOURCES_H
|
|
|
|
#define _CAYA_RESOURCES_H
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kOnlineIcon = 10,
|
|
|
|
kAwayIcon = 11,
|
|
|
|
kBusyIcon = 12,
|
|
|
|
kOfflineIcon = 13,
|
|
|
|
|
2010-05-20 16:31:55 -05:00
|
|
|
kToolIcon = 20,
|
2010-05-09 03:23:53 -05:00
|
|
|
kSearchIcon = 21,
|
2010-05-07 04:47:10 -05:00
|
|
|
|
2011-12-14 17:36:27 -06:00
|
|
|
kProtocolSettingsTemplate = 1000,
|
|
|
|
|
|
|
|
kConnectingReplicant = 1200,
|
|
|
|
kCayaIconReplicant = 1220,
|
|
|
|
kOfflineReplicant = 1300,
|
|
|
|
kBusyReplicant = 1333,
|
|
|
|
kAwayReplicant = 1400,
|
2012-05-01 16:09:56 -05:00
|
|
|
kExitMenuReplicant = 1401,
|
|
|
|
|
|
|
|
kPersonIcon = 1500
|
2010-05-07 04:47:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CAYA_RESOURCES_H
|