Finished the migration.
This commit is contained in:
parent
fa4542f217
commit
207340f16f
|
@ -18,6 +18,9 @@ This README is being written.<br>
|
||||||
|
|
||||||
*Note that today's entry may be updated later today.*
|
*Note that today's entry may be updated later today.*
|
||||||
|
|
||||||
|
* **13 June 2016**
|
||||||
|
* `intmax_t` and `uintmax_t` are no longer used in libui at all; now we only have `int`. This should make things much easier for bindings. `int` should be at least 32 bits wide; this should be sufficient for all but the most extreme cases.
|
||||||
|
|
||||||
* **12 June 2016**
|
* **12 June 2016**
|
||||||
* Added `uiGrid`, a new container control that arranges controls in rows and columns, with stretchy ("expanding") rows, stretchy ("expanding") columns, cells that span rows and columns, and cells whose content is aligned in either direction rather than just filling. It's quite powerful, is it? =P
|
* Added `uiGrid`, a new container control that arranges controls in rows and columns, with stretchy ("expanding") rows, stretchy ("expanding") columns, cells that span rows and columns, and cells whose content is aligned in either direction rather than just filling. It's quite powerful, is it? =P
|
||||||
|
|
||||||
|
|
|
@ -212,7 +212,6 @@ struct uiForm {
|
||||||
CGFloat padding;
|
CGFloat padding;
|
||||||
NSView *prev, *prevlabel;
|
NSView *prev, *prevlabel;
|
||||||
NSLayoutConstraint *c;
|
NSLayoutConstraint *c;
|
||||||
NSLayoutRelation relation;
|
|
||||||
|
|
||||||
[self removeOurConstraints];
|
[self removeOurConstraints];
|
||||||
if ([self->children count] == 0)
|
if ([self->children count] == 0)
|
||||||
|
|
|
@ -421,7 +421,6 @@ struct uiGrid {
|
||||||
|
|
||||||
- (void)append:(gridChild *)gc
|
- (void)append:(gridChild *)gc
|
||||||
{
|
{
|
||||||
NSLayoutPriority priority;
|
|
||||||
BOOL update;
|
BOOL update;
|
||||||
int oldn;
|
int oldn;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue