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

ScrollViews allow users to pan their internal contents. More...

#include <ScrollView.h>

Inheritance diagram for ScrollView:
View

Public Member Functions

Class * _ScrollView (void)
 The ScrollView archetype.
 
ScrollViewinitWithFrame (ScrollView *self, const SDL_Rect *frame)
 Initializes this ScrollView with the specified frame and style.
 
void scrollToOffset (ScrollView *self, const SDL_Point offset)
 Scrolls the content View to the specified offset.
 
void setContentView (ScrollView *self, View *contentView)
 Sets the content view of this ScrollView.
 
void setScrollBarVisibility (ScrollView *self, ScrollBarVisibility visibility)
 Sets whether this ScrollView's ScrollBar is shown, hidden, or shown only as needed.
 
- 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.
 

Static Public Member Functions

static void scrollToOffset (ScrollView *self, const SDL_Point *offset)
 Scrolls the content View to the specified offset.
 

Data Fields

SDL_Point contentOffset
 The content View offset.
 
ViewcontentView
 The content View.
 
Control control
 The superclass.
 
ScrollBarscrollBar
 The scrollbar. Always present; shown per scrollBarVisibility (see the scrollbar style attribute / setScrollBarVisibility).
 
ScrollBarVisibility scrollBarVisibility
 Governs whether the scrollbar is shown. Attribute scrollbar.
 
float step
 The scroll step, in pixels.
 
- 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

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

Detailed Description

ScrollViews allow users to pan their internal contents.

Forward declaration; ScrollView.h includes this header to embed a ScrollBar, so it can't be included here without a cycle.

Definition at line 61 of file ScrollView.h.

Member Function Documentation

◆ _ScrollView()

Class * _ScrollView ( void  )

The ScrollView archetype.

Returns
The ScrollView Class.

Definition at line 279 of file ScrollView.c.

279 {
280 static Class *clazz;
281 static Once once;
282
283 do_once(&once, {
284 clazz = _initialize(&(const ClassDef) {
285 .name = "ScrollView",
286 .superclass = _Control(),
287 .instanceSize = sizeof(ScrollView),
288 .interfaceOffset = offsetof(ScrollView, interface),
289 .interfaceSize = sizeof(ScrollViewInterface),
291 });
292 });
293
294 return clazz;
295}
static void initialize(Class *clazz)
Definition Box.c:123
Class * _Control(void)
Definition Control.c:391
ScrollViews allow users to pan their internal contents.
Definition ScrollView.h:61
ScrollViewInterface * interface
The interface.
Definition ScrollView.h:72

◆ initWithFrame()

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

Initializes this ScrollView with the specified frame and style.

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

Definition at line 167 of file ScrollView.c.

