2013-03-18 05:06:52 +08:00
|
|
|
#
|
2013-10-28 04:59:46 +08:00
|
|
|
# Copyright 2009, 2013 Red Hat, Inc.
|
2013-03-18 05:06:52 +08: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 04:59:47 +08:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2013-03-18 05:06:52 +08: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-13 03:59:22 +08:00
|
|
|
from .device import VirtualDevice
|
|
|
|
from .xmlbuilder import XMLProperty
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-04-11 07:48:07 +08:00
|
|
|
class VirtualVideoDevice(VirtualDevice):
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-16 21:14:37 +08:00
|
|
|
virtual_device_type = VirtualDevice.VIRTUAL_DEV_VIDEO
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# Default models list
|
|
|
|
MODEL_DEFAULT = "default"
|
2015-05-20 04:44:08 +08:00
|
|
|
MODELS = ["cirrus", "vga", "vmvga", "xen", "qxl"]
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def pretty_model(model):
|
2013-07-15 23:07:40 +08:00
|
|
|
if model in ["qxl", "vmvga", "vga"]:
|
2013-03-18 05:06:52 +08:00
|
|
|
return model.upper()
|
|
|
|
return model.capitalize()
|
|
|
|
|
2014-12-01 22:56:29 +08:00
|
|
|
_XML_PROP_ORDER = ["model", "vram", "heads", "vgamem"]
|
2013-09-20 01:27:30 +08:00
|
|
|
model = XMLProperty("./model/@type",
|
2013-07-15 23:07:40 +08:00
|
|
|
default_cb=lambda s: "cirrus",
|
|
|
|
default_name=MODEL_DEFAULT)
|
2013-09-20 01:27:30 +08:00
|
|
|
vram = XMLProperty("./model/@vram", is_int=True)
|
|
|
|
ram = XMLProperty("./model/@ram", is_int=True)
|
|
|
|
heads = XMLProperty("./model/@heads", is_int=True)
|
2014-12-01 22:56:29 +08:00
|
|
|
vgamem = XMLProperty("./model/@vgamem", is_int=True)
|
2013-07-24 20:46:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
VirtualVideoDevice.register_type()
|