2015-08-14 21:50:20 -05:00
|
|
|
// 14 august 2015
|
|
|
|
#import "uipriv_darwin.h"
|
|
|
|
|
2016-05-01 11:00:10 -05:00
|
|
|
// TODO test empty groups
|
|
|
|
|
2015-08-14 21:50:20 -05:00
|
|
|
struct uiGroup {
|
|
|
|
uiDarwinControl c;
|
2016-05-12 00:31:47 -05:00
|
|
|
NSBox *box;
|
2015-08-14 21:50:20 -05:00
|
|
|
uiControl *child;
|
|
|
|
int margined;
|
2016-05-11 17:28:42 -05:00
|
|
|
struct singleChildConstraints constraints;
|
2015-08-14 21:50:20 -05:00
|
|
|
};
|
|
|
|
|
2016-05-11 17:28:42 -05:00
|
|
|
static void removeConstraints(uiGroup *g)
|
|
|
|
{
|
|
|
|
singleChildConstraintsRemove(&(g->constraints), g->box);
|
|
|
|
}
|
|
|
|
|
2016-04-25 11:42:43 -05:00
|
|
|
static void uiGroupDestroy(uiControl *c)
|
2015-08-17 16:27:27 -05:00
|
|
|
{
|
2016-04-25 11:42:43 -05:00
|
|
|
uiGroup *g = uiGroup(c);
|
|
|
|
|
2016-05-11 17:28:42 -05:00
|
|
|
removeConstraints(g);
|
2015-08-17 16:27:27 -05:00
|
|
|
if (g->child != NULL) {
|
|
|
|
uiControlSetParent(g->child, NULL);
|
2016-05-11 23:43:52 -05:00
|
|
|
uiDarwinControlSetSuperview(uiDarwinControl(g->child), nil);
|
2015-08-17 16:27:27 -05:00
|
|
|
uiControlDestroy(g->child);
|
|
|
|
}
|
2016-04-25 11:42:43 -05:00
|
|
|
[g->box release];
|
|
|
|
uiFreeControl(uiControl(g));
|
2015-08-17 16:27:27 -05:00
|
|
|
}
|
|
|
|
|
2016-04-25 11:42:43 -05:00
|
|
|
uiDarwinControlDefaultHandle(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultParent(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultSetParent(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultToplevel(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultVisible(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultShow(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultHide(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultEnabled(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultEnable(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultDisable(uiGroup, box)
|
|
|
|
|
2016-04-25 16:52:16 -05:00
|
|
|
static void uiGroupSyncEnableState(uiDarwinControl *c, int enabled)
|
2015-08-21 00:09:07 -05:00
|
|
|
{
|
|
|
|
uiGroup *g = uiGroup(c);
|
|
|
|
|
2016-04-25 17:07:29 -05:00
|
|
|
if (uiDarwinShouldStopSyncEnableState(uiDarwinControl(g), enabled))
|
|
|
|
return;
|
2015-08-21 00:09:07 -05:00
|
|
|
if (g->child != NULL)
|
2016-04-25 16:52:16 -05:00
|
|
|
uiDarwinControlSyncEnableState(uiDarwinControl(g->child), enabled);
|
2015-08-21 00:09:07 -05:00
|
|
|
}
|
2015-08-14 21:50:20 -05:00
|
|
|
|
2016-04-25 11:42:43 -05:00
|
|
|
uiDarwinControlDefaultSetSuperview(uiGroup, box)
|
2016-05-07 00:34:33 -05:00
|
|
|
|
2016-04-25 12:38:17 -05:00
|
|
|
static void groupRelayout(uiGroup *g)
|
2015-08-18 19:15:09 -05:00
|
|
|
{
|
|
|
|
NSView *childView;
|
|
|
|
|
2016-05-11 17:28:42 -05:00
|
|
|
removeConstraints(g);
|
2015-08-18 19:15:09 -05:00
|
|
|
if (g->child == NULL)
|
|
|
|
return;
|
|
|
|
childView = (NSView *) uiControlHandle(g->child);
|
2016-05-11 17:28:42 -05:00
|
|
|
singleChildConstraintsEstablish(&(g->constraints),
|
|
|
|
g->box, childView,
|
|
|
|
uiDarwinControlHugsTrailingEdge(uiDarwinControl(g->child)),
|
|
|
|
uiDarwinControlHugsBottom(uiDarwinControl(g->child)),
|
|
|
|
g->margined,
|
|
|
|
@"uiGroup");
|
|
|
|
}
|
|
|
|
|
|
|
|
uiDarwinControlDefaultHugsTrailingEdge(uiGroup, box)
|
|
|
|
uiDarwinControlDefaultHugsBottom(uiGroup, box)
|
|
|
|
|
2016-05-11 23:43:52 -05:00
|
|
|
static void uiGroupChildEdgeHuggingChanged(uiDarwinControl *c)
|
2016-05-11 17:28:42 -05:00
|
|
|
{
|
|
|
|
uiGroup *g = uiGroup(c);
|
|
|
|
|
|
|
|
groupRelayout(g);
|
2015-08-18 19:15:09 -05:00
|
|
|
}
|
|
|
|
|
2015-08-14 21:50:20 -05:00
|
|
|
char *uiGroupTitle(uiGroup *g)
|
|
|
|
{
|
2015-08-22 10:17:13 -05:00
|
|
|
return uiDarwinNSStringToText([g->box title]);
|
2015-08-14 21:50:20 -05:00
|
|
|
}
|
|
|
|
|
2015-08-17 17:30:04 -05:00
|
|
|
void uiGroupSetTitle(uiGroup *g, const char *title)
|
2015-08-14 21:50:20 -05:00
|
|
|
{
|
2015-08-17 17:30:04 -05:00
|
|
|
[g->box setTitle:toNSString(title)];
|
2015-08-14 21:50:20 -05:00
|
|
|
// changing the text might necessitate a change in the groupbox's size
|
2015-08-18 19:15:09 -05:00
|
|
|
uiDarwinControlTriggerRelayout(uiDarwinControl(g));
|
2015-08-14 21:50:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiGroupSetChild(uiGroup *g, uiControl *child)
|
|
|
|
{
|
2015-08-17 16:27:27 -05:00
|
|
|
NSView *childView;
|
|
|
|
|
|
|
|
if (g->child != NULL) {
|
2016-05-11 17:28:42 -05:00
|
|
|
removeConstraints(g);
|
2015-08-17 16:27:27 -05:00
|
|
|
childView = (NSView *) uiControlHandle(g->child);
|
|
|
|
[childView removeFromSuperview];
|
2015-08-14 21:50:20 -05:00
|
|
|
uiControlSetParent(g->child, NULL);
|
2015-08-17 16:27:27 -05:00
|
|
|
}
|
2015-08-14 21:50:20 -05:00
|
|
|
g->child = child;
|
|
|
|
if (g->child != NULL) {
|
2015-08-17 16:27:27 -05:00
|
|
|
childView = (NSView *) uiControlHandle(g->child);
|
2015-08-14 21:50:20 -05:00
|
|
|
uiControlSetParent(g->child, uiControl(g));
|
2016-05-01 11:00:10 -05:00
|
|
|
uiDarwinControlSetSuperview(uiDarwinControl(g->child), [g->box contentView]);
|
2016-04-25 16:52:16 -05:00
|
|
|
uiDarwinControlSyncEnableState(uiDarwinControl(g->child), uiControlEnabledToUser(uiControl(g)));
|
2015-08-14 21:50:20 -05:00
|
|
|
}
|
2016-04-25 11:42:43 -05:00
|
|
|
groupRelayout(g);
|
2015-08-14 21:50:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int uiGroupMargined(uiGroup *g)
|
|
|
|
{
|
|
|
|
return g->margined;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiGroupSetMargined(uiGroup *g, int margined)
|
|
|
|
{
|
|
|
|
g->margined = margined;
|
2016-05-12 00:31:47 -05:00
|
|
|
singleChildConstraintsSetMargined(&(g->constraints), g->margined);
|
2016-05-11 17:28:42 -05:00
|
|
|
// TODO issue a relayout command?
|
2015-08-14 21:50:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
uiGroup *uiNewGroup(const char *title)
|
|
|
|
{
|
|
|
|
uiGroup *g;
|
|
|
|
|
2016-04-25 11:42:43 -05:00
|
|
|
uiDarwinNewControl(uiGroup, g);
|
2015-08-14 21:50:20 -05:00
|
|
|
|
2016-05-12 00:31:47 -05:00
|
|
|
g->box = [[NSBox alloc] initWithFrame:NSZeroRect];
|
2015-08-17 17:30:04 -05:00
|
|
|
[g->box setTitle:toNSString(title)];
|
2015-08-14 21:50:20 -05:00
|
|
|
[g->box setBoxType:NSBoxPrimary];
|
2015-08-17 17:30:04 -05:00
|
|
|
[g->box setBorderType:NSLineBorder];
|
2015-08-14 21:50:20 -05:00
|
|
|
[g->box setTransparent:NO];
|
|
|
|
[g->box setTitlePosition:NSAtTop];
|
2015-08-17 17:30:04 -05:00
|
|
|
// we can't use uiDarwinSetControlFont() because the selector is different
|
|
|
|
[g->box setTitleFont:[NSFont systemFontOfSize:[NSFont systemFontSizeForControlSize:NSSmallControlSize]]];
|
2015-08-14 21:50:20 -05:00
|
|
|
|
|
|
|
return g;
|
|
|
|
}
|