Pārlūkot izejas kodu

Panel::update(void).

Steve Thielemann 4 gadi atpakaļ
vecāks
revīzija
9a5ab33648
3 mainītis faili ar 29 papildinājumiem un 24 dzēšanām
  1. 4 3
      door.h
  2. 4 3
      lines.cpp
  3. 21 18
      panel.cpp

+ 4 - 3
door.h

@@ -471,11 +471,11 @@ private:
   updateFunction updater;
 
 public:
-  Line(std::string &txt, int width = 0);
+  Line(const std::string &txt, int width = 0);
   Line(const char *txt, int width = 0);
-  Line(std::string &txt, int width, ANSIColor c);
+  Line(const std::string &txt, int width, ANSIColor c);
   Line(const char *txt, int width, ANSIColor c);
-  Line(std::string &txt, int width, renderFunction rf);
+  Line(const std::string &txt, int width, renderFunction rf);
   Line(const char *txt, int width, renderFunction rf);
   Line(const Line &rhs);
   // ~Line();
@@ -598,6 +598,7 @@ public:
    */
   bool update(Door &d);
   void update(Door &d, int line);
+  void update(void);
   door::Goto gotoEnd(void);
 
   friend std::ostream &operator<<(std::ostream &os, const Panel &p);

+ 4 - 3
lines.cpp

@@ -109,13 +109,14 @@ std::ostream &operator<<(std::ostream &os, const MultiLine &ml) {
  * @param txt std::string
  * @param width int
  */
-Line::Line(std::string &txt, int width) : text{txt} {
+Line::Line(const std::string &txt, int width) : text{txt} {
   if (width)
     makeWidth(width);
   hasColor = false;
 }
 
-Line::Line(std::string &txt, int width, ANSIColor c) : text{txt}, color{c} {
+Line::Line(const std::string &txt, int width, ANSIColor c)
+    : text{txt}, color{c} {
   if (width)
     makeWidth(width);
   hasColor = true;
@@ -127,7 +128,7 @@ Line::Line(const char *txt, int width, ANSIColor c) : text{txt}, color{c} {
   hasColor = true;
 }
 
-Line::Line(std::string &txt, int width, renderFunction rf)
+Line::Line(const std::string &txt, int width, renderFunction rf)
     : text{txt}, render{rf} {
   if (width)
     makeWidth(width);

+ 21 - 18
panel.cpp

@@ -250,6 +250,12 @@ void Panel::update(Door &d, int line) {
   d << *l;
 }
 
+void Panel::update(void) {
+  for (auto &line : lines) {
+    line->update();
+  }
+}
+
 door::Goto Panel::gotoEnd(void) {
   int row = y;
   int style = (int)border_style;
@@ -372,8 +378,8 @@ std::function<void(Door &d, std::string &)> Menu::defaultSelectedColorizer =
                         ANSIColor(COLOR::BLUE, COLOR::WHITE),
                         ANSIColor(COLOR::BLUE, COLOR::WHITE));
 
-std::function<void(Door &d, std::string &)> Menu::defaultUnselectedColorizer =
-    makeColorizer(ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
+std::function<void(Door &d, std::string &)> Menu::defaultUnselectedColorizer
+= makeColorizer(ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
                   ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
                   ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
                   ANSIColor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD));
@@ -396,13 +402,15 @@ Menu::Menu(int x, int y, int width) : Panel(x, y, width) {
   /* makeColorizer(Color(Colors::BLUE, Colors::WHITE, 0),
                                    Color(Colors::BLUE, Colors::WHITE, 0),
                                    Color(Colors::BLUE, Colors::WHITE, 0),
-                                   Color(Colors::BLUE, Colors::WHITE, 0))); */
+                                   Color(Colors::BLUE, Colors::WHITE, 0)));
+   */
   setRender(false, defaultUnselectedRender);
   // setColorizer(false, defaultUnselectedColorizer);
   /* makeColorizer(Color(Colors::LWHITE, Colors::BLUE, 0),
                                     Color(Colors::LWHITE, Colors::BLUE),
                                     Color(Colors::LWHITE, Colors::BLUE, 0),
-                                    Color(Colors::LYELLOW, Colors::BLUE))); */
+                                    Color(Colors::LYELLOW, Colors::BLUE)));
+   */
   chosen = 0;
 }
 
@@ -459,9 +467,9 @@ char Menu::which(int d) { return options[d]; }
 
 /*
 void Menu::setColorizer(bool selected,
-                        std::function<void(Door &d, std::string &)> colorizer)
-{ if (selected) selectedColorizer = colorizer; else unselectedColorizer =
-colorizer;
+                        std::function<void(Door &d, std::string &)>
+colorizer) { if (selected) selectedColorizer = colorizer; else
+unselectedColorizer = colorizer;
 }
 */
 
@@ -546,15 +554,10 @@ renderFunction Menu::makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
 
 /*
 std::function<void(Door &d, std::string &)>
-Menu::makeColorizer(ANSIColor c1, ANSIColor c2, ANSIColor c3, ANSIColor c4) {
-  std::function<void(Door & d, std::string & txt)> colorize =
-      [c1, c2, c3, c4](Door &d, std::string txt) {
-        bool option = true;
-        for (char const &c : txt) {
-          if (option) {
-            if (c == '[' or c == ']') {
-              d << c1 << c;
-              if (c == ']')
+Menu::makeColorizer(ANSIColor c1, ANSIColor c2, ANSIColor c3, ANSIColor c4)
+{ std::function<void(Door & d, std::string & txt)> colorize = [c1, c2, c3,
+c4](Door &d, std::string txt) { bool option = true; for (char const &c :
+txt) { if (option) { if (c == '[' or c == ']') { d << c1 << c; if (c == ']')
                 option = false;
             } else {
               d << c2 << c;
@@ -584,8 +587,8 @@ Menu::makeColorizer(ANSIColor c1, ANSIColor c2, ANSIColor c3, ANSIColor c4) {
  *
  * Needs timeout.
  *
- * Should we return the index offset, or return the actual char?  (Like in the
- * case of Quit or Help?)
+ * Should we return the index offset, or return the actual char?  (Like in
+ * the case of Quit or Help?)
  *
  * @param door
  * @return int