// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team // // Permission is hereby granted, free of charge, to any person obtaining a copy of this // software and associated documentation files (the "Software"), to deal in the Software // without restriction, including without limitation the rights to use, copy, modify, merge, // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons // to whom the Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all copies or // substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Documents; using System.Windows.Media; using System.IO; using System.Collections.ObjectModel; using System.Collections.Specialized; using System.Collections; namespace ICSharpCode.XamlDesigner { static class ExtensionMethods { public static IEnumerable Paths(this IDataObject data) { string[] paths = (string[])data.GetData(DataFormats.FileDrop); if (paths != null) { foreach (var path in paths) { yield return path; } } } public static T GetObject(this IDataObject data) { return (T)data.GetData(typeof(T).FullName); } public static Stream ToStream(this string s) { return new MemoryStream(Encoding.UTF8.GetBytes(s)); } public static void AddRange(this ObservableCollection col, IEnumerable items) { foreach (var item in items) { col.Add(item); } } public static void KeepSyncronizedWith(this IList target, ObservableCollection source, Func convert) { target.Clear(); foreach (var item in source) { target.Add(convert(item)); } source.CollectionChanged += delegate(object sender, NotifyCollectionChangedEventArgs e) { switch (e.Action) { case NotifyCollectionChangedAction.Add: target.Add(convert((S)e.NewItems[0])); break; case NotifyCollectionChangedAction.Remove: target.RemoveAt(e.OldStartingIndex); break; case NotifyCollectionChangedAction.Move: target.RemoveAt(e.OldStartingIndex); target.Insert(e.NewStartingIndex, e.NewItems[0]); break; case NotifyCollectionChangedAction.Replace: target[e.NewStartingIndex] = convert((S)e.NewItems[0]); break; case NotifyCollectionChangedAction.Reset: target.Clear(); break; } }; } public static object GetDataContext(this RoutedEventArgs e) { var f = e.OriginalSource as FrameworkElement; if (f != null) return f.DataContext; return null; } } }