ObjectivelyMVC
Object oriented MVC framework for SDL3 and GNU C
Loading...
Searching...
No Matches
Control Struct Reference

Controls are Views which capture and respond to events. More...

#include <Control.h>

Inheritance diagram for Control:
View Button Checkbox CollectionView HSVColorPicker HueColorPicker Panel RGBColorPicker Select Slider TableView TextView

Public Member Functions

Class * _Control (void)
 The Control archetype.
 
bool captureEvent (Control *self, const SDL_Event *event)
 Captures a given event, potentially altering the state of this Control.
 
Control initWithFrame (Control *self, const SDL_Rect *frame)
 Initializes this Control with the specified frame and style.
 
bool isDisabled (const Control *self)
 
bool isFocused (const Control *self)
 
bool isHighlighted (const Control *self)
 
bool isSelected (const Control *self)
 
void stateDidChange (Control *self)
 Called when the state of this Control changes.
 
- Public Member Functions inherited from View
Class * _View (void)
 The View archetype.
 
bool acceptsKeyResponder (const View *self)
 
bool acceptsTouchResponder (const View *self)
 
void addClassName (View *self, const char *className)
 Adds the given class name to this View.
 
void addSubview (View *self, View *subview)
 Adds a subview to this view, to be drawn above its siblings.
 
void addSubviewRelativeTo (View *self, View *subview, View *other, ViewPosition position)
 Adds a subview to this view, positioned relatively to other.
 
 ancestorWithIdentifier (const View *self, const char *identifier)
 
void applyStyle (View *self, const Style *style)
 Applies the given Style to this View.
 
void applyTheme (View *self, const Theme *theme)
 Applies the given Theme to this View.
 
void applyThemeIfNeeded (View *self, const Theme *theme)
 Recursively applies the Theme to this View and its subviews.
 
void attachStylesheet (View *self, SDL_Window *window)
 Attaches this View's Stylesheet to the Theme associated with the given window.
 
void awakeWithCharacters (View *self, const char *chars)
 Wakes this View with the given null-terminated JSON C string.
 
void awakeWithData (View *self, const Data *data)
 Wakes this View with the specified JSON Data.
 
void awakeWithDictionary (View *, const Dictionary *)
 Wakes this View with the specified Dictionary.
 
void awakeWithResource (View *self, const Resource *resource)
 Wakes this View with the specified Resource.
 
void awakeWithResourceName (View *self, const char *name)
 Wakes this View with the Resource by the specified name.
 
void becomeKeyResponder (View *self)
 Become the key responder in the View hierarchy.
 
void becomeTouchResponder (View *self)
 Become the touch responder in the View hierarchy.
 
bool bind (View *self, const Inlet *inlets, const Dictionary *dictionary)
 Performs data binding for the Inlets described in dictionary.
 
SDL_Rect bounds (const View *self)
 
void bringSubviewToFront (View *self, View *subview)
 Brings the specified subview to the front.
 
void clearWarnings (const View *self, WarningType type)
 Clears this View's Warnings matching the given level.
 
SDL_Rect clippingFrame (const View *self)
 
bool containsPoint (const View *self, const SDL_Point *point)
 
int depth (const View *self)
 
 descendantWithIdentifier (const View *self, const char *identifier)
 
void detachStylesheet (View *self, SDL_Window *window)
 Detaches this View's Stylesheet from the Theme associated with the given window.
 
void didMoveToWindow (View *self, SDL_Window *window)
 Informs this View that it has been added to the View hierachy of the given window.
 
bool didReceiveEvent (const View *self, const SDL_Event *event)
 
void draw (View *self, Renderer *renderer)
 Draws this View.
 
void emitViewEvent (View *self, ViewEvent code, ident data)
 Emits a ViewEvent originating from this View.
 
void enumerate (const View *self, ViewEnumerator enumerator, ident data)
 
void enumerate (View *self, ViewEnumerator enumerator, ident data)
 Enumerates this View and its descendants, applying enumerator to each.
 
