mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-23 17:34:21 +03:00
cd07d6af34
Change addhardware to show an editable model entry, like the details wizard
53 lines
1.1 KiB
Python
53 lines
1.1 KiB
Python
#
|
|
# Copyright 2008-2009, 2013-2014 Red Hat, Inc.
|
|
# Cole Robinson <crobinso@redhat.com>
|
|
#
|
|
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
from .device import Device
|
|
from ..xmlbuilder import XMLBuilder, XMLProperty, XMLChildProperty
|
|
|
|
|
|
class _Codec(XMLBuilder):
|
|
"""
|
|
Class for generating <sound> child <codec> XML
|
|
"""
|
|
XML_NAME = "codec"
|
|
|
|
type = XMLProperty("./@type")
|
|
|
|
|
|
class DeviceSound(Device):
|
|
XML_NAME = "sound"
|
|
|
|
@staticmethod
|
|
def get_recommended_models(_guest):
|
|
return ["ich6", "ich9", "ac97"]
|
|
|
|
@staticmethod
|
|
def pretty_model(model):
|
|
ret = model.upper()
|
|
if model in ["ich6", "ich9"]:
|
|
ret = "HDA (%s)" % model.upper()
|
|
return ret
|
|
|
|
|
|
model = XMLProperty("./@model")
|
|
codecs = XMLChildProperty(_Codec)
|
|
|
|
|
|
##################
|
|
# Default config #
|
|
##################
|
|
|
|
@staticmethod
|
|
def default_model(guest):
|
|
if guest.os.is_q35():
|
|
return "ich9"
|
|
return "ich6"
|
|
|
|
def set_defaults(self, guest):
|
|
if not self.model:
|
|
self.model = self.default_model(guest)
|