aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Rendering/VisualLinesInvalidException.cs
blob: bfbae27b0eae041f453eeb59d0bd6600069e9cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)

using System;
using System.Runtime.Serialization;

namespace Tango.Scripting.Editors.Rendering
{
	/// <summary>
	/// A VisualLinesInvalidException indicates that you accessed the <see cref="TextView.VisualLines"/> property
	/// of the <see cref="TextView"/> while the visual lines were invalid.
	/// </summary>
	[Serializable]
	public class VisualLinesInvalidException  : Exception
	{
		/// <summary>
		/// Creates a new VisualLinesInvalidException instance.
		/// </summary>
		public VisualLinesInvalidException() : base()
		{
		}
		
		/// <summary>
		/// Creates a new VisualLinesInvalidException instance.
		/// </summary>
		public VisualLinesInvalidException(string message) : base(message)
		{
		}
		
		/// <summary>
		/// Creates a new VisualLinesInvalidException instance.
		/// </summary>
		public VisualLinesInvalidException(string message, Exception innerException) : base(message, innerException)
		{
		}
		
		/// <summary>
		/// Creates a new VisualLinesInvalidException instance.
		/// </summary>
		protected VisualLinesInvalidException(SerializationInfo info, StreamingContext context) : base(info, context)
		{
		}
	}
}
#fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{8491D07B-C1F6-4B62-A412-41B9FD2D6538}</ProjectGuid>
    <OutputType>library</OutputType>
    <RootNamespace>Tango.SharedUI</RootNamespace>
    <AssemblyName>Tango.SharedUI</AssemblyName>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
    <WarningLevel>4</WarningLevel>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\Build\Core\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\Build\Core\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
    </Reference>
    <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
    </Reference>
    <Reference Include="FontAwesome.WPF, Version=4.7.0.37774, Culture=neutral, PublicKeyToken=0758b07a11a4f466, processorArchitecture=MSIL">
      <HintPath>..\packages\FontAwesome.WPF.4.7.0.9\lib\net40\FontAwesome.WPF.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.ComponentModel.DataAnnotations" />
    <Reference Include="System.Data" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="System.Net.Http" />
    <Reference Include="System.Xaml">
      <RequiredTargetFramework>4.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="WindowsBase" />
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="WindowsFormsIntegration" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\Versioning\GlobalVersionInfo.cs">
      <Link>GlobalVersionInfo.cs</Link>
    </Compile>
    <Compile Include="Components\SelectedObject.cs" />
    <Compile Include="Components\SelectedObjectCollection.cs" />
    <Compile Include="Components\TextController.cs" />
    <Compile Include="Controls\AdornerContentPresenter.cs" />
    <Compile Include="Controls\DoubleClickDataGrid.cs" />
    <Compile Include="Controls\FastTextBlock.cs" />
    <Compile Include="Controls\HexagonControl.cs" />
    <Compile Include="Controls\HiveControl.xaml.cs">
      <DependentUpon>HiveControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Controls\MultiSelectDataGrid.cs" />
    <Compile Include="Controls\MultiSelectListBox.cs" />
    <Compile Include="Controls\MultiTransitionControl.xaml.cs">
      <DependentUpon>MultiTransitionControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Controls\NavigationControl.cs" />
    <Compile Include="Controls\ScriptEditorControl.xaml.cs">
      <DependentUpon>ScriptEditorControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Controls\SpannedUniformGrid.cs" />
    <Compile Include="Controls\TableGrid.cs" />
    <Compile Include="Controls\TransitionTypeEnum.cs" />
    <Compile Include="Controls\View.cs" />
    <Compile Include="Converters\BooleanInverseConverter.cs" />
    <Compile Include="Converters\BooleanToVisibilityConverter.cs" />
    <Compile Include="Converters\BooleanToVisibilityInverseConverter.cs" />
    <Compile Include="Converters\BooleanToYesNoConverter.cs" />
    <Compile Include="Converters\ByteArrayToFileSizeConverter.cs" />
    <Compile Include="Converters\ColorComponentToOpacityConverter.cs" />
    <Compile Include="Converters\ColorToComponentsConverter.cs" />
    <Compile Include="Converters\ColorToIntegerConverter.cs" />
    <Compile Include="Converters\DateTimeUTCToShortDateConverter.cs" />
    <Compile Include="Converters\DateTimeUTCToShortDateTimeConverter.cs" />
    <Compile Include="Converters\DateTimeUTCToStringConverter.cs" />
    <Compile Include="Converters\DisplayMemberPathConverter.cs" />
    <Compile Include="Converters\DoubleToIntConverter.cs" />
    <Compile Include="Converters\EnumToBooleanConverter.cs" />
    <Compile Include="Converters\EnumToDescriptionConverter.cs" />
    <Compile Include="Converters\EnumToItemsSourceConverter.cs" />
    <Compile Include="Converters\EnumToVisibilityConverter.cs" />
    <Compile Include="Converters\EnumToXamlVectorConverter.cs" />
    <Compile Include="Converters\IsEqualConverter.cs" />
    <Compile Include="Converters\IsNotConverter.cs" />
    <Compile Include="Converters\IsNullToVisibilityConverter.cs" />
    <Compile Include="Converters\IsSegmentGradientConverter.cs" />
    <Compile Include="Converters\IsSegmentGradientToVisibilityConverter.cs" />
    <Compile Include="Converters\LastItemInContainerToBooleanConverter.cs" />
    <Compile Include="Converters\MathOperatorConverter.cs" />
    <Compile Include="Converters\NumberToFileSizeConverter.cs" />
    <Compile Include="Converters\ObjectToObjectTypeConverter.cs" />
    <Compile Include="Converters\OneToPercentConverter.cs" />
    <Compile Include="Converters\SegmentLengthToWidthConverter.cs" />
    <Compile Include="Converters\SegmentToBrushConverter.cs" />
    <Compile Include="Converters\SegmentToBrushConverterMulti.cs" />
    <Compile Include="Converters\SmallerThanToBooleanConverter.cs" />
    <Compile Include="Converters\GreaterThanToBooleanConverter.cs" />
    <Compile Include="Converters\IsEnumConverter.cs" />
    <Compile Include="Converters\IsNullConverter.cs" />
    <Compile Include="Converters\NullObjectToBooleanConverter.cs" />
    <Compile Include="Converters\ParameterItemEditorTypeToEditorConverter.cs" />
    <Compile Include="Converters\PathToShortPathConverter.cs" />
    <Compile Include="Converters\StringEllipsisConverter.cs" />
    <Compile Include="Converters\StringFormatConverter.cs" />
    <Compile Include="Converters\StringNullOrEmptyToBooleanConverter.cs" />
    <Compile Include="Converters\StringToLinesConverter.cs" />
    <Compile Include="Converters\StringToWordsConverter.cs" />
    <Compile Include="Converters\TimeSpanToTwoDigitsTimeConverter.cs" />
    <Compile Include="Converters\VersionToShortVersionConverter.cs" />
    <Compile Include="Converters\WidthHeightToRectConverter.cs" />
    <Compile Include="DialogViewVM.cs" />
    <Compile Include="Editors\IParameterItemEditor.cs" />
    <Compile Include="Editors\ParameterItemEditor.cs" />
    <Compile Include="Editors\ParameterItemNumericUpDownEditor.xaml.cs">
      <DependentUpon>ParameterItemNumericUpDownEditor.xaml</DependentUpon>
    </Compile>
    <Compile Include="Editors\ParameterizedEditor.xaml.cs">
      <DependentUpon>ParameterizedEditor.xaml</DependentUpon>
    </Compile>
    <Compile Include="Effects\DisplaySettingEffect.cs" />
    <Compile Include="ExtensionMethods\FrameworkElementExtensions.cs" />
    <Compile Include="Helpers\PasswordHelper.cs" />
    <Compile Include="Helpers\ResourceHelper.cs" />
    <Compile Include="Helpers\UIHelper.cs" />
    <Compile Include="IView.cs" />
    <Compile Include="Properties\AssemblyInfo.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
    <Compile Include="Properties\Settings.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
    </Compile>
    <Compile Include="Rendering\RenderWindow.xaml.cs">
      <DependentUpon>RenderWindow.xaml</DependentUpon>
    </Compile>
    <Compile Include="Shapes\Arc.cs" />
    <Compile Include="Shapes\Hexagon.cs" />
    <Compile Include="Converters\TimeSpanToLabelConverter.cs" />
    <Compile Include="ViewModel.cs" />
    <EmbeddedResource Include="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <EmbeddedResource Include="CSharp-Mode.xshd" />
    <None Include="app.config" />
    <Resource Include="Effects\displaysettingeffect.ps" />
    <None Include="packages.config" />
    <None Include="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
  </ItemGroup>
  <ItemGroup>
    <Page Include="Controls\HiveControl.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Controls\MultiTransitionControl.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Controls\ScriptEditorControl.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Editors\ParameterItemNumericUpDownEditor.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Editors\ParameterizedEditor.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Rendering\RenderWindow.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\pubclass.gif" />
    <Resource Include="Images\pubevent.gif" />
    <Resource Include="Images\pubmethod.gif" />
    <Resource Include="Images\pubproperty.gif" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\SideChains\ICSharpCode.AvalonEdit\ICSharpCode.AvalonEdit.csproj">
      <Project>{6c55b776-26d4-4db3-a6ab-87e783b2f3d1}</Project>
      <Name>ICSharpCode.AvalonEdit</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tango.BL\Tango.BL.csproj">
      <Project>{f441feee-322a-4943-b566-110e12fd3b72}</Project>
      <Name>Tango.BL</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tango.Core\Tango.Core.csproj">
      <Project>{a34ee0f0-649d-41c8-8489-b6f1cc6924ee}</Project>
      <Name>Tango.Core</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tango.DragAndDrop\Tango.DragAndDrop.csproj">
      <Project>{b112d89a-a106-41ae-a0c1-4abc84c477f5}</Project>
      <Name>Tango.DragAndDrop</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tango.Scripting\Tango.Scripting.csproj">
      <Project>{401989E7-AE1E-4002-B0EE-9A9F63740B97}</Project>
      <Name>Tango.Scripting</Name>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <ProjectExtensions>
    <VisualStudio>
      <UserProperties BuildVersion_StartDate="2000/1/1" BuildVersion_UseGlobalSettings="False" BuildVersion_BuildVersioningStyle="None.None.Increment.TimeStamp" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_AssemblyInfoFilename="Properties\AssemblyInfo.cs" />
    </VisualStudio>
  </ProjectExtensions>
</Project>