]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/bmploader.h
Add decorations for things which should be exported from the library
[libs/gui.git] / source / graphics / bmploader.h
1 #ifndef MSP_GRAPHICS_BMPLOADER_H_
2 #define MSP_GRAPHICS_BMPLOADER_H_
3
4 #include <msp/graphics/imageloader.h>
5 #include "mspgui_api.h"
6
7 namespace Msp {
8 namespace Graphics {
9
10 class MSPGUI_API BmpLoader: public ImageLoader
11 {
12 private:
13         IO::Base &io;
14         unsigned sig_bytes = 0;
15         bool invert_row_order = false;
16
17 public:
18         BmpLoader(IO::Base &, unsigned = 0);
19
20         static unsigned get_signature_size() { return 2; }
21         static bool detect(const std::string &);
22
23         void load_headers_(Image::Data &) override;
24         void load_pixels_(Image::Data &) override;
25 };
26
27 } // namespace Graphics
28 } // namespace Msp
29
30 #endif