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

Hue color picker. More...

Go to the source code of this file.

Data Structures

struct  HueColorPicker
 The HueColorPicker type. More...
 
struct  HueColorPickerDelegate
 The HueColorPicker delegate protocol. More...
 

Functions

OBJECTIVELYMVC_EXPORT Class * _HueColorPicker (void)
 

Detailed Description

Hue color picker.

Definition in file HueColorPicker.h.

Function Documentation

◆ _HueColorPicker()

OBJECTIVELYMVC_EXPORT Class * _HueColorPicker ( void  )

Definition at line 210 of file HueColorPicker.c.

210 {
211 static Class *clazz;
212 static Once once;
213
214 do_once(&once, {
215 clazz = _initialize(&(const ClassDef) {
216 .name = "HueColorPicker",
217 .superclass = _Control(),
218 .instanceSize = sizeof(HueColorPicker),
219 .interfaceOffset = offsetof(HueColorPicker, interface),
220 .interfaceSize = sizeof(HueColorPickerInterface),
222 });
223 });
224
225 return clazz;
226}
Class * _Control(void)
Definition Control.c:391
static void initialize(Class *clazz)
The HueColorPicker type.