Files
myink/TextBlock_t.hpp
stubbfelnewpc 443f999d77 add testblock
2020-05-06 00:07:20 +02:00

20 lines
393 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;
sFONT & font;
} TextBlockStyleProperties, *TextBlockStylePropertiesPtr;
//}}
#endif