External/Aga.Controls/Tree/IRowLayout.cs
author StephaneLenclud
Thu, 18 Apr 2013 23:25:10 +0200
branchMiniDisplay
changeset 444 9b09e2ee0968
permissions -rw-r--r--
Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 using System.Drawing;
     5 
     6 namespace Aga.Controls.Tree
     7 {
     8 	internal interface IRowLayout
     9 	{
    10 		int PreferredRowHeight
    11 		{
    12 			get;
    13 			set;
    14 		}
    15 
    16 		int PageRowCount
    17 		{
    18 			get;
    19 		}
    20 
    21 		int CurrentPageSize
    22 		{
    23 			get;
    24 		}
    25 
    26 		Rectangle GetRowBounds(int rowNo);
    27 
    28 		int GetRowAt(Point point);
    29 
    30 		int GetFirstRow(int lastPageRow);
    31 
    32 		void ClearCache();
    33 	}
    34 }