ObjectivelyMVC 0.1.0
Object oriented MVC framework for OpenGL, SDL2 and GNU C
Public Member Functions | Data Fields | Protected Attributes
Input Struct Reference

An Input stacks a Label with a Control. More...

#include <Input.h>

Inheritance diagram for Input:
StackView View

Public Member Functions

Class * _Input (void)
 The Input archetype. More...
 
InputinitWithFrame (Input *self, const SDL_Rect *frame)
 Initializes this Input with the specified frame. More...
 
InputinitWithOrientation (Input *self, Control *control)
 
void setControl (Input *self, Control *control)
 Sets this Input's Control. More...
 
void setLabel (Input *self, Label *label)
 Sets this Input's Label. More...
 
void setOrientation (Input *self, InputOrientation orientation)
 Sets this Input's orientation. More...
 
- Public Member Functions inherited from StackView
Class * _StackView (void)
 The StackView archetype. More...
 
StackViewinitWithFrame (StackView *self, const SDL_Rect *frame)
 Initializes this StackView with the specified frame. More...
 
- Public Member Functions inherited from View
Class * _View (void)
 The View archetype. More...
 
_Bool acceptsFirstResponder (const View *self)
 
void addClassName (View *self, const char *className)
 Adds the given class name to this View. More...
 
void addSubview (View *self, View *subview)
 Adds a subview to this view, to be drawn above its siblings. More...
 
void addSubviewRelativeTo (View *self, View *subview, View *other, ViewPosition position)
 Adds a subview to this view, positioned relatively to other. More...
 
 ancestorWithIdentifier (const View *self, const char *identifier)
 
void applyStyle (View *self, const Style *style)
 Applies the given Style to this View. More...
 
void applyTheme (View *self, const Theme *theme)
 Applies the given Theme to this View. More...
 
void applyThemeIfNeeded (View *self, const Theme *theme)
 Recursively applies the Theme to this View and its subviews. More...
 
void attachStylesheet (View *self, SDL_Window *window)
 Attaches this View's Stylesheet to the Theme associated with the given window. More...
 
void awakeWithCharacters (View *self, const char *chars)
 Wakes this View with the given null-terminated JSON C string. More...
 
void awakeWithData (View *self, const Data *data)
 Wakes this View with the specified JSON Data. More...
 
void awakeWithDictionary (View *self, const Dictionary *dictionary)
 Wakes this View with the specified Dictionary. More...
 
void awakeWithResource (View *self, const Resource *resource)
 Wakes this View with the specified Resource. More...
 
void awakeWithResourceName (View *self, const char *name)
 Wakes this View with the Resource by the specified name. More...
 
void becomeFirstResponder (View *self)
 Become the first responder in the View hierarchy. More...
 
_Bool bind (View *self, const Inlet *inlets, const Dictionary *dictionary)
 Performs data binding for the Inlets described in dictionary. More...
 
SDL_Rect bounds (const View *self)
 
void bringSubviewToFront (View *self, View *subview)
 Brings the specified subview to the front. More...
 
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. More...
 
void didMoveToWindow (View *self, SDL_Window *window)
 Informs this View that it has been added to the View hierachy of the given window. More...
 
_Bool didReceiveEvent (const View *self, const SDL_Event *event)
 
void * draw (View *self, Renderer *renderer)
 Draws this View. More...
 
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. More...
 
