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

CollectionViews display items in a grid. More...

#include <CollectionView.h>

Inheritance diagram for CollectionView:
Control View

Public Member Functions

Class * _CollectionView (void)
 The CollectionView archetype. More...
 
void deselectAll (CollectionView *self)
 Deselects all items in this CollectionView. More...
 
void deselectItemAtIndexPath (CollectionView *self, const IndexPath *indexPath)
 Deselects the item at the given index path. More...
 
void deselectItemsAtIndexPaths (CollectionView *self, const Array *indexPaths)
 Deselects the items at the given index paths. More...
 
IndexPath * indexPathForItem (const CollectionView *self, const CollectionItemView *item)
 
IndexPath * indexPathForItemAtPoint (const CollectionView *self, const SDL_Point *point)
 
CollectionViewinit (CollectionView *self, const SDL_Rect *frame)
 Initializes this CollectionView with the specified frame and style. More...
 
CollectionViewinitWithFrame (CollectionView *self, const SDL_Rect *frame)
 
CollectionItemViewitemAtIndexPath (const CollectionView *self, const IndexPath *indexPath)
 
SDL_Size naturalSize (const CollectionView *self)
 
void reloadData (CollectionView *self)
 Reloads this CollectionView's visible items. More...
 
void selectAll (CollectionView *self)
 Selects all items in this CollectionView. More...
 
Array * selectionIndexPaths (const CollectionView *self)
 
void selectItemAtIndexPath (CollectionView *self, const IndexPath *indexPath)
 Selects the item at the given index path. More...
 
void selectItemsAtIndexPaths (CollectionView *self, const Array *indexPaths)
 Selects the items at the given index paths. More...
 
- Public Member Functions inherited from Control
Class * _Control (void)
 The Control archetype. More...
 
Array * actionsForEvent (const Control *self, const SDL_Event *event)
 
void addActionForEventType (Control *self, SDL_EventType eventType, ActionFunction function, ident sender, ident data)
 Adds an Action for the given event type to this Control. More...
 
_Bool captureEvent (Control *self, const SDL_Event *event)
 Captures a given event, potentially altering the state of this Control. More...
 
Control initWithFrame (Control *self, const SDL_Rect *frame)
 Initializes this Control with the specified frame and style. More...
 
_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. 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

CollectionViewAxis axis
 The layout axis. More...
 
ViewcontentView
 The content view. More...
 
Control control
 The superclass. More...
 
CollectionViewDataSource dataSource
 The data source. More...
 
CollectionViewDelegate delegate
 The delegate. More...
 
MutableArray * items
 The items. More...
 
SDL_Size itemSize
 The item size. More...
 
SDL_Size itemSpacing
 The item spacing. More...
 
ScrollViewscrollView
 The scroll view. More...
 
- Data Fields inherited from Control
ControlBevel bevel
 The ControlBevel. More...
 
ControlSelection selection
 The ControlSelection. More...
 
unsigned int state
 The bit mask of ControlState. 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

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

Detailed Description

CollectionViews display items in a grid.

Definition at line 118 of file CollectionView.h.

Member Function Documentation

◆ _CollectionView()

Class * _CollectionView ( void  )

The CollectionView archetype.

Returns
The CollectionView Class.

Definition at line 542 of file CollectionView.c.

542 {
543 static Class *clazz;
544 static Once once;
545
546 do_once(&once, {
547 clazz = _initialize(&(const ClassDef) {
548 .name = "CollectionView",
549 .superclass = _Control(),
550 .instanceSize = sizeof(CollectionView),
551 .interfaceOffset = offsetof(CollectionView, interface),
552 .interfaceSize = sizeof(CollectionViewInterface),
554 });
555 });
556
557 return clazz;
558}
static void initialize(Class *clazz)
CollectionViews display items in a grid.
CollectionViewInterface * interface
The interface.
Class * _Control(void)
The Control archetype.
Definition: Control.c:379

◆ deselectAll()

void deselectAll ( CollectionView self)

Deselects all items in this CollectionView.

Parameters
selfThe CollectionView.

Definition at line 208 of file CollectionView.c.

208 {
209 $((Array *) self->items, enumerateObjects, deselectAll_enumerate, NULL);
210}
static void deselectAll_enumerate(const Array *array, ident obj, ident data)
ArrayEnumerator for all item deselection.
MutableArray * items
The items.

◆ deselectItemAtIndexPath()

