BViewAA

BViewAA —

Synopsis




struct      BViewAA;
BViewAA*    b_view_aa_new                   (aa_context *aac,
                                             gint rows,
                                             gint columns,
                                             gint channels,
                                             GError **error);
void        b_view_aa_update                (BViewAA *view,
                                             const guchar *frame_data);

Object Hierarchy


  GObject
   +----BViewAA

Description

Details

struct BViewAA

struct BViewAA;


b_view_aa_new ()

BViewAA*    b_view_aa_new                   (aa_context *aac,
                                             gint rows,
                                             gint columns,
                                             gint channels,
                                             GError **error);

Creates a new BViewAA object suitable to display Blinkenlights movies that fit the theme. Most of the information from the theme is ignored, except for the placement of the windows.

aac : the AALIB context
rows :
columns :
channels :
error : location to store the error occuring, or NULL to ignore errors
Returns : a new BViewAA or NULL in case of an error

b_view_aa_update ()

void        b_view_aa_update                (BViewAA *view,
                                             const guchar *frame_data);

Displays a new frame on the view. The view expects frame_data in the range of 0 to 255.

view : a BViewAA object
frame_data : the frame data to display