00001 00032 #ifndef LL_AVATAR_CONSTANTS_H 00033 #define LL_AVATAR_CONSTANTS_H 00034 00035 // If this string is passed to dataserver in AvatarPropertiesUpdate 00036 // then no change is made to user.profile_web 00037 const char* const BLACKLIST_PROFILE_WEB_STR = "featureWebProfilesDisabled"; 00038 00039 // If profile web pages are feature blacklisted then this URL is 00040 // shown in the profile instead of the user's set URL 00041 const char* const BLACKLIST_PROFILE_WEB_URL = "http://secondlife.com/app/webdisabled"; 00042 00043 // Maximum number of avatar picks 00044 const S32 MAX_AVATAR_PICKS = 10; 00045 00046 // For Flags in AvatarPropertiesReply 00047 const U32 AVATAR_ALLOW_PUBLISH = 0x1 << 0; // whether profile is externally visible or not 00048 const U32 AVATAR_MATURE_PUBLISH = 0x1 << 1; // profile is "mature" 00049 const U32 AVATAR_IDENTIFIED = 0x1 << 2; // whether avatar has provided payment info 00050 const U32 AVATAR_TRANSACTED = 0x1 << 3; // whether avatar has actively used payment info 00051 const U32 AVATAR_ONLINE = 0x1 << 4; // the online status of this avatar, if known. 00052 00053 static const std::string VISIBILITY_DEFAULT("default"); 00054 static const std::string VISIBILITY_HIDDEN("hidden"); 00055 static const std::string VISIBILITY_VISIBLE("visible"); 00056 static const std::string VISIBILITY_INVISIBLE("invisible"); 00057 00058 #endif 00059