void deselectItemAtIndexPath ( CollectionView self,
const IndexPath *  indexPath 
)

Deselects the item at the given index path.

Parameters
selfThe CollectionView.
indexPathThe index path of the item to deselect.

Definition at line 216 of file CollectionView.c.

216 {
217
218 if (indexPath) {
219 CollectionItemView *item = $(self, itemAtIndexPath, indexPath);
220 if (item) {
221 $(item, setSelected, false);
223 }
224 }
225}
static void setSelected(CollectionItemView *self, _Bool isSelected)
CollectionViewItems are a visual representation of an item within a CollectionView.
CollectionItemView * itemAtIndexPath(const CollectionView *self, const IndexPath *indexPath)
View * contentView
The content view.
void invalidateStyle(View *self)
Invalidates the computed Style for this View and its descendants.
Definition: View.c:822

◆ deselectItemsAtIndexPaths()

void deselectItemsAtIndexPaths ( CollectionView self,
const Array *  indexPaths 
)

Deselects the items at the given index paths.

Parameters
selfThe CollectionView.
indexPathsThe index paths of the items to deselect.

Definition at line 238 of file CollectionView.c.

238 {
239
240 if (indexPaths) {
241 $(indexPaths, enumerateObjects, deselectItemsAtIndexPaths_enumerate, self);
242 }
243}
static void deselectItemsAtIndexPaths_enumerate(const Array *array, ident obj, ident data)
ArrayEnumerator for item deselection.

◆ indexPathForItem()

IndexPath * indexPathForItem ( const CollectionView self,
const CollectionItemView item 
)
Parameters
selfThe CollectionView.
itemThe item.
Returns
The index path of item, or NULL if not found.

Definition at line 289 of file CollectionView.c.

289 {
290
291 const ssize_t index = $((Array *) self->items, indexOfObject, (ident) item);
292 if (index > -1) {
293 return $(alloc(IndexPath), initWithIndex, index);
294 }
295
296 return NULL;
297}

◆ indexPathForItemAtPoint()

IndexPath indexPathForItemAtPoint ( const CollectionView self,
const SDL_Point *  point 
)
Parameters
selfThe CollectionView.
pointA point in window coordinate space.
Returns
The index path of the item at the specified point, or NULL.

Definition at line 249 of file CollectionView.c.

249 {
250
251 if (self->itemSize.w && self->itemSize.h) {
252
253 const SDL_Rect frame = $(self->contentView, renderFrame);
254
255 const int itemWidth = self->itemSize.w + self->itemSpacing.w;
256 const int itemHeight = self->itemSize.h + self->itemSpacing.h;
257
258 const int rows = max(1, frame.h / itemHeight);
259 const int cols = max(1, frame.w / itemWidth);
260
261 const int x = point->x - frame.x;
262 const int y = point->y - frame.y;
263
264 const int row = y / itemHeight;
265 const int col = x / itemWidth;
266
267 int index;
268 switch (self->axis) {
270 index = row * cols + col;
271 break;
273 index = col * rows + row;
274 break;
275 }
276
277 if (index < (int) self->items->array.count) {
278 return $(alloc(IndexPath), initWithIndex, index);
279 }
280 }
281
282 return NULL;
283}
@ CollectionViewAxisHorizontal
@ CollectionViewAxisVertical
SDL_Size itemSize
The item size.
CollectionViewAxis axis
The layout axis.
SDL_Size itemSpacing
The item spacing.
int w
Definition: Types.h:63
int h
Definition: Types.h:63
SDL_Rect renderFrame(const View *self)
Definition: View.c:1275
SDL_Rect frame
The frame, relative to the superview.
Definition: View.h:190

◆ init()

CollectionView * init ( CollectionView self,
const SDL_Rect *  frame 
)

Initializes this CollectionView with the specified frame and style.

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

◆ initWithFrame()

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

Definition at line 303 of file CollectionView.c.

303 {
304
305 self = (CollectionView *) super(Control, self, initWithFrame, frame);
306 if (self) {
307
308 self->items = $$(MutableArray, array);
309
310 self->contentView = $(alloc(View), initWithFrame, NULL);
311 assert(self->contentView);
312
313 $(self->contentView, addClassName, "contentView");
314 $(self->contentView, addClassName, "container");
315
316 self->scrollView = $(alloc(ScrollView), initWithFrame, NULL);
317 assert(self->scrollView);
318
319 $(self->scrollView, setContentView, self->contentView);
320
321 $((View *) self, addSubview, (View *) self->scrollView);
322 }
323
324 return self;
325}
static void setContentView(ScrollView *self, View *contentView)
Definition: ScrollView.c:150
CollectionView * initWithFrame(CollectionView *self, const SDL_Rect *frame)
ScrollView * scrollView
The scroll view.
Controls are Views which capture events and dispatch Actions.
Definition: Control.h:83
ScrollViews allow users to pan their internal contents.
Definition: ScrollView.h:62
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

