ObjectivelyMVC
Object oriented MVC framework for SDL3 and GNU C
Loading...
Searching...
No Matches
SlideShowView.h File Reference

SlideShowView cycles through a collection of Images with crossfade transitions. More...

Go to the source code of this file.

Data Structures

struct  SlideShowView
 SlideShowView cycles through a collection of Images with crossfade transitions. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _SlideShowView (void)
 

Detailed Description

SlideShowView cycles through a collection of Images with crossfade transitions.

Definition in file SlideShowView.h.

Function Documentation

◆ _SlideShowView()

OBJECTIVELYMVC_EXPORT Class * _SlideShowView ( void  )

Definition at line 162 of file SlideShowView.c.

162 {
163 static Class *clazz;
164 static Once once;
165
166 do_once(&once, {
167 clazz = _initialize(&(const ClassDef) {
168 .name = "SlideShowView",
169 .superclass = _View(),
170 .instanceSize = sizeof(SlideShowView),
171 .interfaceOffset = offsetof(SlideShowView, interface),
172 .interfaceSize = sizeof(SlideShowViewInterface),
174 });
175 });
176
177 return clazz;
178}
static void initialize(Class *clazz)
Class * _View(void)
Definition View.c:2067
SlideShowView cycles through a collection of Images with crossfade transitions.