#region CPL License /* Nuclex Framework Copyright (C) 2002-2010 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion using System; using Microsoft.Xna.Framework; namespace Nuclex.UserInterface.Controls.Desktop { /// /// Interface which can be established between a control and its renderer to /// allow a slider control to locate its thumb /// /// /// A renderer can implement this interface and assign it to a control that /// it renders so the control can ask the renderer for extended informations /// regarding the look of its text. If this interface is provided, certain /// controls will be able to correctly place the caret in user-editable text /// when they are clicked by the mouse. /// public interface IThumbLocator { /// /// Calculates the position of the thumb on a slider /// /// /// Boundaries of the control, should be in absolute coordinates /// /// Relative position of the thumb (0.0 .. 1.0) /// Relative size of the thumb (0.0 .. 1.0) /// The region covered by the slider's thumb RectangleF GetThumbPosition(RectangleF bounds, float thumbPosition, float thumbSize); } } // namespace Nuclex.UserInterface.Controls.Desktop