Group multiple controls

Name

gic_context : Group multiple controls

Synopsis

#include <ggi/gic_structs.h>

typedef struct gic_context {
      struct gic_context *next;       /* linked list of all available contexts for auto-destroy */
      char name[65];                  /* name of the context */
      gic_controllist *controls;      /* list of controls */
} gic_context;

typedef struct gic_contextlist {
      struct gic_contextlist *next;
      gic_context *context;
} gic_contextlist;

Description

Contexts describe all "Controls" that are applicable in a given state of an application.

next

linked list of all available contexts for auto-destroying

name

name of the context

controls

list of controls

See Also