◆ itemAtIndexPath()

CollectionItemView * itemAtIndexPath ( const CollectionView self,
const IndexPath *  indexPath 
)
Parameters
selfThe CollectionView.
indexPathAn index path.
Returns
The item at the specified index path, or NULL.

Definition at line 331 of file CollectionView.c.

331 {
332
333 if (indexPath) {
334 const Array *items = (Array *) self->items;
335 const size_t index = $(indexPath, indexAtPosition, 0);
336
337 if (index < items->count) {
338 return $(items, objectAtIndex, index);
339 }
340 }
341
342 return NULL;
343}

◆ naturalSize()

SDL_Size naturalSize ( const CollectionView self)
Parameters
selfThe CollectionView.
Returns
The natural size of this CollectionView, placing all items in a single column or row.

Definition at line 349 of file CollectionView.c.

349 {
350
351 ViewPadding padding = MakePadding(0, 0, 0, 0);
352 padding = AddPadding(padding, ((View *) self)->padding);
353 padding = AddPadding(padding, ((View *) self->scrollView)->padding);
354 padding = AddPadding(padding, ((View *) self->contentView)->padding);
355
357
358 const SDL_Rect bounds = $((View *) self->scrollView->contentView, bounds);
359
360 switch (self->axis) {
362 int itemsPerRow = 1;
363 int w = bounds.w;
364 while (w > 0) {
365 w -= self->itemSize.w;
366 itemsPerRow++;
367 if (w - self->itemSpacing.w < 0) {
368 break;
369 }
370 w -= self->itemSpacing.w;
371 }
372 const int rows = ceilf(self->items->array.count / (float) itemsPerRow);
373 size.w += max(self->itemSize.w, bounds.w);
374 size.h += rows * (self->itemSize.h + self->itemSpacing.h);
375 }
376 break;
378 int itemsPerCol = 1;
379 int h = bounds.h;
380 while (h > 0) {
381 h -= self->itemSize.h;
382 itemsPerCol++;
383 if (h - self->itemSpacing.h < 0) {
384 break;
385 }
386 h -= self->itemSpacing.h;
387 }
388 const int cols = ceilf(self->items->array.count / (float) itemsPerCol);
389 size.w += cols * (self->itemSize.w + self->itemSpacing.w);
390 size.h += max(self->itemSize.h, bounds.h);
391 }
392 break;
393 }
394
395 return size;
396}
#define MakeSize(w, h)
Creates an SDL_Size with the given dimensions.
Definition: Types.h:79
#define MakePadding(top, right, bottom, left)
Creates a ViewPadding with the given dimensions.
Definition: View.h:106
#define AddPadding(a, b)
Definition: View.h:112
The SDL_Size type.
Definition: Types.h:62
View * contentView
The content View.
Definition: ScrollView.h:83
SDL_Rect bounds(const View *self)
Definition: View.c:394
SDL_Size size(const View *self)
Definition: View.c:1415
ViewPadding padding
The padding.
Definition: View.h:233
Spacing applied to the inside of a View's frame.
Definition: View.h:99
int top
Definition: View.h:100
int bottom
Definition: View.h:100
int right
Definition: View.h:100
int left
Definition: View.h:100

◆ reloadData()

void reloadData ( CollectionView self)

Reloads this CollectionView's visible items.

Parameters
selfThe CollectionView.
Remarks
This method must be called after changes to the data source or delegate. Failure to call this method after such changes leads to undefined behavior.

Definition at line 409 of file CollectionView.c.

