1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/External/Aga.Controls/Tree/IRowLayout.cs Sun May 27 15:16:19 2012 +0000
1.3 @@ -0,0 +1,34 @@
1.4 +using System;
1.5 +using System.Collections.Generic;
1.6 +using System.Text;
1.7 +using System.Drawing;
1.8 +
1.9 +namespace Aga.Controls.Tree
1.10 +{
1.11 + internal interface IRowLayout
1.12 + {
1.13 + int PreferredRowHeight
1.14 + {
1.15 + get;
1.16 + set;
1.17 + }
1.18 +
1.19 + int PageRowCount
1.20 + {
1.21 + get;
1.22 + }
1.23 +
1.24 + int CurrentPageSize
1.25 + {
1.26 + get;
1.27 + }
1.28 +
1.29 + Rectangle GetRowBounds(int rowNo);
1.30 +
1.31 + int GetRowAt(Point point);
1.32 +
1.33 + int GetFirstRow(int lastPageRow);
1.34 +
1.35 + void ClearCache();
1.36 + }
1.37 +}