001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006package org.anarres.qemu.exec.recipe;
007
008import javax.annotation.Nonnull;
009import org.anarres.qemu.exec.QEmuDisplayOption;
010import org.anarres.qemu.exec.VncDisplay;
011import org.anarres.qemu.exec.util.QEmuOptionsList;
012import org.anarres.qemu.exec.vm.device.QEmuVgaDevice;
013
014/**
015 *
016 * @author shevek
017 */
018@Deprecated // Too specialized to be really useful.
019public class QEmuDisplayRecipe extends QEmuOptionsList implements QEmuRecipe {
020
021    public final QEmuDisplayOption displayOption;
022    public final QEmuVgaDevice.CirrusPci vgaOption;
023
024    public QEmuDisplayRecipe(@Nonnull VncDisplay display) {
025        this.displayOption = new QEmuDisplayOption(display);
026        add(displayOption);
027        this.vgaOption = new QEmuVgaDevice.CirrusPci();
028        add(vgaOption);
029    }
030}