|
@@ -1,20 +1,18 @@
|
|
#include "boxes.h"
|
|
#include "boxes.h"
|
|
|
|
|
|
-Boxes::Boxes(int size, int style, int color, bool newline) {
|
|
|
|
- size_ = size;
|
|
|
|
|
|
+Boxes::Boxes(int width, int style, bool newline) {
|
|
|
|
+ width_ = width;
|
|
style_ = style;
|
|
style_ = style;
|
|
- color_ = color;
|
|
|
|
newline_ = newline;
|
|
newline_ = newline;
|
|
}
|
|
}
|
|
|
|
|
|
std::string Boxes::top(void) {
|
|
std::string Boxes::top(void) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
- const char *clr = colors[color_];
|
|
|
|
|
|
|
|
- line.append(clr);
|
|
|
|
|
|
+ line.append(boxcolor);
|
|
line.append(bs.top_left);
|
|
line.append(bs.top_left);
|
|
- for (int x = 0; x < size_; ++x)
|
|
|
|
|
|
+ for (int x = 0; x < width_; ++x)
|
|
line.append(bs.top);
|
|
line.append(bs.top);
|
|
line.append(bs.top_right);
|
|
line.append(bs.top_right);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
@@ -26,43 +24,44 @@ std::string Boxes::top(void) {
|
|
std::string Boxes::middle(void) {
|
|
std::string Boxes::middle(void) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
- const char *clr = colors[color_];
|
|
|
|
- line.append(clr);
|
|
|
|
|
|
+ line.append(boxcolor);
|
|
line.append(bs.middle_left);
|
|
line.append(bs.middle_left);
|
|
- for (int x = 0; x < size_; ++x)
|
|
|
|
|
|
+ for (int x = 0; x < width_; ++x)
|
|
line.append(bs.top);
|
|
line.append(bs.top);
|
|
line.append(bs.middle_right);
|
|
line.append(bs.middle_right);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
if (newline_)
|
|
if (newline_)
|
|
line.append(nl);
|
|
line.append(nl);
|
|
-
|
|
|
|
return line;
|
|
return line;
|
|
}
|
|
}
|
|
|
|
|
|
std::string Boxes::row(std::string &text) {
|
|
std::string Boxes::row(std::string &text) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
- const char *clr = colors[color_];
|
|
|
|
- line.append(clr);
|
|
|
|
|
|
+ line.append(boxcolor);
|
|
line.append(bs.side);
|
|
line.append(bs.side);
|
|
- line.append(reset);
|
|
|
|
|
|
+ if (boxcolor != textcolor) {
|
|
|
|
+ line.append(reset);
|
|
|
|
+ line.append(textcolor);
|
|
|
|
+ }
|
|
line.append(text);
|
|
line.append(text);
|
|
- line.append(clr);
|
|
|
|
|
|
+ if (textcolor != boxcolor) {
|
|
|
|
+ line.append(reset);
|
|
|
|
+ line.append(boxcolor);
|
|
|
|
+ }
|
|
line.append(bs.side);
|
|
line.append(bs.side);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
if (newline_)
|
|
if (newline_)
|
|
line.append(nl);
|
|
line.append(nl);
|
|
-
|
|
|
|
return line;
|
|
return line;
|
|
}
|
|
}
|
|
|
|
|
|
std::string Boxes::bottom(void) {
|
|
std::string Boxes::bottom(void) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
- const char *clr = colors[color_];
|
|
|
|
- line.append(clr);
|
|
|
|
|
|
+ line.append(boxcolor);
|
|
line.append(bs.bottom_left);
|
|
line.append(bs.bottom_left);
|
|
- for (int x = 0; x < size_; ++x)
|
|
|
|
|
|
+ for (int x = 0; x < width_; ++x)
|
|
line.append(bs.top);
|
|
line.append(bs.top);
|
|
line.append(bs.bottom_right);
|
|
line.append(bs.bottom_right);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
@@ -72,20 +71,15 @@ std::string Boxes::bottom(void) {
|
|
return line;
|
|
return line;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-std::tuple<std::string, std::string, std::string>
|
|
|
|
-Boxes::alert(std::string message, int color, int style, int size) {
|
|
|
|
- size_t len = size;
|
|
|
|
- if (len == 0) {
|
|
|
|
- len = message.length();
|
|
|
|
- } else {
|
|
|
|
- while (message.length() < len)
|
|
|
|
- message.append(" ");
|
|
|
|
- }
|
|
|
|
- Boxes abox(len, style, color);
|
|
|
|
- std::string s1, s2, s3;
|
|
|
|
- s1 = abox.top();
|
|
|
|
- s2 = abox.row(message);
|
|
|
|
- s3 = abox.bottom();
|
|
|
|
- return std::make_tuple(s1, s2, s3);
|
|
|
|
|
|
+std::array<std::string, 3> Boxes::alert(std::string message, std::string bcolor,
|
|
|
|
+ std::string tcolor, int width,
|
|
|
|
+ int style, bool newline) {
|
|
|
|
+ std::array<std::string, 3> results;
|
|
|
|
+ Boxes abox(width, style, newline);
|
|
|
|
+ abox.boxcolor = bcolor;
|
|
|
|
+ abox.textcolor = tcolor;
|
|
|
|
+ results[0] = abox.top();
|
|
|
|
+ results[1] = abox.row(message);
|
|
|
|
+ results[2] = abox.bottom();
|
|
|
|
+ return results;
|
|
}
|
|
}
|