409 {
410
411 assert(self->dataSource.numberOfItems);
413
414 $((Array *) self->items, enumerateObjects, reloadData_removeItems, self->contentView);
415 $(self->items, removeAllObjects);
416
417 const size_t numberOfItems = self->dataSource.numberOfItems(self);
418 for (size_t i = 0; i < numberOfItems; i++) {
419
420 IndexPath *indexPath = $(alloc(IndexPath), initWithIndex, i);
421
422 CollectionItemView *item = self->delegate.itemForObjectAtIndexPath(self, indexPath);
423 assert(item);
424
425 $(self->items, addObject, item);
426 $(self->contentView, addSubview, (View *) item);
427
428 release(item);
429 release(indexPath);
430 }
431
432 ((View *) self)->needsLayout = true;
433}
static void reloadData_removeItems(const Array *array, ident obj, ident data)
ArrayEnumerator to remove CollectionItemViews from the collection's contentView.
size_t(* numberOfItems)(const CollectionView *collectionView)
CollectionItemView *(* itemForObjectAtIndexPath)(const CollectionView *collectionView, const IndexPath *indexPath)
Called by the CollectionView to instantiate items.
CollectionViewDelegate delegate
The delegate.
CollectionViewDataSource dataSource
The data source.

◆ selectAll()

void selectAll ( CollectionView self)

Selects all items in this CollectionView.

Parameters
selfThe CollectionView.

Definition at line 446 of file CollectionView.c.

446 {
447 $((Array *) self->items, enumerateObjects, selectAll_enumerate, NULL);
448}
static void selectAll_enumerate(const Array *array, ident obj, ident data)
ArrayEnumerator for all item selection.

◆ selectionIndexPaths()

Array * selectionIndexPaths ( const CollectionView self)
Parameters
selfThe CollectionView.
Returns
An Array containing the index paths of all selected items.

Definition at line 454 of file CollectionView.c.

454 {
455
456 MutableArray *array = $$(MutableArray, array);
457
458 const Array *items = (Array *) self->items;
459 for (size_t i = 0; i < items->count; i++) {
460
461 const CollectionItemView *item = $(items, objectAtIndex, i);
462 if (item->isSelected) {
463
464 IndexPath *indexPath = $(self, indexPathForItem, item);
465 $(array, addObject, indexPath);
466
467 release(indexPath);
468 }
469 }
470
471 return (Array *) array;
472}
_Bool isSelected
True when this item is selected, false otherwise.
IndexPath * indexPathForItem(const CollectionView *self, const CollectionItemView *item)

◆ selectItemAtIndexPath()

void selectItemAtIndexPath ( CollectionView self,
const IndexPath *  indexPath 
)

Selects the item at the given index path.

Parameters
selfThe CollectionView.
indexPathThe index path of the item to select.

Definition at line 478 of file CollectionView.c.

478 {
479
480 if (indexPath) {
481 CollectionItemView *item = $(self, itemAtIndexPath, indexPath);
482 if (item) {
483 $(item, setSelected, true);
485 }
486 }
487}

◆ selectItemsAtIndexPaths()

void selectItemsAtIndexPaths ( CollectionView self,
const Array *  indexPaths 
)

Selects the items at the given index paths.

Parameters
selfThe CollectionView.
indexPathsThe index paths of the items to select.

Definition at line 500 of file CollectionView.c.

500 {
501
502 if (indexPaths) {
503 $(indexPaths, enumerateObjects, selectItemsAtIndexPaths_enumerate, self);
504 }
505}
static void selectItemsAtIndexPaths_enumerate(const Array *array, ident obj, ident data)
ArrayEnumerator for item selection.

Field Documentation

◆ axis

CollectionViewAxis CollectionView::axis

The layout axis.

Definition at line 134 of file CollectionView.h.

◆ contentView

View* CollectionView::contentView

The content view.

Definition at line 139 of file CollectionView.h.

◆ control

Control CollectionView::control

The superclass.

Definition at line 123 of file CollectionView.h.

◆ dataSource

CollectionViewDataSource CollectionView::dataSource

The data source.

Definition at line 144 of file CollectionView.h.

◆ delegate

CollectionViewDelegate CollectionView::delegate

The delegate.

Definition at line 149 of file CollectionView.h.

◆ interface

CollectionViewInterface* CollectionView::interface
protected

The interface.

Definition at line 129 of file CollectionView.h.

◆ items

MutableArray* CollectionView::items

The items.

Definition at line 154 of file CollectionView.h.

◆ itemSize

SDL_Size CollectionView::itemSize

The item size.

Definition at line 159 of file CollectionView.h.

◆ itemSpacing

SDL_Size CollectionView::itemSpacing

The item spacing.

Definition at line 164 of file CollectionView.h.

◆ scrollView

ScrollView* CollectionView::scrollView

The scroll view.

Definition at line 169 of file CollectionView.h.


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