OSDN Git Service

DTXMania089リリースに際してのtag付け。
[dtxmania/dtxmania.git] / 110401(DTXMania089) / SlimDXc_Jun2010(VC++2008) / source / design / Half3Converter.h
1 /*\r
2 * Copyright (c) 2007-2010 SlimDX Group\r
3\r
4 * Permission is hereby granted, free of charge, to any person obtaining a copy\r
5 * of this software and associated documentation files (the "Software"), to deal\r
6 * in the Software without restriction, including without limitation the rights\r
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
8 * copies of the Software, and to permit persons to whom the Software is\r
9 * furnished to do so, subject to the following conditions:\r
10\r
11 * The above copyright notice and this permission notice shall be included in\r
12 * all copies or substantial portions of the Software.\r
13\r
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
20 * THE SOFTWARE.\r
21 */\r
22 #pragma once\r
23 \r
24 using namespace System::ComponentModel;\r
25 \r
26 namespace SlimDX\r
27 {\r
28         value class Half3;\r
29 \r
30         namespace Design\r
31         {\r
32                 /// <summary>\r
33                 /// Provides a type converter to convert <see cref="Half3"/> objects to and from various \r
34                 /// other representations.\r
35                 /// </summary>\r
36                 public ref class Half3Converter : System::ComponentModel::ExpandableObjectConverter\r
37                 {\r
38                 private:\r
39                         System::ComponentModel::PropertyDescriptorCollection^ m_Properties;\r
40 \r
41                 public:\r
42                         /// <summary>\r
43                         /// Initializes a new instance of the <see cref="Half3Converter"/> class.\r
44                         /// </summary>\r
45                         Half3Converter();\r
46 \r
47                         /// <summary>\r
48                         /// Returns whether this converter can convert the object to the specified type, using the specified context.\r
49                         /// </summary>\r
50                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
51                         /// <param name="destinationType">A <see cref="System::Type"/> that represents the type you want to convert to.</param>\r
52                         /// <returns><c>true</c> if this converter can perform the conversion; otherwise, <c>false</c>.</returns>\r
53                         virtual bool CanConvertTo(System::ComponentModel::ITypeDescriptorContext^ context, \r
54                                 System::Type^ destinationType) override;\r
55 \r
56                         /// <summary>\r
57                         /// Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.\r
58                         /// </summary>\r
59                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
60                         /// <param name="sourceType">A System.Type that represents the type you want to convert from.</param>\r
61                         /// <returns><c>true</c> if this converter can perform the conversion; otherwise, <c>false</c>.</returns>\r
62                         virtual bool CanConvertFrom(System::ComponentModel::ITypeDescriptorContext^ context, \r
63                                 System::Type^ sourceType) override;\r
64 \r
65                         /// <summary>\r
66                         /// Converts the given value object to the specified type, using the specified context and culture information.\r
67                         /// </summary>\r
68                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
69                         /// <param name="culture">A <see cref="System::Globalization::CultureInfo"/>. If <c>null</c> is passed, the current culture is assumed.</param>\r
70                         /// <param name="value">The <see cref="System::Object"/> to convert.</param>\r
71                         /// <param name="destinationType">A <see cref="System::Type"/> that represents the type you want to convert to.</param>\r
72                         /// <returns>An <see cref="System::Object"/> that represents the converted value.</returns>\r
73                         virtual System::Object^ ConvertTo(System::ComponentModel::ITypeDescriptorContext^ context, \r
74                                 System::Globalization::CultureInfo^ culture, System::Object^ value, System::Type^ destinationType) override;\r
75 \r
76                         /// <summary>\r
77                         /// Converts the given object to the type of this converter, using the specified context and culture information.\r
78                         /// </summary>\r
79                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
80                         /// <param name="culture">A <see cref="System::Globalization::CultureInfo"/>. If <c>null</c> is passed, the current culture is assumed.</param>\r
81                         /// <param name="value">The <see cref="System::Object"/> to convert.</param>\r
82                         /// <returns>An <see cref="System::Object"/> that represents the converted value.</returns>\r
83                         virtual System::Object^ ConvertFrom(System::ComponentModel::ITypeDescriptorContext^ context, \r
84                                 System::Globalization::CultureInfo^ culture, System::Object^ value) override;\r
85 \r
86                         /// <summary>\r
87                         /// Returns whether changing a value on this object requires a call to <c>System::ComponentModel::TypeConverter::CreateInstance(System::Collections::IDictionary^)</c>\r
88                         /// to create a new value, using the specified context.\r
89                         /// </summary>\r
90                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
91                         /// <returns><c>false</c> if changing a property on this object requires a call to <c>System.ComponentModel::TypeConverter::CreateInstance(System::Collections::IDictionary^)</c> to create a new value; otherwise, <c>false</c>.</returns>\r
92                         virtual bool GetCreateInstanceSupported(System::ComponentModel::ITypeDescriptorContext^ context) override;\r
93                 \r
94                         /// <summary>\r
95                         /// Creates an instance of the type that this <see cref="System::ComponentModel::TypeConverter"/> is associated with, using the specified context, given a set of property values for the object.\r
96                         /// </summary>\r
97                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
98                         /// <param name="propertyValues">An <see cref="System::Collections::IDictionary"/> of new property values.</param>\r
99                         /// <returns>An <see cref="System::Object"/> representing the given <see cref="System::Collections::IDictionary"/>, or <c>null</c> if the object cannot be created.</returns>\r
100                         virtual System::Object^ CreateInstance(System::ComponentModel::ITypeDescriptorContext^ context, \r
101                                 System::Collections::IDictionary^ propertyValues) override;\r
102 \r
103                         /// <summary>\r
104                         /// Returns whether this object supports properties, using the specified context.\r
105                         /// </summary>\r
106                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
107                         /// <returns><c>true</c> if GetProperties should be called to find the properties of this object; otherwise, <c>false</c>.</returns>\r
108                         virtual bool GetPropertiesSupported(System::ComponentModel::ITypeDescriptorContext^ context) override;\r
109 \r
110                         /// <summary>\r
111                         /// Creates an instance of the type that this <see cref="System::ComponentModel::TypeConverter"/> is associated with, using the specified context, given a set of property values for the object.\r
112                         /// </summary>\r
113                         /// <param name="context">A <see cref="System::ComponentModel::ITypeDescriptorContext"/> that provides a format context.</param>\r
114                         /// <param name="value">An <see cref="System::Object"/> that specifies the type of array for which to get properties. </param>\r
115                         /// <param name="attributes">An array of type <see cref="System::Attribute"/> that is used as a filter.</param>\r
116                         /// <returns>A <see cref="System::ComponentModel::PropertyDescriptorCollection"/> with the properties that are exposed for this data type, or a null reference (<c>Nothing</c> in Visual Basic) if there are no properties.</returns>\r
117                         virtual System::ComponentModel::PropertyDescriptorCollection^ GetProperties(System::ComponentModel::ITypeDescriptorContext^ context,\r
118                                 System::Object^ value, array<System::Attribute^>^ attributes ) override;\r
119                 };\r
120         }\r
121 }