2013-03-18 01:06:52 +04:00
#
# Copyright 2009 Red Hat, Inc.
# Cole Robinson <crobinso@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA.
2013-08-09 04:47:17 +04:00
from virtinst import VirtualDevice
2013-07-14 02:56:09 +04:00
from virtinst . xmlbuilder import XMLProperty
2013-03-18 01:06:52 +04:00
2013-04-13 22:34:52 +04:00
2013-04-11 03:48:07 +04:00
class VirtualInputDevice ( VirtualDevice ) :
2013-07-16 17:14:37 +04:00
virtual_device_type = VirtualDevice . VIRTUAL_DEV_INPUT
2013-03-18 01:06:52 +04:00
2013-07-16 00:55:49 +04:00
TYPE_MOUSE = " mouse "
TYPE_TABLET = " tablet "
TYPE_DEFAULT = " default "
TYPES = [ TYPE_MOUSE , TYPE_TABLET , TYPE_DEFAULT ]
BUS_PS2 = " ps2 "
BUS_USB = " usb "
BUS_XEN = " xen "
BUS_DEFAULT = " default "
BUSES = [ BUS_PS2 , BUS_USB , BUS_XEN , BUS_DEFAULT ]
type = XMLProperty ( xpath = " ./@type " ,
default_cb = lambda s : s . TYPE_MOUSE ,
default_name = TYPE_DEFAULT )
bus = XMLProperty ( xpath = " ./@bus " ,
default_cb = lambda s : s . BUS_XEN ,
default_name = BUS_DEFAULT )
2013-07-24 16:46:55 +04:00
VirtualInputDevice . register_type ( )