void enumerateAdjacent (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates adjacent siblings of this View, applying enumerator to each.
 
void enumerateAncestors (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all ancestors of this View, applying enumerator to each.
 
void enumerateDescendants (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all descendants of this View, applying enumerator to each.
 
void enumerateSelection (View *self, const char *rule, ViewEnumerator enumerator, ident data)
 Enumerates all Views in the selection matched by rule, applying enumerator to each.
 
void enumerateSiblings (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all siblings of this View, applying enumerator to each.
 
void enumerateSubviews (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all subviews of this View, applying enumerator to each.
 
void enumerateSuperview (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates the superview of this View, if any, applying enumerator to it.
 
void enumerateVisible (const View *self, ViewEnumerator enumerator, ident data)
 
void enumerateVisible (View *self, ViewEnumerator enumerator, ident data)
 Enumerates this View and its visible descendants, applying enumerator to each.
 
bool hasClassName (const View *self, cosnt char *className)
 
bool hasOverflow (const View *self)
 
ViewhitTest (const View *self, const SDL_Point *point)
 Performs a hit test against this View and its descendants for the given point.
 
Viewinit (View *self)
 Initializes this View.
 
ViewinitWithFrame (View *self, const SDL_Rect *frame)
 Initializes this View with the specified frame.
 
void invalidateStyle (View *self)
 Invalidates the computed Style for this View and its descendants.
 
bool isContainer (const View *self)
 
bool isDescendantOfView (const View *self, const View *view)
 
bool isKeyResponder (const View *self)
 
bool isTouchResponder (const View *self)
 
bool isVisible (const View *self)
 
void layoutIfNeeded (View *self)
 Recursively updates the layout of this View and its subviews.
 
 layoutSubviews (View *self)
 Performs layout for this View's immediate subviews.
 
bool matchesSelector (const View *self, const SimpleSelector *simpleSelector)
 
void moveToWindow (View *self, SDL_Window *window)
 Moves this View to the View hierarchy of the given window.
 
String * path (const View *self)
 
void removeAllClassNames (View *self)
 Removes all class names from this View.
 
void removeAllSubviews (View *self)
 Removes all subviews from this View.
 
void removeClassName (View *self, const char *className)
 Removes the given class name to this View.
 
void removeFromSuperview (View *self)
 Removes this View from its superview.
 
void removeSubview (View *self, View *subview)
 Removes the given subview from this View.
 
void render (View *self, Renderer *renderer)
 Renders this View using the given renderer.
 
void renderDeviceDidReset (View *self)
 Informs this View that the render device has reset.
 
void renderDeviceWillReset (View *self)
 Informs this View that the render device will reset.
 
SDL_Rect renderFrame (const View *self)
 
void replaceSubview (View *self, View *subview, View *replacement)
 Replaces the specified subview with the given replacement.
 
void resignKeyResponder (View *self)
 Resigns key responder priority.
 
void resignTouchResponder (View *self)
 Resigns touch responder priority.
 
void resize (View *self, const SDL_Size *size)
 Resizes this View to the specified size.
 
void resolve (View *self, Outlet *outlets)
 Resolves the given Outlets from this View's hierarchy.
 
void respondToEvent (View *self, const SDL_Event *event)
 Responds to the specified event.
 
Set * select (View *self, const char *rule)
 Resolves all descendants (including this View) that match the given Selector rule.
 
ViewselectFirst (View *self, const char *rule)
 Resolves the first descendant View that matches the given Selector rule.
 
SDL_Size size (const View *self)
 
SDL_Size sizeThastFills (const View *self)
 
SDL_Size sizeThatContains (const View *self)
 
SDL_Size sizeThatFills (const View *self)
 
void sizeThatFits (const View *self)
 
void sizeToContain (View *self)
 Resizes this View to contain its subviews.
 
void sizeToFill (View *self)
 Resizes this View to fill its superview.
 
void sizeToFit (View *self)
 Resizes this View to fit its subviews.
 
 subviewWithIdentifier (const View *self, const char *identifier)
 
void updateBindings (View *self)
 Updates data bindings, prompting the appropriate layout changes.
 
SDL_Rect viewport (const View *self)
 
ViewviewWithCharacters (const char *chars, Outlet *outlets)
 Instantiates a View initialized with the given null-terminated JSON C string.
 
ViewviewWithData (const Data *data, Outlet *outlets)
 Instantiates a View initialized with the contents of data.
 
ViewviewWithDictionary (const Dictionary *dictionary, Outlet *outlets)
 Instantiates a View initialized with the attributes described in dictionary.
 
ViewviewWithResource (const Resource *resource, Outlet *outlets)
 Instantiates a View initialized with the JSON data in resource.
 
ViewviewWithResourceName (const char *name, Outlet *outlets)
 Instantiates a View initialized with the JSON Resource with the specified name.
 
Array * visibleSubviews (const View *self)
 
void warn (View *self, ViewWarningType type, const char *fmt,...)
 
void warn (View *self, WarningType level, const char *fmt,...)
 Appends a warning for this View.
 
void willMoveToWindow (View *self, SDL_Window *window)
 Informs this View that it will be added to the View hierarchy for the given window.
 

Data Fields

ControlBevel bevel
 The ControlBevel.
 
ControlSelection selection
 The ControlSelection.
 
unsigned int state
 The bit mask of ControlState.
 
View view
 The superclass.
 
- Data Fields inherited from View
ViewAlignment alignment
 The alignment.
 
int autoresizingMask
 The ViewAutoresizing bitmask.
 
SDL_Color backgroundColor
 The background color.
 
SDL_Color borderColor
 The border color.
 
int borderWidth
 The border width.
 
Set * classNames
 The class names.
 
bool clipsSubviews
 If true, subviews will be clipped to this View's frame.
 
StylecomputedStyle
 The computed Style of this View.
 
SDL_Rect frame
 The frame, relative to the superview.
 
bool hidden
 If true, this View is not drawn.
 
char * identifier
 An optional identifier.
 
SDL_Size maxSize
 The maximum size this View may be resized to during layout.
 
SDL_Size minSize
 The minimum size this View may be resized to during layout.
 
bool needsApplyTheme
 If true, this View will apply the Theme before it is drawn.
 
bool needsLayout
 If true, this View will layout its subviews before it is drawn.
 
ViewnextResponder
 The next responder, or event handler, in the chain.
 
Object object
 The superclass.
 
ViewPadding padding
 The padding.
 
Stylestyle
 The element-level Style of this View.
 
Stylesheetstylesheet
 An optional Stylesheet.
 
Array * subviews
 The immediate subviews.
 
Viewsuperview
 The super View.
 
ViewControllerviewController
 The ViewController.
 
Array * warnings
 The Warnings this View generated.
 
SDL_Window * window
 The window.
 

Protected Attributes

ControlInterface * interface
 The interface.
 
- Protected Attributes inherited from View
ViewInterface * interface
 The interface.
 

Detailed Description

Controls are Views which capture and respond to events.

Definition at line 83 of file Control.h.

Member Function Documentation

◆ _Control()

Class * _Control ( void  )

The Control archetype.

Returns
The Control Class.

Definition at line 391 of file Control.c.

391 {
392 static Class *clazz;
393 static Once once;
394
395 do_once(&once, {
396 clazz = _initialize(&(const ClassDef) {
397 .name = "Control",
398 .superclass = _View(),
399 .instanceSize = sizeof(Control),
400 .interfaceOffset = offsetof(Control, interface),
401 .interfaceSize = sizeof(ControlInterface),
403 });
404 });
405
406 return clazz;
407}
static void initialize(Class *clazz)
Definition Box.c:123
Controls are Views which capture and respond to events.
Definition Control.h:83
ControlInterface * interface
The interface.
Definition Control.h:94
Class * _View(void)
The View archetype.
Definition View.c:2067

◆ captureEvent()

bool captureEvent ( Control self,
const SDL_Event *  event 
)

Captures a given event, potentially altering the state of this Control.

Parameters
selfThe Control.
eventThe event.
Returns
True if the Event was captured, false otherwise.
Remarks
Subclasses should override this method to capture events.

Definition at line 77 of file Button.c.

77 {
78
79 Button *this = (Button *) self;
80
81 View *view = (View *) self;
82
83 const bool didReceiveEvent = $(view, didReceiveEvent, event);
84
85 if (event->type == SDL_EVENT_MOUSE_BUTTON_DOWN) {
86 if (didReceiveEvent) {
88 }
89 return true;
90 }
91
92 if (event->type == SDL_EVENT_MOUSE_BUTTON_UP) {
94
95 self->state &= ~ControlStateHighlighted;
96 if (didReceiveEvent) {
97 if (event->button.clicks) {
98 if (this->delegate.didClick) {
99 this->delegate.didClick(this);
100 }
102 }
103 }
104 return true;
105 }
106
107 if (event->type == SDL_EVENT_MOUSE_MOTION) {
108 if (self->state & ControlStateHighlighted) {
109 return true;
110 }
111 }
112
113 if (event->type == SDL_EVENT_KEY_DOWN) {
114 switch (event->key.key) {
115 case SDLK_SPACE:
116 case SDLK_KP_SPACE:
117 case SDLK_RETURN:
118 case SDLK_KP_ENTER:
119 if (this->delegate.didClick) {
120 this->delegate.didClick(this);
121 }
123 return true;
124 default:
125 break;
126 }
127 }
128
129 return super(Control, self, captureEvent, event);
130}
@ ControlStateHighlighted
Definition Control.h:67
@ ViewEventClick
A Control received one or more click events.
Definition Types.h:115
Buttons are Controls that respond to click events.
Definition Button.h:68
unsigned int state
The bit mask of ControlState.
Definition Control.h:104
bool captureEvent(Control *self, const SDL_Event *event)
Captures a given event, potentially altering the state of this Control.
Definition Button.c:77
View view
The superclass.
Definition Control.h:88
Views are the fundamental building blocks of ObjectivelyMVC user interfaces.
Definition View.h:134
bool didReceiveEvent(const View *self, const SDL_Event *event)
Definition View.c:668
void resignKeyResponder(View *self)
Resigns key responder priority.
Definition Control.c:248
void emitViewEvent(View *self, ViewEvent code, ident data)
Emits a ViewEvent originating from this View.
Definition View.c:736

◆ initWithFrame()

Control initWithFrame ( Control self,
const SDL_Rect *  frame 
)

Initializes this Control with the specified frame and style.

Parameters
selfThe Control.
frameThe frame.
Returns
The intialized Control, or NULL on error.

Definition at line 297 of file Control.c.

297 {
298
299 self = (Control *) super(View, self, initWithFrame, frame);
300 if (self) {
301
302 }
303
304 return self;
305}
Control initWithFrame(Control *self, const SDL_Rect *frame)
Initializes this Control with the specified frame and style.
Definition Control.c:297
SDL_Rect frame
The frame, relative to the superview.
Definition View.h:191

◆ isDisabled()

bool isDisabled ( const Control self)
Parameters
selfThe Control.
Returns
True if this Control is disabled, false otherwise.

Definition at line 311 of file Control.c.

311 {
313}
@ ControlStateDisabled
Definition Control.h:70

◆ isFocused()

bool isFocused ( const Control self)
Parameters
selfThe Control.
Returns
True if this Control is focused, false otherwise.

Definition at line 319 of file Control.c.

319 {
321}
@ ControlStateFocused
Definition Control.h:69

◆ isHighlighted()

bool isHighlighted ( const Control self)
Parameters
selfThe Control.
Returns
True if this Control is highlighted, false otherwise.

Definition at line 327 of file Control.c.

327 {
329}

◆ isSelected()

bool isSelected ( const Control self)
Parameters
selfThe Control.
Returns
True if this Control is selected, false otherwise.

Definition at line 335 of file Control.c.

335 {
337}
@ ControlStateSelected
Definition Control.h:68

◆ stateDidChange()

Control::stateDidChange ( Control self)

Called when the state of this Control changes.

Parameters
selfThe Control.
Remarks
Subclasses may implement this method to handle discrete state changes.

Definition at line 343 of file Control.c.

343 {
344
345 View *this = (View *) self;
346
347 if (self->state & ControlStateFocused) {
348 $(this, emitViewEvent, ViewEventFocus, NULL);
349 } else {
350 $(this, emitViewEvent, ViewEventBlur, NULL);
351 }
352
353 $(this, invalidateStyle);
354
355 this->needsLayout = true;
356}
@ ViewEventFocus
A Control's state has focus.
Definition Types.h:120
@ ViewEventBlur
A Control has lost focus.
Definition Types.h:105
void invalidateStyle(View *self)
Invalidates the computed Style for this View and its descendants.
Definition View.c:1033
bool needsLayout
If true, this View will layout its subviews before it is drawn.
Definition View.h:222

Field Documentation

◆ bevel

ControlBevel Control::bevel

The ControlBevel.

Definition at line 99 of file Control.h.

◆ interface

ControlInterface* Control::interface
protected

The interface.

Definition at line 94 of file Control.h.

◆ selection

ControlSelection Control::selection

The ControlSelection.

Definition at line 109 of file Control.h.

◆ state

unsigned int Control::state

The bit mask of ControlState.

Definition at line 104 of file Control.h.

◆ view

View Control::view

The superclass.

Definition at line 88 of file Control.h.


The documentation for this struct was generated from the following files: