blob: 01663ed2335345873571389f25dfe18e139aab8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
* @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
|