cim_pointingdevice.mof

来自「Pegasus is an open-source implementation」· MOF 代码 · 共 44 行

MOF
44
字号
// Copyright (c) 2005 DMTF.  All rights reserved.// <change cr="ArchCR00066.004" type="add">Add UmlPackagePath// qualifier values to CIM Schema.</change>// ==================================================================//  CIM_PointingDevice// ==================================================================   [UMLPackagePath ( "CIM::Device::UserDevices" ), Version ( "2.7.0" ),     Description (       "PointingDevice represents those Devices used to 'point' to "       "regions of a Display.")]class CIM_PointingDevice : CIM_UserDevice {      [Description (          "The type of the pointing device."),        ValueMap { "1", "2", "3", "4", "5", "6", "7", "8", "9" },        Values { "Other", "Unknown", "Mouse", "Track Ball",          "Track Point", "Glide Point", "Touch Pad", "Touch Screen",          "Mouse - Optical Sensor" },        MappingStrings { "MIF.DMTF|Pointing Device|003.1" }]   uint16 PointingType;      [Description (          "Number of buttons. If the PointingDevice has no buttons, "          "enter 0."),        MappingStrings { "MIF.DMTF|Pointing Device|003.4" }]   uint8 NumberOfButtons;      [Description (          "Integer indicating whether the PointingDevice is configured "          "for right (value=2) or left handed operation (value=3). "          "Also, the values, \"Unknown\" (0) and \"Not Applicable\" "          "(1), can be defined."),        ValueMap { "0", "1", "2", "3" },        Values { "Unknown", "Not Applicable", "Right Handed Operation",          "Left Handed Operation" }]   uint16 Handedness;      [Description (          "Tracking resolution of the PointingDevice in Counts per "          "Inch."),        Units ( "Counts per Inch" )]   uint32 Resolution;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?