Przeglądaj źródła

Need x,y position of panel to locate it.

Steve Thielemann 3 lat temu
rodzic
commit
7d2ce7ba08
1 zmienionych plików z 6 dodań i 4 usunięć
  1. 6 4
      door.h

+ 6 - 4
door.h

@@ -317,10 +317,12 @@ Instead, return an iterator/generator.
  *
  */
 class Render {
+  /// Complete text to be rendered.
+  std::string text;
+
 public:
   Render(const std::string txt);
-  /// Complete text to be rendered.
-  const std::string text;
+
   /// Vector of ColorOutput object.
   std::vector<ColorOutput> outputs;
   void append(ANSIColor color, int len = 1);
@@ -624,11 +626,11 @@ public:
   Panel(Panel &&ref);
 
   void set(int x, int y);
-  /*
   void get(int &x, int &y) {
     x = this->x;
     y = this->y;
-  }; */
+  };
+
   void setTitle(std::unique_ptr<Line> T, int off = 1);
   void setStyle(BorderStyle bs);
   void setColor(ANSIColor c);