|
@@ -11,10 +11,10 @@ std::string Boxes::top(void) {
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
|
|
|
|
line.append(boxcolor);
|
|
line.append(boxcolor);
|
|
- line.append(bs.top_left);
|
|
|
|
- for (int x = 0; x < width_; ++x)
|
|
|
|
- line.append(bs.top);
|
|
|
|
- line.append(bs.top_right);
|
|
|
|
|
|
+ line.append(1, bs.top_left);
|
|
|
|
+ // for (int x = 0; x < width_; ++x)
|
|
|
|
+ line.append(width_, bs.top);
|
|
|
|
+ line.append(1, bs.top_right);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
if (newline_)
|
|
if (newline_)
|
|
line.append(nl);
|
|
line.append(nl);
|
|
@@ -25,10 +25,10 @@ std::string Boxes::middle(void) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
line.append(boxcolor);
|
|
line.append(boxcolor);
|
|
- line.append(bs.middle_left);
|
|
|
|
- for (int x = 0; x < width_; ++x)
|
|
|
|
- line.append(bs.top);
|
|
|
|
- line.append(bs.middle_right);
|
|
|
|
|
|
+ line.append(1, bs.middle_left);
|
|
|
|
+ // for (int x = 0; x < width_; ++x)
|
|
|
|
+ line.append(width_, bs.top);
|
|
|
|
+ line.append(1, bs.middle_right);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
if (newline_)
|
|
if (newline_)
|
|
line.append(nl);
|
|
line.append(nl);
|
|
@@ -39,7 +39,7 @@ std::string Boxes::row(std::string &text) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
line.append(boxcolor);
|
|
line.append(boxcolor);
|
|
- line.append(bs.side);
|
|
|
|
|
|
+ line.append(1, bs.side);
|
|
if (boxcolor != textcolor) {
|
|
if (boxcolor != textcolor) {
|
|
line.append(reset);
|
|
line.append(reset);
|
|
line.append(textcolor);
|
|
line.append(textcolor);
|
|
@@ -49,7 +49,7 @@ std::string Boxes::row(std::string &text) {
|
|
line.append(reset);
|
|
line.append(reset);
|
|
line.append(boxcolor);
|
|
line.append(boxcolor);
|
|
}
|
|
}
|
|
- line.append(bs.side);
|
|
|
|
|
|
+ line.append(1, bs.side);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
if (newline_)
|
|
if (newline_)
|
|
line.append(nl);
|
|
line.append(nl);
|
|
@@ -60,10 +60,10 @@ std::string Boxes::bottom(void) {
|
|
std::string line;
|
|
std::string line;
|
|
box_style &bs = boxes[style_];
|
|
box_style &bs = boxes[style_];
|
|
line.append(boxcolor);
|
|
line.append(boxcolor);
|
|
- line.append(bs.bottom_left);
|
|
|
|
- for (int x = 0; x < width_; ++x)
|
|
|
|
- line.append(bs.top);
|
|
|
|
- line.append(bs.bottom_right);
|
|
|
|
|
|
+ line.append(1, bs.bottom_left);
|
|
|
|
+ // for (int x = 0; x < width_; ++x)
|
|
|
|
+ line.append(width_, bs.top);
|
|
|
|
+ line.append(1, bs.bottom_right);
|
|
line.append(reset);
|
|
line.append(reset);
|
|
if (newline_)
|
|
if (newline_)
|
|
line.append(nl);
|
|
line.append(nl);
|