void enumerateAdjacent (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates adjacent siblings of this View, applying enumerator to each. More...
 
void enumerateAncestors (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all ancestors of this View, applying enumerator to each. More...
 
void enumerateDescendants (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all descendants of this View, applying enumerator to each. More...
 
void enumerateSelection (View *self, const char *rule, ViewEnumerator enumerator, ident data)
 Enumerates all Views in the selection matched by rule, applying enumerator to each. More...
 
void enumerateSiblings (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all siblings of this View, applying enumerator to each. More...
 
void enumerateSubviews (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates all subviews of this View, applying enumerator to each. More...
 
void enumerateSuperview (const View *self, ViewEnumerator enumerator, ident data)
 Enumerates the superview of this View, if any, applying enumerator to it. More...
 
ViewfirstResponder (SDL_Window *window)
 
_Bool hasClassName (const View *self, cosnt char *className)
 
ViewhitTest (const View *self, const SDL_Point *point)
 Performs a hit test against this View and its descendants for the given point. More...
 
Viewinit (View *self)
 Initializes this View. More...
 
ViewinitWithFrame (View *self, const SDL_Rect *frame)
 Initializes this View with the specified frame. More...
 
void invalidateStyle (View *self)
 Invalidates the computed Style for this View and its descendants. More...
 
_Bool isContainer (const View *self)
 
_Bool isDescendantOfView (const View *self, const View *view)
 
_Bool isFirstResponder (const View *self)
 
_Bool isVisible (const View *self)
 
void layoutIfNeeded (View *self)
 Recursively updates the layout of this View and its subviews. More...
 
 layoutSubviews (View *self)
 Performs layout for this View's immediate subviews. More...
 
_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. More...
 
String * path (const View *self)
 
void removeAllClassNames (View *self)
 Removes all class names from this View. More...
 
void removeAllSubviews (View *self)
 Removes all subviews from this View. More...
 
void removeClassName (View *self, const char *className)
 Removes the given class name to this View. More...
 
void removeFromSuperview (View *self)
 Removes this View from its superview. More...
 
void removeSubview (View *self, View *subview)
 Removes the given subview from this View. More...
 
void render (View *self, Renderer *renderer)
 Renders this View using the given renderer. More...
 
void renderDeviceDidReset (View *self)
 Informs this View that the render device has reset. More...
 
void renderDeviceWillReset (View *self)
 Informs this View that the render device will reset. More...
 
SDL_Rect renderFrame (const View *self)
 
void replaceSubview (View *self, View *subview, View *replacement)
 Replaces the specified subview with the given replacement. More...
 
void resignFirstResponder (View *self)
 Resigns first responder priority. More...
 
void resize (View *self, const SDL_Size *size)
 Resizes this View to the specified size. More...
 
void resolve (View *self, Outlet *outlets)
 Resolves the given Outlets from this View's hierarchy. More...
 
void respondToEvent (View *self, const SDL_Event *event)
 Responds to the specified event. More...
 
Set * select (View *self, const char *rule)
 Resolves all descendants (including this View) that match the given Selector rule. More...
 
void setFirstResponder (SDL_Window *window, View *view)
 Sets the first responder for the given window. More...
 
SDL_Size size (const View *self)
 
SDL_Size sizeThatContains (const View *self)
 
void sizeThatFits (const View *self)
 
void sizeToContain (View *self)
 Resizes this View to contain its subviews. More...
 
void sizeToFit (View *self)
 Resizes this View to fit its subviews. More...
 
 subviewWithIdentifier (const View *self, const char *identifier)
 
void updateBindings (View *self)
 Updates data bindings, prompting the appropriate layout changes. More...
 
SDL_Rect viewport (const View *self)
 
ViewviewWithCharacters (const char *chars, Outlet *outlets)
 Instantiates a View initialized with the given null-terminated JSON C string. More...
 
ViewviewWithData (const Data *data, Outlet *outlets)
 Instantiates a View initialized with the contents of data. More...
 
ViewviewWithDictionary (const Dictionary *dictionary, Outlet *outlets)
 Instantiates a View initialized with the attributes described in dictionary. More...
 
ViewviewWithResource (const Resource *resource, Outlet *outlets)
 Instantiates a View initialized with the JSON data in resource. More...
 
ViewviewWithResourceName (const char *name, Outlet *outlets)
 Instantiates a View initialized with the JSON Resource with the specified name. More...
 
Array * visibleSubviews (const View *self)
 
void warn (View *self, const char *fmt,...)
 Appends a warning for this View. More...
 
void willMoveToWindow (View *self, SDL_Window *window)
 Informs this View that it will be added to the View hierarchy for the given window. More...
 

Data Fields

Controlcontrol
 The Control. More...
 
Labellabel
 The Label. More...
 
InputOrientation orientation
 The Label orientation. More...
 
StackView stackView
 The superclass. More...
 
- Data Fields inherited from StackView
StackViewAxis axis
 The axis. More...
 
StackViewDistribution distribution
 The distribution. More...
 
int spacing
 The subview spacing. More...
 
View view
 The superclass. More...
 
- Data Fields inherited from View
ViewAlignment alignment
 The alignment. More...
 
int autoresizingMask
 The ViewAutoresizing bitmask. More...
 
SDL_Color backgroundColor
 The background color. More...
 
SDL_Color borderColor
 The border color. More...
 
int borderWidth
 The border width. More...
 
MutableSet * classNames
 The class names. More...
 
_Bool clipsSubviews
 If true, subviews will be clipped to this View's frame. More...
 
StylecomputedStyle
 The computed Style of this View. More...
 
SDL_Rect frame
 The frame, relative to the superview. More...
 
_Bool hidden
 If true, this View is not drawn. More...
 
char * identifier
 An optional identifier. More...
 
SDL_Size maxSize
 The maximum size this View may be resized to during layout. More...
 
SDL_Size minSize
 The minimum size this View may be resized to during layout. More...
 
_Bool needsApplyTheme
 If true, this View will apply the Theme before it is drawn. More...
 
_Bool needsLayout
 If true, this View will layout its subviews before it is drawn. More...
 
ViewnextResponder
 The next responder, or event handler, in the chain. More...
 
Object object
 The superclass. More...
 
ViewPadding padding
 The padding. More...
 
Stylestyle
 The element-level Style of this View. More...
 
Stylesheetstylesheet
 An optional Stylesheet. More...
 
MutableArray * subviews
 The immediate subviews. More...
 
Viewsuperview
 The super View. More...
 
ViewControllerviewController
 The ViewController. More...
 
MutableArray * warnings
 The warnings this View generated. More...
 
SDL_Window * window
 The window. More...
 

Protected Attributes

InputInterface * interface
 The interface. More...
 
- Protected Attributes inherited from StackView
StackViewInterface * interface
 The interface. More...
 
- Protected Attributes inherited from View
ViewInterface * interface
 The interface. More...
 

Detailed Description

An Input stacks a Label with a Control.

Remarks
Inputs are containers used to group a Text label with a Control. They simplify the programmatic layout of forms, and give your application a standard, consistent aesthetic.

Definition at line 57 of file Input.h.

Member Function Documentation

◆ _Input()

Class * _Input ( void  )

The Input archetype.

Returns
The Input Class.

Definition at line 212 of file Input.c.

212 {
213 static Class *clazz;
214 static Once once;
215
216 do_once(&once, {
217 clazz = _initialize(&(const ClassDef) {
218 .name = "Input",
219 .superclass = _StackView(),
220 .instanceSize = sizeof(Input),
221 .interfaceOffset = offsetof(Input, interface),
222 .interfaceSize = sizeof(InputInterface),
224 });
225 });
226
227 return clazz;
228}
static void initialize(Class *clazz)
Definition: Input.c:195
An Input stacks a Label with a Control.
Definition: Input.h:57
InputInterface * interface
The interface.
Definition: Input.h:68
Class * _StackView(void)
The StackView archetype.
Definition: StackView.c:262

◆ initWithFrame()

Input * initWithFrame ( Input self,
const SDL_Rect *  frame 
)

Initializes this Input with the specified frame.

Parameters
selfThe Input.
frameThe frame.
Returns
The initialized Input, or NULL on error.

Definition at line 87 of file Input.c.

87 {
88
89 self = (Input *) super(StackView, self, initWithFrame, frame);
90 if (self) {
91
92 self->control = $(alloc(Control), initWithFrame, NULL);
93 assert(self->control);
94
95 self->label = $(alloc(Label), initWithText, NULL, NULL);
96 assert(self->label);
97
98 $((View *) self, addSubview, (View *) self->control);
99 $((View *) self, addSubview, (View *) self->label);
100
101 $((View *) self, addClassName, "container");
102
104 }
105
106 return self;
107}
@ InputOrientationLeft
Definition: Input.h:39
static Label * initWithText(Label *self, const char *text, Font *font)
Definition: Label.c:96
Controls are Views which capture events and dispatch Actions.
Definition: Control.h:83
void setOrientation(Input *self, InputOrientation orientation)
Sets this Input's orientation.
Definition: Input.c:147
Label * label
The Label.
Definition: Input.h:78
Input * initWithFrame(Input *self, const SDL_Rect *frame)
Initializes this Input with the specified frame.
Definition: Input.c:87
Control * control
The Control.
Definition: Input.h:73
Labels provide a configurable container for Text.
Definition: Label.h:40
StackViews are containers that manage the arrangement of their subviews.
Definition: StackView.h:68
Views are the fundamental building blocks of ObjectivelyMVC user interfaces.
Definition: View.h:133
void addSubview(View *self, View *subview)
Adds a subview to this view, to be drawn above its siblings.
Definition: PageView.c:35
void addClassName(View *self, const char *className)
Adds the given class name to this View.
Definition: View.c:120
SDL_Rect frame
The frame, relative to the superview.
Definition: View.h:190

◆ initWithOrientation()

Input * initWithOrientation ( Input self,
Control control 
)

◆ setControl()

void setControl ( Input self,
Control control 
)

Sets this Input's Control.

Parameters
selfThe Input.
controlThe Control.

Definition at line 113 of file Input.c.

113 {
114
115 assert(control);
116
117 $((View *) self, removeSubview, (View *) self->control);
118 release(self->control);
119
120 self->control = retain(control);
121 $((View *) self, addSubview, (View *) self->control);
122
123 $(self, setOrientation, self->orientation);
124}
void removeSubview(View *self, View *subview)
Removes the given subview from this View.
Definition: PageView.c:58

◆ setLabel()

void setLabel ( Input self,
Label label 
)

Sets this Input's Label.

Parameters
selfThe Input.
labelThe Label.

Definition at line 130 of file Input.c.

130 {
131
132 assert(label);
133
134 $((View *) self, removeSubview, (View *) self->label);
135 release(self->label);
136
137 self->label = retain(label);
138 $((View *) self, addSubview, (View *) self->label);
139
140 $(self, setOrientation, self->orientation);
141}

◆ setOrientation()

void setOrientation ( Input self,
InputOrientation  orientation 
)

Sets this Input's orientation.

Parameters
selfThe Input.
orientationThe InputOrientation.

Definition at line 147 of file Input.c.

147 {
148
149 self->orientation = orientation;
150
151 $((View *) self->control, removeFromSuperview);
152 $((View *) self->label, removeFromSuperview);
153
154 switch (self->orientation) {
157 $((View *) self, addSubview, (View *) self->label);
158 $((View *) self, addSubview, (View *) self->control);
159 break;
160
163 $((View *) self, addSubview, (View *) self->control);
164 $((View *) self, addSubview, (View *) self->label);
165 break;
166 }
167
168 switch (self->orientation) {
170 self->stackView.axis = StackViewAxisHorizontal;
171 self->label->view.alignment = ViewAlignmentMiddleLeft;
172 self->control->view.alignment = ViewAlignmentMiddleRight;
173 break;
174
176 self->stackView.axis = StackViewAxisHorizontal;
177 self->label->view.alignment = ViewAlignmentMiddleRight;
178 self->control->view.alignment = ViewAlignmentMiddleLeft;
179 break;
180
183 self->stackView.axis = StackViewAxisVertical;
184 self->label->view.alignment = ViewAlignmentMiddleCenter;
185 self->control->view.alignment = ViewAlignmentMiddleCenter;
186 break;
187 }
188}
@ InputOrientationRight
Definition: Input.h:40
@ InputOrientationAbove
Definition: Input.h:41
@ InputOrientationBelow
Definition: Input.h:42
@ StackViewAxisHorizontal
Definition: StackView.h:44
@ StackViewAxisVertical
Definition: StackView.h:43
@ ViewAlignmentMiddleCenter
Definition: View.h:72
@ ViewAlignmentMiddleRight
Definition: View.h:73
@ ViewAlignmentMiddleLeft
Definition: View.h:71
InputOrientation orientation
The Label orientation.
Definition: Input.h:83
ViewAlignment alignment
The alignment.
Definition: View.h:149
void removeFromSuperview(View *self)
Removes this View from its superview.
Definition: View.c:1175

Field Documentation

◆ control

Control* Input::control

The Control.

Definition at line 73 of file Input.h.

◆ interface

InputInterface* Input::interface
protected

The interface.

Definition at line 68 of file Input.h.

◆ label

Label* Input::label

The Label.

Definition at line 78 of file Input.h.

◆ orientation

InputOrientation Input::orientation

The Label orientation.

Definition at line 83 of file Input.h.

◆ stackView

StackView Input::stackView

The superclass.

Definition at line 62 of file Input.h.


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