libui/newcontrol_darwin.m

109 lines
2.8 KiB
Mathematica
Raw Normal View History

2015-04-07 13:42:52 -05:00
// 7 april 2015
#include "uipriv_darwin.h"
typedef struct uiSingleViewControl uiSingleViewControl;
2015-04-07 13:42:52 -05:00
struct uiSingleViewControl {
uiControl control;
NSView *view;
2015-04-07 13:42:52 -05:00
NSScrollView *scrollView;
NSView *immediate; // the control that is added to the parent container; either view or scrollView
uintptr_t parent;
2015-04-07 13:42:52 -05:00
};
#define S(c) ((uiSingleViewControl *) (c))
static void singleDestroy(uiControl *c)
{
[S(c)->view removeFromSuperview];
}
2015-04-07 13:42:52 -05:00
static uintptr_t singleHandle(uiControl *c)
{
return (uintptr_t) (S(c)->view);
2015-04-07 13:42:52 -05:00
}
static void singleSetParent(uiControl *c, uintptr_t parent)
{
uiSingleViewControl *s = S(c);
uintptr_t oldparent;
NSView *parentView;
2015-04-07 13:42:52 -05:00
oldparent = s->parent;
s->parent = parent;
parentView = (NSView *) (s->parent);
// TODO will this change parents?
[parentView addSubview:s->immediate];
updateParent(oldparent);
updateParent(s->parent);
2015-04-07 13:42:52 -05:00
}
// also good for NSBox and NSProgressIndicator
2015-04-07 13:42:52 -05:00
static uiSize singlePreferredSize(uiControl *c, uiSizing *d)
{
uiSize size;
NSControl *control;
NSRect r;
2015-04-07 13:42:52 -05:00
control = (NSControl *) (S(c)->view);
[control sizeToFit];
// use alignmentRect here instead of frame because we'll be resizing based on that
r = [control alignmentRectForFrame:[control frame]];
size.width = (intmax_t) r.size.width;
size.height = (intmax_t) r.size.height;
2015-04-07 13:42:52 -05:00
return size;
}
static void singleResize(uiControl *c, intmax_t x, intmax_t y, intmax_t width, intmax_t height, uiSizing *d)
{
NSRect frame;
frame.origin.x = x;
// mac os x coordinate system has (0,0) in the lower-left
frame.origin.y = ([[S(c)->immediate superview] bounds].size.height - height) - y;
2015-04-07 13:42:52 -05:00
frame.size.width = width;
frame.size.height = height;
frame = [S(c)->immediate frameForAlignmentRect:frame];
[S(c)->immediate setFrame:frame];
}
uiControl *uiDarwinNewControl(Class class, BOOL inScrollView, BOOL scrollViewHasBorder)
2015-04-07 13:42:52 -05:00
{
uiSingleViewControl *c;
c = uiNew(uiSingleViewControl);
2015-04-07 13:42:52 -05:00
// thanks to autoxr and arwyn in irc.freenode.net/#macdev
c->view = (NSView *) [[class alloc] initWithFrame:NSZeroRect];
c->immediate = c->view;
2015-04-07 13:42:52 -05:00
if (inScrollView) {
c->scrollView = [[NSScrollView alloc] initWithFrame:NSZeroRect];
[c->scrollView setDocumentView:c->view];
2015-04-07 13:42:52 -05:00
[c->scrollView setHasHorizontalScroller:YES];
[c->scrollView setHasVerticalScroller:YES];
[c->scrollView setAutohidesScrollers:YES];
if (scrollViewHasBorder)
[c->scrollView setBorderType:NSBezelBorder];
else
[c->scrollView setBorderType:NSNoBorder];
c->immediate = (NSView *) (c->scrollView);
2015-04-07 13:42:52 -05:00
}
c->control.destroy = singleDestroy;
2015-04-07 13:42:52 -05:00
c->control.handle = singleHandle;
c->control.setParent = singleSetParent;
c->control.preferredSize = singlePreferredSize;
c->control.resize = singleResize;
return (uiControl *) c;
}
BOOL uiDarwinControlFreeWhenAppropriate(uiControl *c, NSView *newSuperview)
2015-04-07 13:42:52 -05:00
{
if (newSuperview == nil) {
uiFree(c);
return YES;
}
return NO;
2015-04-07 13:42:52 -05:00
}