|
ObjectivelyMVC
Object oriented MVC framework for SDL3 and GNU C
|
Views are the fundamental building blocks of ObjectivelyMVC user interfaces. More...
#include <View.h>
Public Member Functions | |
| 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) |
| View * | hitTest (const View *self, const SDL_Point *point) |
| Performs a hit test against this View and its descendants for the given point. | |
| View * | init (View *self) |
| Initializes this View. | |
| View * | initWithFrame (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. | |
| View * | selectFirst (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) |
| View * | viewWithCharacters (const char *chars, Outlet *outlets) |
| Instantiates a View initialized with the given null-terminated JSON C string. | |
| View * | viewWithData (const Data *data, Outlet *outlets) |
Instantiates a View initialized with the contents of data. | |
| View * | viewWithDictionary (const Dictionary *dictionary, Outlet *outlets) |
Instantiates a View initialized with the attributes described in dictionary. | |
| View * | viewWithResource (const Resource *resource, Outlet *outlets) |
Instantiates a View initialized with the JSON data in resource. | |
| View * | viewWithResourceName (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 | |
| 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. | |
| Style * | computedStyle |
| 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. | |
| View * | nextResponder |
| The next responder, or event handler, in the chain. | |
| Object | object |
| The superclass. | |
| ViewPadding | padding |
| The padding. | |
| Style * | style |
| The element-level Style of this View. | |
| Stylesheet * | stylesheet |
| An optional Stylesheet. | |
| Array * | subviews |
| The immediate subviews. | |
| View * | superview |
| The super View. | |
| ViewController * | viewController |
| The ViewController. | |
| Array * | warnings |
| The Warnings this View generated. | |
| SDL_Window * | window |
| The window. | |
Protected Attributes | |
| ViewInterface * | interface |
| The interface. | |
Views are the fundamental building blocks of ObjectivelyMVC user interfaces.
Views provide organization and coordination of layout, drawing and event handling. Views maintain hierarchical relationships among other Views, whereby each View's parent, or superview, dictates where it will be drawn on the screen, which events it will be eligible to receive, etc.
| Class * _View | ( | void | ) |
The View archetype.
Definition at line 2067 of file View.c.
| 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.
| self | The View. |
| className | The class name. |
Definition at line 159 of file View.c.
Adds a subview to this view, to be drawn above its siblings.
| self | The View. |
| subview | The subview to add. |
$(view, addSubviewRelativeTo, subview, NULL, OrderSame). Definition at line 49 of file PageView.c.
| void addSubviewRelativeTo | ( | View * | self, |
| View * | subview, | ||
| View * | other, | ||
| ViewPosition | position | ||
| ) |
Adds a subview to this view, positioned relatively to other.
| self | The View. |
| subview | The subview to add. |
| other | An optional View to position subview relative to. |
| position | The relative position. |
Definition at line 185 of file View.c.
| ancestorWithIdentifier | ( | const View * | self, |
| const char * | identifier | ||
| ) |
Applies the given Style to this View.
Definition at line 59 of file CollectionView.c.
Applies the given Theme to this View.
Definition at line 285 of file View.c.
Recursively applies the Theme to this View and its subviews.
Definition at line 317 of file View.c.
| void attachStylesheet | ( | View * | self, |
| SDL_Window * | window | ||
| ) |
| void awakeWithCharacters | ( | View * | self, |
| const char * | chars | ||
| ) |
Wakes this View with the given null-terminated JSON C string.
Definition at line 353 of file View.c.
| void awakeWithData | ( | View * | self, |
| const Data * | data | ||
| ) |
Wakes this View with the specified JSON Data.
Definition at line 366 of file View.c.
| void awakeWithDictionary | ( | View * | self, |
| const Dictionary * | dictionary | ||
| ) |
Wakes this View with the specified Dictionary.
dictionary. | void awakeWithResource | ( | View * | self, |
| const Resource * | resource | ||
| ) |
| void awakeWithResourceName | ( | View * | self, |
| const char * | name | ||
| ) |
Wakes this View with the Resource by the specified name.
Definition at line 414 of file View.c.
| void becomeKeyResponder | ( | View * | self | ) |
Become the key responder in the View hierarchy.
| self | The View. |
Definition at line 130 of file Control.c.
| void becomeTouchResponder | ( | View * | self | ) |
Become the touch responder in the View hierarchy.
| self | The View. |
Definition at line 451 of file View.c.
Performs data binding for the Inlets described in dictionary.
| SDL_Rect bounds | ( | const View * | self | ) |
Brings the specified subview to the front.
| self | The View. |
| subview | The subview. |
Definition at line 510 of file View.c.
| void clearWarnings | ( | const View * | self, |
| WarningType | level | ||
| ) |
Clears this View's Warnings matching the given level.
| self | The View. |
| type | The bitmask of WarningTypes to clear. |
Definition at line 538 of file View.c.
| SDL_Rect clippingFrame | ( | const View * | self | ) |
| self | The View. |
renderFrame, expanded for border width, and clipped to all ancestors. Definition at line 546 of file View.c.
| bool containsPoint | ( | const View * | self, |
| const SDL_Point * | point | ||
| ) |
| int depth | ( | const View * | self | ) |
| descendantWithIdentifier | ( | const View * | self, |
| const char * | identifier | ||
| ) |
| self | The View. |
| identifier | The identifier. |
Definition at line 608 of file View.c.
| void detachStylesheet | ( | View * | self, |
| SDL_Window * | window | ||
| ) |
Detaches this View's Stylesheet from the Theme associated with the given window.
| self | The View. |
| window | The window. |
Definition at line 635 of file View.c.
| void didMoveToWindow | ( | View * | self, |
| SDL_Window * | window | ||
| ) |
Informs this View that it has been added to the View hierachy of the given window.
Definition at line 651 of file View.c.
| bool didReceiveEvent | ( | const View * | self, |
| const SDL_Event * | event | ||
| ) |
| self | The View. |
| event | The event. |
Definition at line 668 of file View.c.
Draws this View.
Emits a ViewEvent originating from this View.
| self | The View. |
| code | The ViewEvent code. |
| data | The ViewEvent data. |
Definition at line 736 of file View.c.
| 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.
| self | The View. |
| enumerator | The ViewEnumerator. |
| data | User data. |
Definition at line 749 of file View.c.
| void enumerateAdjacent | ( | const View * | self, |
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
Enumerates adjacent siblings of this View, applying enumerator to each.
| self | The View. |
| enumerator | The ViewEnumerator. |
| data | User data. |
Definition at line 762 of file View.c.
| void enumerateAncestors | ( | const View * | self, |
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
| void enumerateDescendants | ( | const View * | self, |
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
| void enumerateSelection | ( | View * | self, |
| const char * | rule, | ||
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
Enumerates all Views in the selection matched by rule, applying enumerator to each.
Definition at line 795 of file View.c.
| void enumerateSiblings | ( | const View * | self, |
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
Enumerates all siblings of this View, applying enumerator to each.
| self | The View. |
| enumerator | The ViewEnumerator. |
| data | User data. |
Definition at line 826 of file View.c.
| void enumerateSubviews | ( | const View * | self, |
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
| void enumerateSuperview | ( | const View * | self, |
| ViewEnumerator | enumerator, | ||
| ident | data | ||
| ) |
| 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.
This is an optimized path for enumerating only visible subtrees.
| self | The View. |
| enumerator | The ViewEnumerator. |
| data | User data. |
Definition at line 873 of file View.c.
| bool hasClassName | ( | const View * | self, |
| cosnt char * | className | ||
| ) |
| bool hasOverflow | ( | const View * | self | ) |
| self | The View |
Definition at line 939 of file View.c.
Performs a hit test against this View and its descendants for the given point.
| self | The View. |
| point | The point to test. |
Definition at line 954 of file View.c.
Initializes this View.
| self | The View. |
NULL on error. Definition at line 67 of file Box.c.
Initializes this View with the specified frame.
| self | The View. |
| frame | The frame. |
NULL on error. Definition at line 989 of file View.c.
| void invalidateStyle | ( | View * | self | ) |
Invalidates the computed Style for this View and its descendants.
| self | The View. |
Definition at line 1033 of file View.c.
| bool isContainer | ( | const View * | self | ) |
| 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.
| self | The View. |
Definition at line 1115 of file View.c.
| layoutSubviews | ( | View * | self | ) |
Performs layout for this View's immediate subviews.
| self | The View. |
Definition at line 74 of file Box.c.
| bool matchesSelector | ( | const View * | self, |
| const SimpleSelector * | simpleSelector | ||
| ) |
| self | The View. |
| simpleSelector | The SimpleSelector. |
Definition at line 51 of file CollectionItemView.c.
| void moveToWindow | ( | View * | self, |
| SDL_Window * | window | ||
| ) |
Moves this View to the View hierarchy of the given window.
Definition at line 1262 of file View.c.
| String * path | ( | const View * | self | ) |
| self | The View. |
Definition at line 1277 of file View.c.
| void removeAllClassNames | ( | View * | self | ) |
| void removeAllSubviews | ( | View * | self | ) |
Removes all subviews from this View.
| self | The View. |
Definition at line 1336 of file View.c.
| void removeClassName | ( | View * | self, |
| const char * | className | ||
| ) |
Removes the given class name to this View.
| self | The View. |
| className | The class name. |
Definition at line 1344 of file View.c.
| void removeFromSuperview | ( | View * | self | ) |
Removes this View from its superview.
| self | The View. |
Definition at line 1361 of file View.c.
Removes the given subview from this View.
| self | The View. |
| subview | The subview. |
Definition at line 72 of file PageView.c.
Renders this View using the given renderer.
draw as the View hierarchy is drawn. Definition at line 179 of file Control.c.
| void renderDeviceDidReset | ( | View * | self | ) |
Informs this View that the render device has reset.
| self | The View. |
Definition at line 440 of file Text.c.
| void renderDeviceWillReset | ( | View * | self | ) |
Informs this View that the render device will reset.
| self | The View. |
Definition at line 119 of file ImageView.c.
| SDL_Frame renderFrame | ( | const View * | self | ) |
Replaces the specified subview with the given replacement.
| self | The View. |
| subview | The subview to replace. |
| replacement | The replacement subview. |
Definition at line 1482 of file View.c.
| void resignKeyResponder | ( | View * | self | ) |
Resigns key responder priority.
| self | The View. |
Definition at line 248 of file Control.c.
| void resignTouchResponder | ( | View * | self | ) |
| void resize | ( | View * | self, |
| const SDL_Size * | size | ||
| ) |
Resizes this View to the specified size.
| self | The View. |
| size | The size to set. |
Definition at line 1527 of file View.c.
Resolves the given Outlets from this View's hierarchy.
| self | The View. |
| outlets | The Outlets to resolve. |
Definition at line 1549 of file View.c.
| void respondToEvent | ( | View * | self, |
| const SDL_Event * | event | ||
| ) |
Responds to the specified event.
| self | The View. |
| event | The event. |
Definition at line 266 of file Control.c.
| Set * select | ( | View * | self, |
| const char * | rule | ||
| ) |
Resolves the first descendant View that matches the given Selector rule.
Definition at line 1636 of file View.c.
| SDL_Size size | ( | const View * | self | ) |
| SDL_Size sizeThastFills | ( | const View * | self | ) |
| SDL_Size sizeThatContains | ( | const View * | self | ) |
| self | The View. |
Definition at line 1659 of file View.c.
| SDL_Size sizeThatFills | ( | const View * | self | ) |
| SDL_Size sizeThatFits | ( | const View * | self | ) |
| self | The View. |
autoresizingMask. Definition at line 92 of file Select.c.
| void sizeToContain | ( | View * | self | ) |
Resizes this View to contain its subviews.
| self | The View. |
Definition at line 1745 of file View.c.
| void sizeToFill | ( | View * | self | ) |
| void sizeToFit | ( | View * | self | ) |
Resizes this View to fit its subviews.
| self | The View. |
Definition at line 1767 of file View.c.
| self | The View. |
| identifier | The identifier. |
Definition at line 1778 of file View.c.
| void updateBindings | ( | View * | self | ) |
Updates data bindings, prompting the appropriate layout changes.
| self | The View. |
Definition at line 117 of file HSVColorPicker.c.
| SDL_Rect viewport | ( | const View * | self | ) |
| self | The View. |
Definition at line 1816 of file View.c.
Instantiates a View initialized with the given null-terminated JSON C string.
| chars | A null-terminated JSON C string describing a View. |
| outlets | An optional array of Outlets to resolve. |
NULL on error. Definition at line 1829 of file View.c.
Instantiates a View initialized with the contents of data.
| data | A Data containing JSON describing a View. |
| outlets | An optional array of Outlets to resolve. |
NULL on error. Definition at line 1844 of file View.c.
Instantiates a View initialized with the attributes described in dictionary.
| dictionary | A Dictionary describing a View. |
| outlets | An optional array of Outlets to resolve. |
NULL on error. Definition at line 1865 of file View.c.
Instantiates a View initialized with the JSON data in resource.
| resource | A Resource containing JSON describing a View. |
| outlets | An optional array of Outlets to resolve. |
NULL on error. Definition at line 1880 of file View.c.
Instantiates a View initialized with the JSON Resource with the specified name.
| name | The name of a JSON Resource describing a View. |
| outlets | An optional array of Outlets to resolve. |
NULL on error. Definition at line 1891 of file View.c.
| Array * visibleSubviews | ( | const View * | self | ) |
| self | The View. |
Definition at line 92 of file PageView.c.
| void warn | ( | View * | self, |
| ViewWarningType | type, | ||
| const char * | fmt, | ||
| ... | |||
| ) |
| void warn | ( | View * | self, |
| WarningType | level, | ||
| const char * | fmt, | ||
| ... | |||
| ) |
Appends a warning for this View.
| self | The View. |
| level | The WarningType. |
| fmt | The format string. |
Definition at line 1924 of file View.c.
| void willMoveToWindow | ( | View * | self, |
| SDL_Window * | window | ||
| ) |
Informs this View that it will be added to the View hierarchy for the given window.
Definition at line 1946 of file View.c.
| ViewAlignment View::alignment |
| bool View::clipsSubviews |
| char* View::identifier |
| SDL_Size View::maxSize |
| SDL_Size View::minSize |
| bool View::needsApplyTheme |
| bool View::needsLayout |
| View* View::nextResponder |
| ViewPadding View::padding |
| Style* View::style |
| Stylesheet* View::stylesheet |
An optional Stylesheet.
| View* View::superview |
| ViewController* View::viewController |
The ViewController.
NULL unless the View is the immediate view of a ViewController. | Array* View::warnings |
The Warnings this View generated.
| SDL_Window* View::window |
The window.
NULL until the View has been added to a WindowController.