Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Documents / FixedSOMLineRanges.cs / 1 / FixedSOMLineRanges.cs
/*++ File: FixedSOMLineRanges.cs Copyright (C) 2005 Microsoft Corporation. All rights reserved. Description: Internal helper class that can store a set of sorted lines by their start and end indices History: 05/17/2005: eleese - Created --*/ namespace System.Windows.Documents { using System.Collections; using System.Collections.Generic; using System.Windows.Shapes; using System.Windows.Controls; using System.Diagnostics; using System.Windows.Media; internal class FixedSOMLineRanges { public void AddRange(double start, double end) { for (int i = 0; i < Start.Count; ) { if (start > End[i] + _minLineSeparation) { i++; } else if (end + _minLineSeparation < Start[i]) { Start.Insert(i, start); End.Insert(i, end); return; } else { // overlap !! if (Start[i] < start) { start = Start[i]; } if (End[i] > end) { end = End[i]; } Start.RemoveAt(i); End.RemoveAt(i); } } Start.Add(start); End.Add(end); } public int GetLineAt(double line) { //use binary search int startIndex = 0; int endIndex = Start.Count - 1; while (endIndex > startIndex) { int i = (startIndex + endIndex) >> 1; // Invariant: i < endIndex if (line > End[i]) { startIndex = i + 1; } else { endIndex = i; } } if (startIndex == endIndex && line <= End[startIndex] && line >= Start[startIndex]) { return startIndex; } else { return -1; } } public double Line { set { _line = value; } get { return _line; } } public ListStart { get { if (_start == null) { _start = new List (); } return _start; } } public List End { get { if (_end == null) { _end = new List (); } return _end; } } public int Count { get { return Start.Count; } } static public double MinLineSeparation { get { return _minLineSeparation; } } private double _line; // X or Y value for set of lines private List _start; // where lines start. Invariant: _start[i] < _end[i] private List _end; // where lines end. Invariant: _end[i] < _start[i+1] private const double _minLineSeparation = 3; // lines closer than this are considered one line } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. /*++ File: FixedSOMLineRanges.cs Copyright (C) 2005 Microsoft Corporation. All rights reserved. Description: Internal helper class that can store a set of sorted lines by their start and end indices History: 05/17/2005: eleese - Created --*/ namespace System.Windows.Documents { using System.Collections; using System.Collections.Generic; using System.Windows.Shapes; using System.Windows.Controls; using System.Diagnostics; using System.Windows.Media; internal class FixedSOMLineRanges { public void AddRange(double start, double end) { for (int i = 0; i < Start.Count; ) { if (start > End[i] + _minLineSeparation) { i++; } else if (end + _minLineSeparation < Start[i]) { Start.Insert(i, start); End.Insert(i, end); return; } else { // overlap !! if (Start[i] < start) { start = Start[i]; } if (End[i] > end) { end = End[i]; } Start.RemoveAt(i); End.RemoveAt(i); } } Start.Add(start); End.Add(end); } public int GetLineAt(double line) { //use binary search int startIndex = 0; int endIndex = Start.Count - 1; while (endIndex > startIndex) { int i = (startIndex + endIndex) >> 1; // Invariant: i < endIndex if (line > End[i]) { startIndex = i + 1; } else { endIndex = i; } } if (startIndex == endIndex && line <= End[startIndex] && line >= Start[startIndex]) { return startIndex; } else { return -1; } } public double Line { set { _line = value; } get { return _line; } } public List Start { get { if (_start == null) { _start = new List (); } return _start; } } public List End { get { if (_end == null) { _end = new List (); } return _end; } } public int Count { get { return Start.Count; } } static public double MinLineSeparation { get { return _minLineSeparation; } } private double _line; // X or Y value for set of lines private List _start; // where lines start. Invariant: _start[i] < _end[i] private List _end; // where lines end. Invariant: _end[i] < _start[i+1] private const double _minLineSeparation = 3; // lines closer than this are considered one line } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DelegateSerializationHolder.cs
- HeaderPanel.cs
- CustomCategoryAttribute.cs
- DefaultValueAttribute.cs
- PathNode.cs
- SafeLocalAllocation.cs
- ExclusiveHandleList.cs
- Material.cs
- CodeTypeMember.cs
- MultiView.cs
- InteropDesigner.xaml.cs
- DataGridItemEventArgs.cs
- EmbossBitmapEffect.cs
- MailSettingsSection.cs
- WindowsFormsHelpers.cs
- DataComponentNameHandler.cs
- WebZone.cs
- XamlWriter.cs
- CellParagraph.cs
- UnknownBitmapDecoder.cs
- SendActivityDesignerTheme.cs
- TemplateModeChangedEventArgs.cs
- EditorZone.cs
- TableLayoutStyle.cs
- AsyncResult.cs
- MissingMemberException.cs
- EventHandlers.cs
- CheckPair.cs
- InputScope.cs
- TextSelectionHelper.cs
- BindingBase.cs
- ProcessHostConfigUtils.cs
- PersonalizationDictionary.cs
- IPipelineRuntime.cs
- GrammarBuilderBase.cs
- ApplicationDirectoryMembershipCondition.cs
- TextDecorationCollection.cs
- SQLByteStorage.cs
- Repeater.cs
- IgnoreDataMemberAttribute.cs
- versioninfo.cs
- FormClosingEvent.cs
- LiteralControl.cs
- AutomationPropertyInfo.cs
- GridViewDeleteEventArgs.cs
- _NativeSSPI.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- EntityDataSourceValidationException.cs
- CodeGenerator.cs
- MouseActionValueSerializer.cs
- DataRecordInfo.cs
- ToolboxItemSnapLineBehavior.cs
- CodeThrowExceptionStatement.cs
- DashStyle.cs
- MetadataPropertyvalue.cs
- StringUtil.cs
- LZCodec.cs
- SingleAnimationBase.cs
- WebEvents.cs
- DelegatedStream.cs
- HtmlHead.cs
- X509WindowsSecurityToken.cs
- LogManagementAsyncResult.cs
- bidPrivateBase.cs
- MouseGestureConverter.cs
- Vector3DAnimationBase.cs
- RequiredFieldValidator.cs
- ItemType.cs
- AnimatedTypeHelpers.cs
- XmlArrayItemAttributes.cs
- QuestionEventArgs.cs
- HttpCachePolicyElement.cs
- SingleAnimationBase.cs
- DeploymentSectionCache.cs
- VisualStateManager.cs
- MemoryMappedViewStream.cs
- DataGridViewTextBoxColumn.cs
- PersonalizationAdministration.cs
- InvalidCastException.cs
- ManipulationInertiaStartingEventArgs.cs
- BaseTemplateParser.cs
- FileDialog_Vista.cs
- DataSourceGroupCollection.cs
- BufferedStream.cs
- FtpWebRequest.cs
- XmlSchemaProviderAttribute.cs
- InheritanceContextChangedEventManager.cs
- TableCellCollection.cs
- FlatButtonAppearance.cs
- EntityDataSourceWrapper.cs
- SqlReferenceCollection.cs
- PathNode.cs
- Metafile.cs
- DictionaryTraceRecord.cs
- XmlBaseWriter.cs
- RegistrationServices.cs
- sqlcontext.cs
- PropertyDescriptors.cs
- HttpClientProtocol.cs
- SerTrace.cs