boxes.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef BOXES_H
  2. #define BOXES_H
  3. #include <string>
  4. #include <tuple>
  5. enum { NORMAL = 0, BRIGHT = 1 } ATTR;
  6. enum {
  7. } FORE;
  8. enum {
  9. } BACK;
  10. class Boxes {
  11. struct box_style {
  12. const char *top_left;
  13. const char *top_right;
  14. const char *top;
  15. const char *side;
  16. const char *bottom_left;
  17. const char *bottom_right;
  18. const char *middle_left;
  19. const char *middle_right;
  20. } boxes[4] = {
  21. {"\xda", "\xbf", "\xc4", "\xb3", "\xc0", "\xd9", "\xc3", "\xb4"},
  22. {"\xc9", "\xbb", "\xcd", "\xba", "\xc8", "\xbc", "\xcc", "\xb9"},
  23. {"\xd6", "\xb8", "\xcd", "\xb3", "\xd4", "\xbe", "\xc6", "\xb5"},
  24. {"\xd6", "\xb7", "\xc4", "\xba", "\xd3", "\xbd", "\xc7", "\xb6"}};
  25. int style_;
  26. int color_;
  27. int size_;
  28. bool newline_;
  29. const char *nl = "\n\r";
  30. const char *reset = "\x1b[0m";
  31. // Black Red Green Yellow Blue Magenta Cyan White
  32. const char *colors[8] = {"\x1b[1;33;40m", "\1b[1;33;41m", "\x1b[1;33;42m",
  33. "\x1b[1;33;43m", "\x1b[1;33;44m", "\x1b[1;33;45m",
  34. "\x1b[1;33;46m", "\x1b[1;33;47m"};
  35. public:
  36. Boxes(int size, int style = 1, int color = 1, bool newline = true);
  37. std::string top(void);
  38. std::string middle(void);
  39. std::string row(std::string &line);
  40. std::string bottom(void);
  41. /*
  42. std::tuple<std::string, std::string, std::string>
  43. alert(std::string message, int size, int color, int style = 1);
  44. */
  45. };
  46. #endif