/** * @file lluiconstants.h * @brief Compile-time configuration for UI * * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. * $License$ */ #ifndef LL_LLUICONSTANTS_H #define LL_LLUICONSTANTS_H // spacing for small font lines of text, like LLTextBoxes const S32 LINE = 16; // spacing for larger lines of text const S32 LINE_BIG = 24; // default vertical padding const S32 VPAD = 4; // default horizontal padding const S32 HPAD = 4; // Account History, how far to look into past const S32 SUMMARY_INTERVAL = 7; // one week const S32 SUMMARY_MAX = 8; // const S32 DETAILS_INTERVAL = 1; // one day const S32 DETAILS_MAX = 30; // one month const S32 TRANSACTIONS_INTERVAL = 1;// one day const S32 TRANSACTIONS_MAX = 30; // one month #endif