boxes.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. /*
  11. I'm not sure if I want to try to store the color information in this or not.
  12. It might be easier to let this do boxes, and let something else do colors.
  13. */
  14. class Boxes {
  15. struct box_style {
  16. const char *top_left;
  17. const char *top_right;
  18. const char *top;
  19. const char *side;
  20. const char *bottom_left;
  21. const char *bottom_right;
  22. const char *middle_left;
  23. const char *middle_right;
  24. } boxes[4] = {
  25. {"\xda", "\xbf", "\xc4", "\xb3", "\xc0", "\xd9", "\xc3", "\xb4"},
  26. {"\xc9", "\xbb", "\xcd", "\xba", "\xc8", "\xbc", "\xcc", "\xb9"},
  27. {"\xd6", "\xb8", "\xcd", "\xb3", "\xd4", "\xbe", "\xc6", "\xb5"},
  28. {"\xd6", "\xb7", "\xc4", "\xba", "\xd3", "\xbd", "\xc7", "\xb6"}};
  29. int style_;
  30. int color_;
  31. int size_;
  32. bool newline_;
  33. const char *nl = "\n\r";
  34. const char *reset = "\x1b[0m";
  35. // Black Red Green Yellow Blue Magenta Cyan White
  36. const char *colors[8] = {"\x1b[1;33;40m", "\1b[1;33;41m", "\x1b[1;33;42m",
  37. "\x1b[1;33;43m", "\x1b[1;33;44m", "\x1b[1;33;45m",
  38. "\x1b[1;33;46m", "\x1b[1;33;47m"};
  39. public:
  40. Boxes(int size, int style = 1, int color = 1, bool newline = true);
  41. std::string top(void);
  42. std::string middle(void);
  43. std::string row(std::string &line);
  44. std::string bottom(void);
  45. static std::tuple<std::string, std::string, std::string>
  46. alert(std::string message, int color, int style = 1, int size = 0);
  47. };
  48. #endif