#include <assert.h>
#include "TableHeaderCellView.h"
Go to the source code of this file.
◆ _Class
◆ _TableHeaderCellView()
Class * _TableHeaderCellView |
( |
void |
| ) |
|
Definition at line 54 of file TableHeaderCellView.c.
54 {
55 static Class *clazz;
56 static Once once;
57
58 do_once(&once, {
59 clazz = _initialize(&(const ClassDef) {
60 .name = "TableHeaderCellView",
64 .interfaceSize = sizeof(TableHeaderCellViewInterface),
66 });
67 });
68
69 return clazz;
70}
Class * _TableCellView(void)
The TableCellView archetype.
◆ initialize()
static void initialize |
( |
Class * |
clazz | ) |
|
|
static |
- See also
- Class::initialize(Class *)
Definition at line 45 of file TableHeaderCellView.c.
45 {
46
47 ((TableHeaderCellViewInterface *) clazz->interface)->initWithFrame =
initWithFrame;
48}
Box * initWithFrame(Box *self, const SDL_Rect *frame)
Initializes this Box with the given frame.
◆ initWithFrame()
Definition at line 36 of file TableHeaderCellView.c.
36 {
38}
Each row in a TableView is comprised of TableCellViews.