mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-02-01 08:28:42 +03:00
38 lines
734 B
C++
38 lines
734 B
C++
|
|
#ifndef slic3r_ThumbnailData_hpp_
|
||
|
|
#define slic3r_ThumbnailData_hpp_
|
||
|
|
|
||
|
|
#include <vector>
|
||
|
|
#include "libslic3r/Point.hpp"
|
||
|
|
|
||
|
|
namespace Slic3r {
|
||
|
|
|
||
|
|
struct ThumbnailData
|
||
|
|
{
|
||
|
|
unsigned int width;
|
||
|
|
unsigned int height;
|
||
|
|
std::vector<unsigned char> pixels;
|
||
|
|
|
||
|
|
ThumbnailData() { reset(); }
|
||
|
|
void set(unsigned int w, unsigned int h);
|
||
|
|
void reset();
|
||
|
|
|
||
|
|
bool is_valid() const;
|
||
|
|
};
|
||
|
|
|
||
|
|
using ThumbnailsList = std::vector<ThumbnailData>;
|
||
|
|
|
||
|
|
struct ThumbnailsParams
|
||
|
|
{
|
||
|
|
const Vec2ds sizes;
|
||
|
|
bool printable_only;
|
||
|
|
bool parts_only;
|
||
|
|
bool show_bed;
|
||
|
|
bool transparent_background;
|
||
|
|
};
|
||
|
|
|
||
|
|
typedef std::function<ThumbnailsList(const ThumbnailsParams&)> ThumbnailsGeneratorCallback;
|
||
|
|
|
||
|
|
} // namespace Slic3r
|
||
|
|
|
||
|
|
#endif // slic3r_ThumbnailData_hpp_
|