167 {
168
169 self = (ScrollView *) super(Control, self, initWithFrame, frame);
170 if (self) {
171 self->step = 12.f;
173
174 self->scrollBar = $(alloc(ScrollBar), initWithScrollView, self);
175 assert(self->scrollBar);
176
177 View *scrollBar = (View *) self->scrollBar;
180 scrollBar->hidden = true;
181
182 $((View *) self, addSubview, scrollBar);
183 }
184
185 return self;
186}
static ScrollBar * initWithScrollView(ScrollBar *self, ScrollView *scrollView)
Definition ScrollBar.c:173
@ ScrollBarAuto
Definition ScrollBar.h:70
@ ViewAutoresizingHeight
Definition View.h:89
@ ViewAlignmentRight
Definition View.h:68
Controls are Views which capture and respond to events.
Definition Control.h:83
A draggable scrollbar, owned by a ScrollView.
Definition ScrollBar.h:85
float step
The scroll step, in pixels.
Definition ScrollView.h:87
ScrollBarVisibility scrollBarVisibility
Governs whether the scrollbar is shown. Attribute scrollbar.
Definition ScrollView.h:100
ScrollBar * scrollBar
The scrollbar. Always present; shown per scrollBarVisibility (see the scrollbar style attribute / set...
Definition ScrollView.h:93
ScrollView * initWithFrame(ScrollView *self, const SDL_Rect *frame)
Initializes this ScrollView with the specified frame and style.
Definition ScrollView.c:167
Views are the fundamental building blocks of ObjectivelyMVC user interfaces.
Definition View.h:134
ViewAlignment alignment
The alignment.
Definition View.h:150
void addSubview(View *self, View *subview)
Adds a subview to this view, to be drawn above its siblings.
Definition PageView.c:49
int autoresizingMask
The ViewAutoresizing bitmask.
Definition View.h:155
SDL_Rect frame
The frame, relative to the superview.
Definition View.h:191
bool hidden
If true, this View is not drawn.
Definition View.h:196

◆ scrollToOffset() [1/2]

static void scrollToOffset ( ScrollView self,
const SDL_Point *  offset 
)
static

Scrolls the content View to the specified offset.

Definition at line 192 of file ScrollView.c.

192 {
193
194 if (self->contentView) {
195 const SDL_Size contentSize = $(self->contentView, size);
196 const SDL_Rect bounds = $((View *) self, bounds);
197
198 if (contentSize.w > bounds.w) {
199 self->contentOffset.x = clamp(offset->x, -(contentSize.w - bounds.w), 0);
200 } else {
201 self->contentOffset.x = 0;
202 }
203
204 if (contentSize.h > bounds.h) {
205 self->contentOffset.y = clamp(offset->y, -(contentSize.h - bounds.h), 0);
206 } else {
207 self->contentOffset.y = 0;
208 }
209
210 } else {
211 self->contentOffset.x = self->contentOffset.y = 0;
212 }
213
214 self->control.view.needsLayout = true;
215 ((View *) self->scrollBar)->needsLayout = true;
216}
static SDL_Size contentSize(const Panel *self)
Definition Panel.c:195
View view
The superclass.
Definition Control.h:88
View * contentView
The content View.
Definition ScrollView.h:82
Control control
The superclass.
Definition ScrollView.h:66
SDL_Point contentOffset
The content View offset.
Definition ScrollView.h:77
SDL_Rect bounds(const View *self)
Definition View.c:492
bool needsLayout
If true, this View will layout its subviews before it is drawn.
Definition View.h:222
SDL_Size size(const View *self)
Definition View.c:1640

◆ scrollToOffset() [2/2]

void scrollToOffset ( ScrollView self,
const SDL_Point  offset 
)

Scrolls the content View to the specified offset.

Parameters
selfThe ScrollView.
offsetThe offset.

◆ setContentView()

void setContentView ( ScrollView self,
View contentView 
)

Sets the content view of this ScrollView.

Parameters
selfThe ScrollView.
contentViewThe content view.

Definition at line 222 of file ScrollView.c.

222 {
223
224 if (contentView != self->contentView) {
225
226 if (self->contentView) {
227 $(self->contentView, removeClassName, "contentView");
228 $((View *) self, removeSubview, self->contentView);
229 self->contentView = release(self->contentView);
230 }
231
232 if (contentView) {
233 $(contentView, addClassName, "contentView");
234 $((View *) self, addSubview, contentView);
235 self->contentView = retain(contentView);
236 }
237
238 $((View *) self, addSubview, (View *) self->scrollBar);
239
240 $(self, scrollToOffset, &MakePoint(0, 0));
241 }
242}
static void scrollToOffset(ScrollView *self, const SDL_Point *offset)
Scrolls the content View to the specified offset.
Definition ScrollView.c:192
void addClassName(View *self, const char *className)
Adds the given class name to this View.
Definition View.c:159
void removeClassName(View *self, const char *className)
Removes the given class name to this View.
Definition View.c:1333
void removeSubview(View *self, View *subview)
Removes the given subview from this View.
Definition PageView.c:72

◆ setScrollBarVisibility()

void setScrollBarVisibility ( ScrollView self,
ScrollBarVisibility  visibility 
)

Sets whether this ScrollView's ScrollBar is shown, hidden, or shown only as needed.

Parameters
selfThe ScrollView.
visibilityThe ScrollBarVisibility.

Definition at line 248 of file ScrollView.c.

248 {
249
250 self->scrollBarVisibility = visibility;
251 self->control.view.needsLayout = true;
252}

Field Documentation

◆ contentOffset

SDL_Point ScrollView::contentOffset

The content View offset.

Definition at line 77 of file ScrollView.h.

◆ contentView

View* ScrollView::contentView

The content View.

Definition at line 82 of file ScrollView.h.

◆ control

Control ScrollView::control

The superclass.

Definition at line 66 of file ScrollView.h.

◆ interface

ScrollViewInterface* ScrollView::interface
protected

The interface.

Definition at line 72 of file ScrollView.h.

◆ scrollBar

ScrollBar* ScrollView::scrollBar

The scrollbar. Always present; shown per scrollBarVisibility (see the scrollbar style attribute / setScrollBarVisibility).

Definition at line 93 of file ScrollView.h.

◆ scrollBarVisibility

ScrollBarVisibility ScrollView::scrollBarVisibility

Governs whether the scrollbar is shown. Attribute scrollbar.

ScrollBarAuto (the default) shows it only when the content View's height exceeds this ScrollView's own.

Definition at line 100 of file ScrollView.h.

◆ step

float ScrollView::step

The scroll step, in pixels.

Definition at line 87 of file ScrollView.h.


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