20 lines
399 B
C++
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 |