Chat-O-Matic/application/ImageCache.cpp

112 lines
2.1 KiB
C++
Raw Normal View History

/*
2011-12-03 16:38:03 -06:00
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2021, Jaidyn Levesque. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Andrea Anzani, andrea.anzani@gmail.com
*/
#include "ImageCache.h"
#include <AppDefs.h>
#include <Bitmap.h>
#include <Debug.h>
#include <Resources.h>
#include <TranslationUtils.h>
#include <libinterface/BitmapUtils.h>
2021-06-20 12:44:20 -05:00
#include "AppResources.h"
#include "Utils.h"
2010-05-20 16:31:55 -05:00
ImageCache* ImageCache::fInstance = NULL;
ImageCache::ImageCache()
{
_LoadResource(kPersonIcon, "kPersonIcon");
_LoadResource(kOnePersonIcon, "kOnePersonIcon");
_LoadResource(kTwoPeopleIcon, "kTwoPeopleIcon");
_LoadResource(kThreePeopleIcon, "kThreePeopleIcon");
_LoadResource(kFourPeopleIcon, "kFourPeopleIcon");
_LoadResource(kMorePeopleIcon, "kMorePeopleIcon");
2021-07-24 20:54:46 -05:00
_LoadResource(kAwayReplicant, "kAwayReplicant");
_LoadResource(kBusyReplicant, "kBusyReplicant");
_LoadResource(kOfflineReplicant, "kOfflineReplicant");
_LoadResource(kOnlineReplicant, "kOnlineReplicant");
}
ImageCache::~ImageCache()
{
2010-05-20 16:31:55 -05:00
while (fBitmaps.CountItems()) {
BBitmap* bit = fBitmaps.ValueFor(0);
delete bit;
}
}
ImageCache*
ImageCache::Get()
{
2021-08-01 06:37:25 -05:00
if (fInstance == NULL)
2010-05-20 16:31:55 -05:00
fInstance = new ImageCache();
return fInstance;
}
BBitmap*
ImageCache::GetImage(const char* keyName)
{
// Loads the bitmap if found
bool found;
BBitmap* bitmap = fBitmaps.ValueFor(BString(keyName), &found);
if (found == true)
return bitmap;
return NULL;
}
void
ImageCache::AddImage(BString name, BBitmap* which)
{
fBitmaps.AddItem(name, which);
}
void
ImageCache::DeleteImage(BString name)
{
BBitmap* bitmap = fBitmaps.ValueFor(name);
2010-05-20 16:31:55 -05:00
if (bitmap) {
fBitmaps.RemoveItemFor(name);
delete bitmap;
}
}
void
ImageCache::Release()
{
2010-05-20 16:31:55 -05:00
if (fInstance != NULL) {
delete fInstance;
fInstance = NULL;
}
}
void
ImageCache::_LoadResource(int identifier, const char* key)
{
2021-08-01 06:37:25 -05:00
BResources res = ChatResources();
if (res.InitCheck() != B_OK)
return;
BBitmap* bitmap = IconFromResources(&res, identifier, B_LARGE_ICON);
if (bitmap != NULL && bitmap->IsValid() == true)
fBitmaps.AddItem(BString(key), bitmap);
}