GVirSandboxContextGraphical

GVirSandboxContextGraphical — Desktop application sandbox context

Synopsis

#include <libvirt-sandbox/libvirt-sandbox.h>

struct              GVirSandboxContextGraphical;
struct              GVirSandboxContextGraphicalClass;
GVirSandboxGraphics * gvir_sandbox_context_get_graphics (GVirSandboxContext *ctxt);
GVirSandboxContextGraphical * gvir_sandbox_context_graphical_new
                                                        (GVirConnection *connection,
                                                         GVirSandboxConfigGraphical *config);

Object Hierarchy

  GObject
   +----GVirSandboxContext
         +----GVirSandboxContextGraphical

Description

Provides a base class for implementing graphical desktop application sandboxes

The GVirSandboxContextGraphical object extends the functionality provided by GVirSandboxContext to allow the application to display output in a graphical desktop.

Details

struct GVirSandboxContextGraphical

struct GVirSandboxContextGraphical;

struct GVirSandboxContextGraphicalClass

struct GVirSandboxContextGraphicalClass {
    GVirSandboxContextClass parent_class;
};

gvir_sandbox_context_get_graphics ()

GVirSandboxGraphics * gvir_sandbox_context_get_graphics (GVirSandboxContext *ctxt);

gvir_sandbox_context_graphical_new ()

GVirSandboxContextGraphical * gvir_sandbox_context_graphical_new
                                                        (GVirConnection *connection,
                                                         GVirSandboxConfigGraphical *config);

Create a new graphical application sandbox context

connection :

the libvirt connection. [transfer none]

config :

the initial configuratoion. [transfer none]

Returns :

a new graphical sandbox context object. [transfer full]

See Also

GVirSandboxContext