2013-03-18 01:06:52 +04:00
#
2013-10-28 00:59:46 +04:00
# Copyright 2009, 2013 Red Hat, Inc.
2013-03-18 01:06:52 +04:00
# 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
2013-10-28 00:59:47 +04:00
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
2013-03-18 01:06:52 +04:00
#
# 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.
2014-09-12 23:59:22 +04:00
from . device import VirtualDevice
from . 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 "
2015-04-09 20:22:40 +03:00
TYPE_KEYBOARD = " keyboard "
2013-07-16 00:55:49 +04:00
TYPE_DEFAULT = " default "
2015-04-09 20:22:40 +03:00
TYPES = [ TYPE_MOUSE , TYPE_TABLET , TYPE_KEYBOARD , TYPE_DEFAULT ]
2013-07-16 00:55:49 +04:00
BUS_PS2 = " ps2 "
BUS_USB = " usb "
BUS_XEN = " xen "
BUS_DEFAULT = " default "
BUSES = [ BUS_PS2 , BUS_USB , BUS_XEN , BUS_DEFAULT ]
2013-09-19 21:27:30 +04:00
type = XMLProperty ( " ./@type " ,
2013-07-16 00:55:49 +04:00
default_cb = lambda s : s . TYPE_MOUSE ,
default_name = TYPE_DEFAULT )
2015-11-22 04:26:50 +03:00
def _default_bus ( self ) :
if self . type == self . TYPE_TABLET :
return self . BUS_USB
if self . conn . is_xen ( ) :
return self . BUS_XEN
return self . BUS_PS2
2013-09-19 21:27:30 +04:00
bus = XMLProperty ( " ./@bus " ,
2015-11-22 04:26:50 +03:00
default_cb = _default_bus ,
2013-07-16 00:55:49 +04:00
default_name = BUS_DEFAULT )
2013-07-24 16:46:55 +04:00
VirtualInputDevice . register_type ( )