1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

Add a CBitmap class. The C is for Courage.

This commit is contained in:
Andreas Kling 2018-10-12 12:49:45 +02:00
parent e23ac56017
commit c7463aad11
8 changed files with 63 additions and 18 deletions

24
Widgets/CBitmap.h Normal file
View file

@ -0,0 +1,24 @@
#pragma once
#include "Size.h"
#include <AK/Retainable.h>
#include <AK/RetainPtr.h>
class CBitmap : public Retainable<CBitmap> {
public:
static RetainPtr<CBitmap> createFromASCII(const char* asciiData, unsigned width, unsigned height);
~CBitmap();
const char* bits() const { return m_bits; }
Size size() const { return m_size; }
unsigned width() const { return m_size.width(); }
unsigned height() const { return m_size.height(); }
private:
CBitmap(const char* b, unsigned w, unsigned h);
const char* m_bits { nullptr };
Size m_size;
};