Browse Source

Added ability to change fg/bg of ANSIColor object.

Steve Thielemann 4 năm trước cách đây
mục cha
commit
ab39f6a9da
2 tập tin đã thay đổi với 14 bổ sung0 xóa
  1. 11 0
      ansicolor.cpp
  2. 3 0
      door.h

+ 11 - 0
ansicolor.cpp

@@ -147,6 +147,17 @@ bool ANSIColor::operator!=(const ANSIColor &c) const {
            (blink == c.blink) and (inverse == c.inverse));
 }
 
+void ANSIColor::setFg(COLOR f) { fg = f; }
+void ANSIColor::setBg(COLOR b) { bg = b; }
+void ANSIColor::attr(ATTR a) {
+  // first, clear all attributes
+  reset = 0;
+  bold = 0;
+  blink = 0;
+  inverse = 0;
+  Attr(a);
+}
+
 /**
  * Output the full ANSI codes for attributes and color.
  * This does not look at the previous values.

+ 3 - 0
door.h

@@ -156,6 +156,9 @@ public:
   ANSIColor &Attr(ATTR a);
   bool operator==(const ANSIColor &c) const;
   bool operator!=(const ANSIColor &c) const;
+  void setFg(COLOR f);
+  void setBg(COLOR b);
+  void attr(ATTR a);
 
   /**
    * @return std::string