Przeglądaj źródła

Add helper to set all line bg color in panel.

Steve Thielemann 3 lat temu
rodzic
commit
ea476e2b58
2 zmienionych plików z 12 dodań i 0 usunięć
  1. 1 0
      door.h
  2. 11 0
      panel.cpp

+ 1 - 0
door.h

@@ -624,6 +624,7 @@ public:
   void update(void);
   door::Goto gotoEnd(void);
   std::unique_ptr<Line> spacer_line(bool single);
+  void lineSetBack(ANSIColor back);
   friend std::ostream &operator<<(std::ostream &os, const Panel &p);
 };
 

+ 11 - 0
panel.cpp

@@ -291,6 +291,17 @@ door::Goto Panel::gotoEnd(void) {
   return door::Goto(col, row);
 }
 
+/**
+ * @brief Set background of all lines in the panel.
+ *
+ * @param back
+ */
+void Panel::lineSetBack(ANSIColor back) {
+  for (auto &line : lines) {
+    line->setColor(back);
+  }
+}
+
 /**
  * @brief Create a spacer line using block drawing characters.
  *