This commit is contained in:
Jeremy 2021-01-02 10:21:47 -05:00 committed by GitHub
commit f08b784dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 38 additions and 4 deletions

View File

@ -292,6 +292,17 @@ struct uiBox {
[bc release]; // we don't need the initial reference now
}
- (int)Child:(uiControl *)c
{
boxChild *bc;
for (bc in self->children) {
if (bc.c == c) {
return 1;
}
}
return 0;
}
- (void)delete:(int)n
{
boxChild *bc;

1
ui.h
View File

@ -142,6 +142,7 @@ _UI_EXTERN uiButton *uiNewButton(const char *text);
typedef struct uiBox uiBox;
#define uiBox(this) ((uiBox *) (this))
_UI_EXTERN void uiBoxAppend(uiBox *b, uiControl *child, int stretchy);
_UI_EXTERN int uiBoxChild(uiBox *b, uiControl *c);
_UI_EXTERN void uiBoxDelete(uiBox *b, int index);
_UI_EXTERN int uiBoxPadded(uiBox *b);
_UI_EXTERN void uiBoxSetPadded(uiBox *b, int padded);

View File

@ -88,6 +88,18 @@ void uiBoxAppend(uiBox *b, uiControl *c, int stretchy)
g_array_append_val(b->controls, bc);
}
int uiBoxChild(uiBox *b, uiControl *c)
{
guint i;
for (i = 0; i < b->controls->len; i++) {
struct boxChild *bc = ctrl(b, i);
if (bc->c == c) {
return 1;
}
}
return 0;
}
void uiBoxDelete(uiBox *b, int index)
{
struct boxChild *bc;

View File

@ -267,6 +267,16 @@ void uiBoxAppend(uiBox *b, uiControl *c, int stretchy)
uiWindowsControlMinimumSizeChanged(uiWindowsControl(b));
}
void uiBoxChild(uiBox *b, uiControl *c)
{
for (struct boxChild *bc : b->controls) {
if (bc->c == c){
return 1;
}
}
return 0;
}
void uiBoxDelete(uiBox *b, int index)
{
uiControl *c;