!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / LuaRemoteDebugger / Aga.Controls / Tree / Enums.cs
blob970f55153446eb0c2902a7d09b301fdef55faca1
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
4 using System.Collections.Generic;
5 using System.Text;
7 namespace Aga.Controls.Tree
9 public enum DrawSelectionMode
11 None, Active, Inactive, FullRowSelect
14 public enum TreeSelectionMode
16 Single, Multi, MultiSameParent
19 public enum NodePosition
21 Inside, Before, After
24 public enum VerticalAlignment
26 Top, Bottom, Center
29 public enum IncrementalSearchMode
31 None, Standard, Continuous
34 [Flags]
35 public enum GridLineStyle
37 None = 0,
38 Horizontal = 1,
39 Vertical = 2,
40 HorizontalAndVertical = 3
43 public enum ImageScaleMode
45 /// <summary>
46 /// Don't scale
47 /// </summary>
48 Clip,
49 /// <summary>
50 /// Scales image to fit the display rectangle, aspect ratio is not fixed.
51 /// </summary>
52 Fit,
53 /// <summary>
54 /// Scales image down if it is larger than display rectangle, taking aspect ratio into account
55 /// </summary>
56 ScaleDown,
57 /// <summary>
58 /// Scales image up if it is smaller than display rectangle, taking aspect ratio into account
59 /// </summary>
60 ScaleUp,
61 /// <summary>
62 /// Scales image to match the display rectangle, taking aspect ratio into account
63 /// </summary>
64 AlwaysScale,