コード例 #1
0
ファイル: CompositeCell.cs プロジェクト: Gaushick/xwt
 public override void StopTracking(PointF lastPoint, PointF stopPoint, NSView inView, bool mouseIsUp)
 {
     if (trackingCell != null) {
         try {
             trackingCell.StopTracking (lastPoint, stopPoint, inView, mouseIsUp);
         } finally {
             trackingCell = null;
         }
     }
 }
コード例 #2
0
ファイル: CompositeCell.cs プロジェクト: Gaushick/xwt
 void ICopiableObject.CopyFrom(object other)
 {
     var ob = (CompositeCell)other;
     source = ob.source;
     val = ob.val;
     tablePosition = ob.tablePosition;
     direction = ob.direction;
     trackingCell = ob.trackingCell;
     cells = new List<ICellRenderer> ();
     foreach (var c in ob.cells) {
         var copy = Activator.CreateInstance (c.GetType ());
         ((ICopiableObject)copy).CopyFrom (c);
         cells.Add ((ICellRenderer) copy);
     }
     if (tablePosition != null)
         Fill ();
 }
コード例 #3
0
ファイル: CompositeCell.cs プロジェクト: Gaushick/xwt
 public override bool StartTracking(PointF startPoint, NSView inView)
 {
     foreach (NSCell c in cells) {
         if (c.StartTracking (startPoint, inView)) {
             trackingCell = c;
             return true;
         }
     }
     return false;
 }
コード例 #4
0
ファイル: CompositeCell.cs プロジェクト: m13253/xwt
		public CGRect GetCellRect (CGRect cellFrame, NSCell cell)
		{
			foreach (var c in GetCells (cellFrame)) {
				if (c.Cell == cell)
					return c.Frame;
			}
			return CGRect.Empty;
		}
コード例 #5
0
ファイル: CompositeCell.cs プロジェクト: jfreax/xwt
 public RectangleF GetCellRect(RectangleF cellFrame, NSCell cell)
 {
     if (tablePosition is TableRow) {
         foreach (var c in GetCells (cellFrame)) {
             if (c.Cell == cell)
                 return c.Frame;
         }
     }
     return RectangleF.Empty;
 }
コード例 #6
0
ファイル: NsControl.cs プロジェクト: pramine/osx-wiki
 public virtual void UpdateCellInside(NSCell aCell);
コード例 #7
0
ファイル: CompositeCell.cs プロジェクト: m13253/xwt
		void ICopiableObject.CopyFrom (object other)
		{
			var ob = (CompositeCell)other;
			if (ob.source == null)
				throw new ArgumentException ("Cannot copy from a CompositeCell with a null `source`");
			context = ob.context;
			source = ob.source;
			val = ob.val;
			tablePosition = ob.tablePosition;
			direction = ob.direction;
			trackingCell = ob.trackingCell;
			cells = new List<ICellRenderer> ();
			foreach (var c in ob.cells) {
				var copy = (ICellRenderer) Activator.CreateInstance (c.GetType ());
				copy.CopyFrom (c);
				AddCell (copy);
			}
			if (tablePosition != null)
				Fill ();
		}
コード例 #8
0
ファイル: NsControl.cs プロジェクト: pramine/osx-wiki
 public virtual void UpdateCell(NSCell aCell);
コード例 #9
0
ファイル: NsControl.cs プロジェクト: pramine/osx-wiki
 public virtual void SelectCell(NSCell aCell);
コード例 #10
0
ファイル: NsControl.cs プロジェクト: pramine/osx-wiki
 public virtual void InvalidateIntrinsicContentSizeForCell(NSCell cell);
コード例 #11
0
ファイル: NsControl.cs プロジェクト: pramine/osx-wiki
 public virtual void DrawCellInside(NSCell aCell);
コード例 #12
0
ファイル: NsControl.cs プロジェクト: pramine/osx-wiki
 public virtual void DrawCell(NSCell aCell);