GtkSDL

GtkSDL

Synopsis




                    GtkSDL;
GtkWidget*          gtk_sdl_new                         (gint width,
                                                         gint height,
                                                         gint bpp,
                                                         Uint32 flags);
void                gtk_sdl_size                        (GtkSDL *sdl,
                                                         gint width,
                                                         gint height);
void                gtk_sdl_display_update              (GtkSDL *sdl);

Object Hierarchy


  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkSDL

Implemented Interfaces

GtkSDL implements AtkImplementorIface.

Description

Details

GtkSDL

typedef struct {
  SDL_Surface *surface;
  gint width;
  gint height;
  gint bpp;
  Uint16 flags;
} GtkSDL;


gtk_sdl_new ()

GtkWidget*          gtk_sdl_new                         (gint width,
                                                         gint height,
                                                         gint bpp,
                                                         Uint32 flags);

width :
height :
bpp :
flags :
Returns :

gtk_sdl_size ()

void                gtk_sdl_size                        (GtkSDL *sdl,
                                                         gint width,
                                                         gint height);

sdl :
width :
height :

gtk_sdl_display_update ()

void                gtk_sdl_display_update              (GtkSDL *sdl);

sdl :