2018-03-12 15:04:32 +00:00
|
|
|
#ifndef SLIC3R_GUI_BITMAP_CACHE_HPP
|
|
|
|
#define SLIC3R_GUI_BITMAP_CACHE_HPP
|
|
|
|
|
|
|
|
#include <wx/wxprec.h>
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include <wx/wx.h>
|
|
|
|
#endif
|
|
|
|
|
2018-12-06 11:52:28 +00:00
|
|
|
#include "libslic3r/libslic3r.h"
|
|
|
|
#include "libslic3r/Config.hpp"
|
2018-03-12 15:04:32 +00:00
|
|
|
|
|
|
|
#include "GUI.hpp"
|
|
|
|
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
|
|
|
|
class BitmapCache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BitmapCache() {}
|
|
|
|
~BitmapCache() { clear(); }
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
wxBitmap* find(const std::string &name) { auto it = m_map.find(name); return (it == m_map.end()) ? nullptr : it->second; }
|
|
|
|
const wxBitmap* find(const std::string &name) const { return const_cast<BitmapCache*>(this)->find(name); }
|
|
|
|
|
|
|
|
wxBitmap* insert(const std::string &name, size_t width, size_t height);
|
|
|
|
wxBitmap* insert(const std::string &name, const wxBitmap &bmp);
|
|
|
|
wxBitmap* insert(const std::string &name, const wxBitmap &bmp, const wxBitmap &bmp2);
|
|
|
|
wxBitmap* insert(const std::string &name, const wxBitmap &bmp, const wxBitmap &bmp2, const wxBitmap &bmp3);
|
2018-04-13 10:49:12 +00:00
|
|
|
wxBitmap* insert(const std::string &name, const std::vector<wxBitmap> &bmps) { return this->insert(name, &bmps.front(), &bmps.front() + bmps.size()); }
|
|
|
|
wxBitmap* insert(const std::string &name, const wxBitmap *begin, const wxBitmap *end);
|
2019-04-05 16:53:02 +00:00
|
|
|
wxBitmap* insert_raw_rgba(const std::string &bitmap_key, unsigned width, unsigned height, const unsigned char *raw_data, float scale = 1.0f);
|
2019-04-04 07:20:11 +00:00
|
|
|
|
2019-04-05 09:18:13 +00:00
|
|
|
// Load png from resources/icons. bitmap_key is given without the .png suffix. Bitmap will be rescaled to provided height/width if nonzero.
|
|
|
|
wxBitmap* load_png(const std::string &bitmap_key, unsigned int width = 0, unsigned int height = 0);
|
|
|
|
// Load svg from resources/icons. bitmap_key is given without the .svg suffix. SVG will be rasterized to provided height/width.
|
2019-04-05 16:53:02 +00:00
|
|
|
wxBitmap* load_svg(const std::string &bitmap_key, unsigned int width = 0, unsigned int height = 0, float scale = 1.0f);
|
2018-03-12 15:04:32 +00:00
|
|
|
|
|
|
|
static wxBitmap mksolid(size_t width, size_t height, unsigned char r, unsigned char g, unsigned char b, unsigned char transparency);
|
|
|
|
static wxBitmap mksolid(size_t width, size_t height, const unsigned char rgb[3]) { return mksolid(width, height, rgb[0], rgb[1], rgb[2], wxALPHA_OPAQUE); }
|
2018-04-12 14:46:17 +00:00
|
|
|
static wxBitmap mkclear(size_t width, size_t height) { return mksolid(width, height, 0, 0, 0, wxALPHA_TRANSPARENT); }
|
2018-03-12 15:04:32 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::map<std::string, wxBitmap*> m_map;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // GUI
|
|
|
|
} // Slic3r
|
|
|
|
|
|
|
|
#endif /* SLIC3R_GUI_BITMAP_CACHE_HPP */
|