From 19538fbb905817793415b08ce15aea3894a75eb9 Mon Sep 17 00:00:00 2001 From: Iain McCoy Date: Mon, 22 Aug 2005 16:23:29 +0000 Subject: 2005-08-23 Iain McCoy * demo/runtimetest.cs: consume the new ObjectWriter interface * xamlc.cs: consume the new CodeWriter interface * System.Windows.Serialization/XamlParser.cs: rearrange class so that it presents a ReadNextNode() method, repeated calling of which will produce the next node with information about the Xaml file being parsed * Test/XamlParser.cs: rewrite tests so that they use the new interface of the parser * System.Windows.Serialization/CodeWriter.cs: changed code generator so that it consumes the event stream from the parser * Test/CodeWriter.cs: made tests friendly to the new way CodeWriter works * System.Windows.Serialization/CodeWriter.cs: changed object builder so that it consumes the event stream from the parser * Test/ObjectWriter.cs: made tests friendly to the new way ObjectWriter works 2005-08-07 Iain McCoy * System.Windows.Serialization/data-classes-builder.pl, System.Windows.Serialization/data-classes.txt: add stuff to generate the zillion little classes to carry information around * PresentationFramework.dll.sources, Makefile: invoke data-classes-builder.pl as needed. svn path=/trunk/mcs/; revision=48670 --- .../WindowsBase/System.Windows/RoutedEvent.cs | 32 ++++++++++++++++++++++ mcs/class/WindowsBase/WindowsBase.dll.sources | 1 + mcs/class/WindowsBase/WindowsBase_test.dll.sources | 1 + 3 files changed, 34 insertions(+) create mode 100644 mcs/class/WindowsBase/System.Windows/RoutedEvent.cs (limited to 'mcs/class/WindowsBase') diff --git a/mcs/class/WindowsBase/System.Windows/RoutedEvent.cs b/mcs/class/WindowsBase/System.Windows/RoutedEvent.cs new file mode 100644 index 00000000000..b1b0a0039ac --- /dev/null +++ b/mcs/class/WindowsBase/System.Windows/RoutedEvent.cs @@ -0,0 +1,32 @@ +// +// RoutedEvent.cs +// +// Author: +// Iain McCoy (iain@mccoy.id.au) +// +// (C) 2005 Iain McCoy +// +// 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. +// + +namespace System.Windows { + public sealed class RoutedEvent { + } +} diff --git a/mcs/class/WindowsBase/WindowsBase.dll.sources b/mcs/class/WindowsBase/WindowsBase.dll.sources index a18874ab0dd..e111f544749 100644 --- a/mcs/class/WindowsBase/WindowsBase.dll.sources +++ b/mcs/class/WindowsBase/WindowsBase.dll.sources @@ -6,6 +6,7 @@ System.Windows/DependencyPropertyKey.cs System.Windows/LocalValueEntry.cs System.Windows/LocalValueEnumerator.cs System.Windows/PropertyMetadata.cs +System.Windows/RoutedEvent.cs ../../build/common/MonoTODOAttribute.cs Assembly/AssemblyInfo.cs ../../build/common/Consts.cs diff --git a/mcs/class/WindowsBase/WindowsBase_test.dll.sources b/mcs/class/WindowsBase/WindowsBase_test.dll.sources index 9cb90abe702..8fd5361bd1b 100644 --- a/mcs/class/WindowsBase/WindowsBase_test.dll.sources +++ b/mcs/class/WindowsBase/WindowsBase_test.dll.sources @@ -1 +1,2 @@ AttachedProperties.cs +LocalValueEntry.cs -- cgit v1.2.3