Merge e22b084bea
into fea45b2d5b
This commit is contained in:
commit
f08b784dc6
11
darwin/box.m
11
darwin/box.m
|
@ -292,6 +292,17 @@ struct uiBox {
|
||||||
[bc release]; // we don't need the initial reference now
|
[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
|
- (void)delete:(int)n
|
||||||
{
|
{
|
||||||
boxChild *bc;
|
boxChild *bc;
|
||||||
|
|
1
ui.h
1
ui.h
|
@ -142,6 +142,7 @@ _UI_EXTERN uiButton *uiNewButton(const char *text);
|
||||||
typedef struct uiBox uiBox;
|
typedef struct uiBox uiBox;
|
||||||
#define uiBox(this) ((uiBox *) (this))
|
#define uiBox(this) ((uiBox *) (this))
|
||||||
_UI_EXTERN void uiBoxAppend(uiBox *b, uiControl *child, int stretchy);
|
_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 void uiBoxDelete(uiBox *b, int index);
|
||||||
_UI_EXTERN int uiBoxPadded(uiBox *b);
|
_UI_EXTERN int uiBoxPadded(uiBox *b);
|
||||||
_UI_EXTERN void uiBoxSetPadded(uiBox *b, int padded);
|
_UI_EXTERN void uiBoxSetPadded(uiBox *b, int padded);
|
||||||
|
|
12
unix/box.c
12
unix/box.c
|
@ -88,6 +88,18 @@ void uiBoxAppend(uiBox *b, uiControl *c, int stretchy)
|
||||||
g_array_append_val(b->controls, bc);
|
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)
|
void uiBoxDelete(uiBox *b, int index)
|
||||||
{
|
{
|
||||||
struct boxChild *bc;
|
struct boxChild *bc;
|
||||||
|
|
|
@ -267,6 +267,16 @@ void uiBoxAppend(uiBox *b, uiControl *c, int stretchy)
|
||||||
uiWindowsControlMinimumSizeChanged(uiWindowsControl(b));
|
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)
|
void uiBoxDelete(uiBox *b, int index)
|
||||||
{
|
{
|
||||||
uiControl *c;
|
uiControl *c;
|
||||||
|
|
Loading…
Reference in New Issue