From 65f078102a9cf21f7162dc1ef06e19da1c626337 Mon Sep 17 00:00:00 2001 From: emersion Date: Fri, 17 Jun 2016 22:23:33 +0200 Subject: [PATCH 1/3] Adds uiGridDelete for unix --- ui.h | 1 + unix/grid.c | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/ui.h b/ui.h index 1ab01e91..a429cb4c 100644 --- a/ui.h +++ b/ui.h @@ -655,6 +655,7 @@ typedef struct uiGrid uiGrid; #define uiGrid(this) ((uiGrid *) (this)) _UI_EXTERN void uiGridAppend(uiGrid *g, uiControl *c, int left, int top, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign); _UI_EXTERN void uiGridInsertAt(uiGrid *g, uiControl *c, uiControl *existing, uiAt at, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign); +_UI_EXTERN void uiGridDelete(uiGrid *g, int index); _UI_EXTERN int uiGridPadded(uiGrid *g); _UI_EXTERN void uiGridSetPadded(uiGrid *g, int padded); _UI_EXTERN uiGrid *uiNewGrid(void); diff --git a/unix/grid.c b/unix/grid.c index 6d9813b3..423bc3c8 100644 --- a/unix/grid.c +++ b/unix/grid.c @@ -108,6 +108,25 @@ void uiGridInsertAt(uiGrid *g, uiControl *c, uiControl *existing, uiAt at, int x g_array_append_val(g->children, gc); } +void uiGridDelete(uiGrid *g, int index) +{ + struct gridChild *gc; + GtkWidget *widget; + + gc = ctrl(g, index); + widget = GTK_WIDGET(uiControlHandle(gc->c)); + + uiControlSetParent(gc->c, NULL); + uiUnixControlSetContainer(uiUnixControl(gc->c), g->container, TRUE); + + gtk_widget_set_hexpand(widget, gc->oldhexpand); + gtk_widget_set_halign(widget, gc->oldhalign); + gtk_widget_set_vexpand(widget, gc->oldvexpand); + gtk_widget_set_valign(widget, gc->oldvalign); + + g_array_remove_index(g->children, index); +} + int uiGridPadded(uiGrid *g) { return g->padded; From 8ae27ee3be7ad0f3a339c4107459603bb68fa5b8 Mon Sep 17 00:00:00 2001 From: emersion Date: Fri, 17 Jun 2016 22:32:31 +0200 Subject: [PATCH 2/3] Adds uiGridDelete for windows --- windows/grid.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/windows/grid.cpp b/windows/grid.cpp index c63cd1e4..d81d878e 100644 --- a/windows/grid.cpp +++ b/windows/grid.cpp @@ -627,6 +627,19 @@ void uiGridInsertAt(uiGrid *g, uiControl *c, uiControl *existing, uiAt at, int x add(g, gc); } +void uiGridDelete(uiGrid *g, int index) +{ + uiControl *c; + + c = (*(g->children))[index]->c; + uiControlSetParent(c, NULL); + uiWindowsControlSetParentHWND(uiWindowsControl(c), NULL); + g->children->erase(g->children->begin() + index); + gridRecomputeMinMax(g); + gridArrangeChildren(g); + uiWindowsControlMinimumSizeChanged(uiWindowsControl(g)); +} + int uiGridPadded(uiGrid *g) { return g->padded; From 8badf407fec1513cf124a5529c94c0f62770212b Mon Sep 17 00:00:00 2001 From: emersion Date: Fri, 17 Jun 2016 22:39:58 +0200 Subject: [PATCH 3/3] Tried to add uiGridDelete for darwin --- darwin/grid.m | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/darwin/grid.m b/darwin/grid.m index 5e391fd5..c06a09a8 100644 --- a/darwin/grid.m +++ b/darwin/grid.m @@ -499,6 +499,35 @@ struct uiGrid { [self append:gc]; } +- (void)delete:(int)n +{ + gridChild *gc; + BOOL update; + int oldnh, oldnv; + + gc = (gridChild *) [self->children objectAtIndex:n]; + + uiControlSetParent(gc.c, NULL); + uiDarwinControlSetSuperview(uiDarwinControl(gc.c), nil); + + uiDarwinControlSetHuggingPriority(uiDarwinControl(gc.c), gc.oldHorzHuggingPri, NSLayoutConstraintOrientationHorizontal); + uiDarwinControlSetHuggingPriority(uiDarwinControl(gc.c), gc.oldVertHuggingPri, NSLayoutConstraintOrientationVertical); + + oldnh = [self nhexpand]; + oldnv = [self nvexpand]; + [self->children removeObjectAtIndex:n]; + + update = NO; + if (gc.hexpand) + if (oldnh == 0) + update = YES; + if (gc.vexpand) + if (oldnv == 0) + update = YES; + if (update) + uiDarwinNotifyEdgeHuggingChanged(uiDarwinControl(self->g)); +} + - (int)isPadded { return self->padded;