| Criawips Reference Manual |
|---|
CriaSlideShow —
struct CriaSlideShow; struct CriaSlideShowClass; struct CriaSlideShowPrivate; CriaPresentation* cria_slide_show_get_presentation (CriaSlideShow *self); guint cria_slide_show_get_slide (CriaSlideShow *self); GtkWidget* cria_slide_show_new (CriaPresentation *presentation); void cria_slide_show_set_presentation (CriaSlideShow *self, CriaPresentation *presentation); void cria_slide_show_set_slide (CriaSlideShow *self, guint slide);
struct CriaSlideShow {
GtkWindow base_instance;
CriaPresentation * presentation;
guint slide;
CriaSlideShowPrivate * priv;
};
struct CriaSlideShowClass {
GtkWindowClass base_class;
/* signals */
void (*signal) (CriaSlideShow * template,
const gchar * string);
};
CriaPresentation* cria_slide_show_get_presentation (CriaSlideShow *self);
| self : | |
| Returns : |
GtkWidget* cria_slide_show_new (CriaPresentation *presentation);
| presentation : | |
| Returns : |
void cria_slide_show_set_presentation
(CriaSlideShow *self,
CriaPresentation *presentation);
| self : | |
| presentation : |
void cria_slide_show_set_slide (CriaSlideShow *self, guint slide);
| self : | |
| slide : |
| << CriaIPresentationView | Application Classes >> |