Cleaned up events and proper string manipulation on uiMultilineEntry on OS X. Woo!
This commit is contained in:
parent
0c85469e52
commit
58d59f4370
|
@ -1,16 +1,35 @@
|
||||||
// 8 december 2015
|
// 8 december 2015
|
||||||
#import "uipriv_darwin.h"
|
#import "uipriv_darwin.h"
|
||||||
|
|
||||||
// TODO you actually have to click on parts with a line in them in order to start editing; clicking below the last line doesn't give focus
|
|
||||||
|
|
||||||
// NSTextView has no intrinsic content size by default, which wreaks havoc on a pure-Auto Layout system
|
// NSTextView has no intrinsic content size by default, which wreaks havoc on a pure-Auto Layout system
|
||||||
// we'll have to take over to get it to work
|
// we'll have to take over to get it to work
|
||||||
// see also http://stackoverflow.com/questions/24210153/nstextview-not-properly-resizing-with-auto-layout and http://stackoverflow.com/questions/11237622/using-autolayout-with-expanding-nstextviews
|
// see also http://stackoverflow.com/questions/24210153/nstextview-not-properly-resizing-with-auto-layout and http://stackoverflow.com/questions/11237622/using-autolayout-with-expanding-nstextviews
|
||||||
@interface intrinsicSizeTextView : NSTextView
|
@interface intrinsicSizeTextView : NSTextView {
|
||||||
|
uiMultilineEntry *libui_e;
|
||||||
|
}
|
||||||
|
- (id)initWithFrame:(NSRect)r e:(uiMultilineEntry *)e;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
struct uiMultilineEntry {
|
||||||
|
uiDarwinControl c;
|
||||||
|
NSScrollView *sv;
|
||||||
|
intrinsicSizeTextView *tv;
|
||||||
|
struct scrollViewData *d;
|
||||||
|
void (*onChanged)(uiMultilineEntry *, void *);
|
||||||
|
void *onChangedData;
|
||||||
|
BOOL changing;
|
||||||
|
};
|
||||||
|
|
||||||
@implementation intrinsicSizeTextView
|
@implementation intrinsicSizeTextView
|
||||||
|
|
||||||
|
- (id)initWithFrame:(NSRect)r e:(uiMultilineEntry *)e
|
||||||
|
{
|
||||||
|
self = [super initWithFrame:r];
|
||||||
|
if (self)
|
||||||
|
self->libui_e = e;
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
- (NSSize)intrinsicContentSize
|
- (NSSize)intrinsicContentSize
|
||||||
{
|
{
|
||||||
NSTextContainer *textContainer;
|
NSTextContainer *textContainer;
|
||||||
|
@ -28,29 +47,12 @@
|
||||||
{
|
{
|
||||||
[super didChangeText];
|
[super didChangeText];
|
||||||
[self invalidateIntrinsicContentSize];
|
[self invalidateIntrinsicContentSize];
|
||||||
}
|
if (!self->libui_e->changing)
|
||||||
|
(*(self->libui_e->onChanged))(self->libui_e, self->libui_e->onChangedData);
|
||||||
// TODO this doesn't call the above?
|
|
||||||
// TODO this also isn't perfect; play around with cpp-multithread
|
|
||||||
- (void)setString:(NSString *)str
|
|
||||||
{
|
|
||||||
[super setString:str];
|
|
||||||
[self didChangeText];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
struct uiMultilineEntry {
|
|
||||||
uiDarwinControl c;
|
|
||||||
NSScrollView *sv;
|
|
||||||
intrinsicSizeTextView *tv;
|
|
||||||
struct scrollViewData *d;
|
|
||||||
void (*onChanged)(uiMultilineEntry *, void *);
|
|
||||||
void *onChangedData;
|
|
||||||
};
|
|
||||||
|
|
||||||
// TODO events
|
|
||||||
|
|
||||||
uiDarwinControlAllDefaultsExceptDestroy(uiMultilineEntry, sv)
|
uiDarwinControlAllDefaultsExceptDestroy(uiMultilineEntry, sv)
|
||||||
|
|
||||||
static void uiMultilineEntryDestroy(uiControl *c)
|
static void uiMultilineEntryDestroy(uiControl *c)
|
||||||
|
@ -75,20 +77,22 @@ char *uiMultilineEntryText(uiMultilineEntry *e)
|
||||||
|
|
||||||
void uiMultilineEntrySetText(uiMultilineEntry *e, const char *text)
|
void uiMultilineEntrySetText(uiMultilineEntry *e, const char *text)
|
||||||
{
|
{
|
||||||
// TODO does this send a changed signal?
|
[[e->tv textStorage] replaceCharactersInRange:NSMakeRange(0, [[e->tv string] length])
|
||||||
[e->tv setString:toNSString(text)];
|
withString:toNSString(text)];
|
||||||
|
// must be called explicitly according to the documentation of shouldChangeTextInRange:replacementString:
|
||||||
|
e->changing = YES;
|
||||||
|
[e->tv didChangeText];
|
||||||
|
e->changing = NO;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO scroll to end?
|
// TODO scroll to end?
|
||||||
void uiMultilineEntryAppend(uiMultilineEntry *e, const char *text)
|
void uiMultilineEntryAppend(uiMultilineEntry *e, const char *text)
|
||||||
{
|
{
|
||||||
// TODO better way?
|
[[e->tv textStorage] replaceCharactersInRange:NSMakeRange([[e->tv string] length], 0)
|
||||||
NSString *str;
|
withString:toNSString(text)];
|
||||||
|
e->changing = YES;
|
||||||
// TODO does this send a changed signal?
|
[e->tv didChangeText];
|
||||||
str = [e->tv string];
|
e->changing = NO;
|
||||||
str = [str stringByAppendingString:toNSString(text)];
|
|
||||||
[e->tv setString:str];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void uiMultilineEntryOnChanged(uiMultilineEntry *e, void (*f)(uiMultilineEntry *e, void *data), void *data)
|
void uiMultilineEntryOnChanged(uiMultilineEntry *e, void (*f)(uiMultilineEntry *e, void *data), void *data)
|
||||||
|
@ -120,7 +124,7 @@ static uiMultilineEntry *finishMultilineEntry(BOOL hscroll)
|
||||||
|
|
||||||
uiDarwinNewControl(uiMultilineEntry, e);
|
uiDarwinNewControl(uiMultilineEntry, e);
|
||||||
|
|
||||||
e->tv = [[intrinsicSizeTextView alloc] initWithFrame:NSZeroRect];
|
e->tv = [[intrinsicSizeTextView alloc] initWithFrame:NSZeroRect e:e];
|
||||||
|
|
||||||
// verified against Interface Builder for a sufficiently customized text view
|
// verified against Interface Builder for a sufficiently customized text view
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue