-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSettings.cs
47 lines (35 loc) · 1.55 KB
/
Settings.cs
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
namespace FamilyManager
{
public class Settings
{
public const int Rock_RecordStatusValueId_Pending = 5;
public const int Rock_ConnectionStatusValueId_Visitor = 66;
public const float LogoWidth = 113;
public const float LogoHeight = 55;
public const string General_IconFont = "Bh";
public const string General_BoldFont = "OpenSans-Bold";
public const string General_RegularFont = "OpenSans-Regular";
public const string General_LightFont = "OpenSans-Light";
public const float StatusBar_SpacerWidth = 25;
public const float StatusBar_Height = 44;
public const float StatusBar_Opacity = .80f;
public const float DarkenOpacity = .80f;
public const int General_MinSearchLength = 3;
public const int General_AutoLockTime = 10;
/// <summary>
/// The text glyph to use as a symbol when the user doesn't have a photo.
/// </summary>
public const string AddPerson_NoPhotoSymbol = "";
/// <summary>
/// The size of font to use for the no photo symbol
/// </summary>
public const float AddPerson_SymbolFontSize = 48;
/// <summary>
/// When we store their profile pic, this is what it's called.
/// When the HasProfileImage flag is true, we'll load it from this file.
/// </summary>
public const string AddPerson_PicName = "userPhoto.jpg";
public const string AddPerson_Icon_Font_Primary = "FontAwesome";
}
}