Cobbletext  0.2.0
Complex text layout and rendering engine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
text_alignment.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <stdint.h>
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
21 typedef uint8_t CobbletextTextAlignment;
22 
26 #define COBBLETEXT_TEXT_ALIGNMENT_NOT_SPECIFIED 0
27 
31 #define COBBLETEXT_TEXT_ALIGNMENT_START 1
32 
36 #define COBBLETEXT_TEXT_ALIGNMENT_END 2
37 
41 #define COBBLETEXT_TEXT_ALIGNMENT_LEFT 3
42 
46 #define COBBLETEXT_TEXT_ALIGNMENT_RIGHT 4
47 
51 #define COBBLETEXT_TEXT_ALIGNMENT_CENTER 5
52 
53 #ifdef __cplusplus
54 }
55 #endif
CobbletextTextAlignment
uint8_t CobbletextTextAlignment
Alignment of text within a line.
Definition: text_alignment.h:21