From f73a12d97bc4d89776ddfe5229981d70731ebd43 Mon Sep 17 00:00:00 2001 From: Dave Foster Date: Thu, 20 Sep 2007 22:36:52 -0400 Subject: [PATCH] Button proper freeing/newing. --- render/button.c | 35 ++++++++++++++++++++++++----------- render/button.h | 3 --- render/render.c | 16 ---------------- render/render.h | 3 --- 4 files changed, 24 insertions(+), 33 deletions(-) diff --git a/render/button.c b/render/button.c index 5d3f9203..399888dc 100644 --- a/render/button.c +++ b/render/button.c @@ -6,15 +6,12 @@ #include #include -static void RrButtonFreeReal(RrButton* b); - RrButton *RrButtonNew (const RrInstance *inst) { RrButton *out = NULL; out = g_new(RrButton, 1); out->inst = inst; - out->ref = 1; /* no need to alloc colors, set them null (for freeing later) */ out->focused_unpressed_color = NULL; @@ -60,14 +57,7 @@ RrButton *RrButtonNew (const RrInstance *inst) return out; } -void RrButtonFree(RrButton *b) -{ - b->ref--; - if (b->ref <= 0) - RrButtonFreeReal(b); -} - -void RrButtonFreeReal(RrButton* b) +void RrButtonFree(RrButton* b) { /* colors */ if (b->focused_unpressed_color) @@ -100,4 +90,27 @@ void RrButtonFreeReal(RrButton* b) RrColorFree(b->toggled_unfocused_unpressed_color); /* masks */ + if (mask) RrPixmapMaskFree(mask); + if (pressed_mask) RrPixmapMaskFree(pressed_mask); + if (disabled_mask) RrPixmapMaskFree(disabled_mask); + if (hover_mask) RrPixmapMaskFree(hover_mask); + if (toggled_mask) RrPixmapMaskFree(toggled_mask); + if (toggled_hover_mask) RrPixmapMaskFree(toggled_hover_mask); + if (toggled_pressed_mask) RrPixmapMaskFree(toggled_pressed_mask); + + /* appearances */ + RrAppearanceFree(a_focused_unpressed); + RrAppearanceFree(a_unfocused_unpressed); + RrAppearanceFree(a_focused_pressed); + RrAppearanceFree(a_unfocused_pressed); + RrAppearanceFree(a_disabled_focused); + RrAppearanceFree(a_disabled_unfocused); + RrAppearanceFree(a_hover_focused); + RrAppearanceFree(a_hover_unfocused); + RrAppearanceFree(a_toggled_focused_unpressed); + RrAppearanceFree(a_toggled_unfocused_unpressed); + RrAppearanceFree(a_toggled_focused_pressed); + RrAppearanceFree(a_toggled_unfocused_pressed); + RrAppearanceFree(a_toggled_hover_focused); + RrAppearanceFree(a_toggled_hover_unfocused); } diff --git a/render/button.h b/render/button.h index 75459642..59d04f94 100644 --- a/render/button.h +++ b/render/button.h @@ -10,9 +10,6 @@ struct _RrButton { const RrInstance *inst; - /* reference count */ - gint ref; - /* colors */ RrColor *focused_unpressed_color; RrColor *unfocused_unpressed_color; diff --git a/render/render.c b/render/render.c index c116162c..63b7e4c8 100644 --- a/render/render.c +++ b/render/render.c @@ -170,7 +170,6 @@ RrAppearance *RrAppearanceNew(const RrInstance *inst, gint numtex) out = g_new0(RrAppearance, 1); out->inst = inst; - out->ref = 1; out->textures = numtex; out->surface.bevel_light_adjust = 128; out->surface.bevel_dark_adjust = 64; @@ -187,15 +186,6 @@ void RrAppearanceAddTextures(RrAppearance *a, gint numtex) if (numtex) a->texture = g_new0(RrTexture, numtex); } -/* shallow copy means up the ref count and return it */ -RrAppearance *RrAppearanceCopyShallow(RrAppearance *orig) -{ - orig->ref++; - return orig; -} - -/* deep copy of orig, means reset ref to 1 on copy - * and copy each thing memwise. */ RrAppearance *RrAppearanceCopy(RrAppearance *orig) { RrSurface *spo, *spc; @@ -203,7 +193,6 @@ RrAppearance *RrAppearanceCopy(RrAppearance *orig) gint i; copy->inst = orig->inst; - copy->ref = 1; spo = &(orig->surface); spc = &(copy->surface); @@ -294,11 +283,6 @@ void RrAppearanceFree(RrAppearance *a) if (!a) return; - /* decrement ref counter */ - if (a->ref-- > 0) - return; - - /* if we're here we have no more refs to this appearance, free it */ RrSurface *p; if (a->pixmap != None) XFreePixmap(RrDisplay(a->inst), a->pixmap); if (a->xftdraw != NULL) XftDrawDestroy(a->xftdraw); diff --git a/render/render.h b/render/render.h index f6475eaa..c70f8cd2 100644 --- a/render/render.h +++ b/render/render.h @@ -191,8 +191,6 @@ struct _RrTexture { struct _RrAppearance { const RrInstance *inst; - gint ref; - RrSurface surface; gint textures; RrTexture *texture; @@ -246,7 +244,6 @@ gulong RrColorPixel (const RrColor *c); GC RrColorGC (RrColor *c); RrAppearance *RrAppearanceNew (const RrInstance *inst, gint numtex); -RrAppearance *RrAppearanceCopyShallow (RrAppearance *a); RrAppearance *RrAppearanceCopy (RrAppearance *a); void RrAppearanceFree (RrAppearance *a); void RrAppearanceAddTextures(RrAppearance *a, gint numtex); -- 2.34.1