Files
myink/TextBlock_t.hpp
2020-05-14 20:06:50 +02:00

20 lines
399 B
C++

#ifndef TEXT_BLOCK_T_H
#define TEXT_BLOCK_T_H
#include <fonts.h>
#include "Color_t.hpp"
//namespace myink { namespace ui {
class TextBlock;
typedef TextBlock * TextBlockPtr;
typedef struct TextBlockStyleProperties_t
{
Color background_color;
Color font_color;
const sFONT & font;
} TextBlockStyleProperties, *TextBlockStylePropertiesPtr;
//}}
#endif