ultimatepp/uppsrc/Draw/iml_header.h
mirek-fidler e8035690b9
libclang ide #94
- Assist/Autocomplete refactored to use libclang

Other minor changes:

- Removed CoWork Pipe
- .dli runtime loading of dynamic libraries now supports path to library in access function
- EditField::SetBackground
- RichTextView::GotoLabel variant with Gate for matching
- RichEdit::GotoLabel variant with Gate for matching
2022-09-16 10:31:14 +02:00

61 lines
1.5 KiB
C++

//#BLITZ_APPROVE
#define IMAGE_META(k, v)
#define IMAGE_SCAN(s)
#define IMAGE_PACKED(n, d)
#define PREMULTIPLIED
#define IMAGE_BEGIN_DATA
#define IMAGE_DATA(a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bb,bc,bd,be,bf)
#define IMAGE_END_DATA(n, c)
class IMAGECLASS {
public:
#define IMAGE_BEGIN(n) I_##n,
#define IMAGE_ID(n) I_##n,
enum {
#include IMAGEFILE
COUNT
};
#undef IMAGE_BEGIN
#undef IMAGE_ID
public:
static UPP::Iml& Iml();
static void Register__() { Register(ASSTRING(IMAGECLASS), Iml()); }
static int Find(const UPP::String& s);
static int Find(const char *s);
static int GetCount() { return Iml().GetCount(); }
static UPP::String GetId(int i) { return Iml().GetId(i); }
static UPP::Image Get(int i);
static UPP::Image Get(const char *s);
static UPP::Image Get(const UPP::String& s);
static void Set(int i, const UPP::Image& m);
static void Set(const char *s, const UPP::Image& m);
static void Reset() { Iml().Reset(); }
#define IMAGE_BEGIN(n) static UPP::Image n() { return Get(I_##n); }
#define IMAGE_ID(n) static UPP::Image n() { return Get(I_##n); }
#include IMAGEFILE
#undef IMAGE_BEGIN
#undef IMAGE_ID
};
#undef IMAGE_SCAN
#undef IMAGE_PACKED
#undef IMAGE_META
#undef IMAGE_BEGIN_DATA
#undef IMAGE_END_DATA
#undef IMAGE_DATA
#ifndef IMAGE_KEEP
#undef IMAGECLASS
#undef IMAGEFILE
#endif