Some documentation cleanup.
This commit is contained in:
parent
df4156033b
commit
a603386208
|
@ -26,10 +26,8 @@ struct singleChild *newSingleChild(uiControl *c, uiControl *parent, void (*attac
|
||||||
uiControlSetParent(s->c, parent);
|
uiControlSetParent(s->c, parent);
|
||||||
|
|
||||||
s->box = new BGroupLayout(B_HORIZONTAL, 0);
|
s->box = new BGroupLayout(B_HORIZONTAL, 0);
|
||||||
// TODO TODO TODO TODO
|
// A BLayout cannot add BViews unless it itself is in a BView for app_server-related reasons (thanks Skipp_OSX in irc.freenode.net/#haiku)
|
||||||
// currently BLayout won't let you add a view to a layout that isn't attached to a view
|
// TODO make this hook cleaner
|
||||||
// that is, if you want to add a view to a layout, there must already be a parent view
|
|
||||||
// request this behavior to be changed
|
|
||||||
(*attach)(attachTo, s->box);
|
(*attach)(attachTo, s->box);
|
||||||
|
|
||||||
s->view->SetExplicitAlignment(BAlignment(B_ALIGN_USE_FULL_WIDTH, B_ALIGN_USE_FULL_HEIGHT));
|
s->view->SetExplicitAlignment(BAlignment(B_ALIGN_USE_FULL_WIDTH, B_ALIGN_USE_FULL_HEIGHT));
|
||||||
|
|
Loading…
Reference in New Issue