diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Winamp/SkinBitmapElement.cpp | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Winamp/SkinBitmapElement.cpp')
-rw-r--r-- | Src/Winamp/SkinBitmapElement.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Src/Winamp/SkinBitmapElement.cpp b/Src/Winamp/SkinBitmapElement.cpp new file mode 100644 index 00000000..51226954 --- /dev/null +++ b/Src/Winamp/SkinBitmapElement.cpp @@ -0,0 +1,28 @@ +#include "api.h" +#include "SkinBitmapElement.h" +#include "PaletteManager.h" + +SkinBitmapElement::SkinBitmapElement(const wchar_t *_id, const wchar_t *_filename, const wchar_t *_rootpath, int _x, int _y, int _w, int _h, ifc_xmlreaderparams *pars, int script_id, int secondarycounter, const wchar_t *colorgrp) + : filename(_filename), rootpath(_rootpath), x(_x), y(_y), w(_w), h(_h), + scriptid(script_id), seccount(secondarycounter), colorgroup(colorgrp), + region(NULL) +{ + id = _id; + + if (pars) + { + for (size_t i = 0;i != pars->getNbItems();i++) + params.addItem(pars->getItemName(i), pars->getItemValue(i)); + } +} + +SkinBitmapElement::~SkinBitmapElement() +{ + if (region != NULL) WASABI_API_PALETTE->garbageCollectRegionServer(region); + region = NULL; +} + +SkinItem *SkinBitmapElement::getAncestor() +{ + return WASABI_API_PALETTE->getBitmapAncestor(this); +} |