X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2Fxinput%2FKeyStroke.h;fp=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2Fxinput%2FKeyStroke.h;h=0000000000000000000000000000000000000000;hb=d3453b257c2faf4db202d38666a872929ff220cd;hp=175742e7ad680672057adab1bc5b40618952dfe6;hpb=1c2eac207d4963c6bc170b3f7fbe0feeffcd17e0;p=dtxmania%2Fdtxmania.git diff --git a/SlimDXc_Jun2010(VC++2008)/source/xinput/KeyStroke.h b/SlimDXc_Jun2010(VC++2008)/source/xinput/KeyStroke.h deleted file mode 100644 index 175742e7..00000000 --- a/SlimDXc_Jun2010(VC++2008)/source/xinput/KeyStroke.h +++ /dev/null @@ -1,124 +0,0 @@ -/* -* Copyright (c) 2007-2010 SlimDX Group -* -* 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. -*/ -#pragma once - -#include "Enums.h" - -namespace SlimDX -{ - namespace XInput - { - /// - /// Describes keystroke data from a device. - /// - /// XINPUT_KEYSTROKE - public value class Keystroke : System::IEquatable - { - private: - GamepadKeyCode m_VirtualKey; - KeystrokeFlags m_Flags; - XInput::UserIndex m_UserIndex; - int m_HidCode; - - internal: - Keystroke( const XINPUT_KEYSTROKE& native ); - - public: - /// - /// Gets the virtual-key code of the key, button, or stick movement. - /// - property GamepadKeyCode VirtualKey - { - GamepadKeyCode get(); - } - - /// - /// Gets a combination of flags that indicate the keyboard state at the time of the input event. - /// - property KeystrokeFlags Flags - { - KeystrokeFlags get(); - } - - /// - /// Gets the index of the signed-in gamer associated with the device. Can be a value in the range 0E. - /// - property XInput::UserIndex UserIndex - { - XInput::UserIndex get(); - } - - /// - /// Gets the HID code corresponding to the input. If there is no corresponding HID code, this value is zero. - /// - property int HidCode - { - int get(); - } - - /// - /// Tests for equality between two objects. - /// - /// The first value to compare. - /// The second value to compare. - /// true if has the same value as ; otherwise, false. - static bool operator == ( Keystroke left, Keystroke right ); - - /// - /// Tests for inequality between two objects. - /// - /// The first value to compare. - /// The second value to compare. - /// true if has a different value than ; otherwise, false. - static bool operator != ( Keystroke left, Keystroke right ); - - /// - /// Returns the hash code for this instance. - /// - /// A 32-bit signed integer hash code. - virtual int GetHashCode() override; - - /// - /// Returns a value that indicates whether the current instance is equal to a specified object. - /// - /// Object to make the comparison with. - /// true if the current instance is equal to the specified object; false otherwise. - virtual bool Equals( System::Object^ obj ) override; - - /// - /// Returns a value that indicates whether the current instance is equal to the specified object. - /// - /// Object to make the comparison with. - /// true if the current instance is equal to the specified object; false otherwise. - virtual bool Equals( Keystroke other ); - - /// - /// Determines whether the specified object instances are considered equal. - /// - /// The first value to compare. - /// The second value to compare. - /// true if is the same instance as or - /// if both are null references or if value1.Equals(value2) returns true; otherwise, false. - static bool Equals( Keystroke% value1, Keystroke% value2 ); - }; - } -} \ No newline at end of file