File size: 2,062 Bytes
18a519f | 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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | using System.Collections.Generic;
using UnityEditor.IMGUI.Controls;
namespace Unity.PlasticSCM.Editor.UI.Tree
{
internal static class TableViewOperations
{
internal static int GetFirstSelectedRow(
TreeView treeView)
{
IList<int> selectedIds = treeView.GetSelection();
if (selectedIds.Count == 0)
return -1;
return selectedIds[0];
}
internal static void SelectFirstRow(
TreeView treeView)
{
int rowCount = treeView.GetRows().Count;
if (rowCount == 0)
return;
SetSelectionAndScroll(
treeView, new List<int> { 1 });
}
internal static void SelectDefaultRow(
TreeView treeView, int defaultRow)
{
int rowCount = treeView.GetRows().Count;
if (defaultRow == -1 || rowCount == 0)
return;
if (defaultRow >= rowCount)
defaultRow = rowCount - 1;
SetSelectionAndScroll(
treeView, new List<int> { defaultRow });
}
internal static void SetSelectionAndScroll(
TreeView treeView, List<int> idsToSelect)
{
treeView.SetSelection(
idsToSelect,
TreeViewSelectionOptions.FireSelectionChanged |
TreeViewSelectionOptions.RevealAndFrame);
}
internal static void ScrollToSelection(
TreeView treeView)
{
if (!treeView.HasSelection())
return;
int itemId = treeView.GetSelection()[0];
if (!IsVisible(itemId, treeView))
return;
treeView.FrameItem(itemId);
}
static bool IsVisible(int id, TreeView treeView)
{
foreach (TreeViewItem item in treeView.GetRows())
{
if (item.id == id)
return true;
}
return false;
}
}
}
|