26 #ifndef TGUI_BORDERS_HPP 27 #define TGUI_BORDERS_HPP 49 unsigned int topBorderHeight = 0,
50 unsigned int rightBorderWidth = 0,
51 unsigned int bottomBorderHeight = 0) :
52 left (leftBorderWidth),
53 top (topBorderHeight),
54 right (rightBorderWidth),
55 bottom(bottomBorderHeight)
77 #endif // TGUI_BORDERS_HPP Namespace that contains all TGUI functions and classes.
Definition: AnimatedPicture.hpp:33
Borders(unsigned int leftBorderWidth=0, unsigned int topBorderHeight=0, unsigned int rightBorderWidth=0, unsigned int bottomBorderHeight=0)
Default constructor.
Definition: Borders.hpp:48
unsigned int left
Width of the left border.
Definition: Borders.hpp:60
unsigned int top
Height of the top border.
Definition: Borders.hpp:63
unsigned int right
Width of the right border.
Definition: Borders.hpp:66
unsigned int bottom
Height of the bottom border.
Definition: Borders.hpp:69
Definition: Borders.hpp:35