cxWidgets 1.0
cxBorderChars.h
Go to the documentation of this file.
1// Copyright (c) 2026 E. Oulashin
2#ifndef __CXBORDERCHARS_H__
3#define __CXBORDERCHARS_H__
4
16#include "cxBorderStyles.h"
17#include <ncurses.h>
18
19namespace cx {
20
28{
30
31 chtype left = ACS_VLINE;
32 chtype right = ACS_VLINE;
33 chtype top = ACS_HLINE;
34 chtype bottom = ACS_HLINE;
35 chtype topLeft = ACS_ULCORNER;
36 chtype topRight = ACS_URCORNER;
37 chtype bottomLeft = ACS_LLCORNER;
38 chtype bottomRight = ACS_LRCORNER;
39};
40
41} // namespace cx
42
43#endif
cxBorderChars.h - Defines border characters to be used in drawing a box (i.e., in cxWindow and all it...
Definition cxApp.cpp:5
eBorderStyle
Definition cxBorderStyles.h:26
@ eBS_SINGLE_LINE
Definition cxBorderStyles.h:28
Definition cxBorderChars.h:28
chtype bottomLeft
Definition cxBorderChars.h:37
chtype topRight
Definition cxBorderChars.h:36
chtype topLeft
Definition cxBorderChars.h:35
chtype bottomRight
Definition cxBorderChars.h:38
chtype right
Definition cxBorderChars.h:32
chtype top
Definition cxBorderChars.h:33
chtype left
Definition cxBorderChars.h:31
chtype bottom
Definition cxBorderChars.h:34