Exemplo n.º 1
0
 public void Draw(string str, int x, int y, int w, int h, out int endx, out int endy, params int[] attributes)
 {
     using (Curses.Attribute(attributes)) {
         Draw(str, x, y, w, h, out endx, out endy);
     }
 }
Exemplo n.º 2
0
 public void Fill(int attribute, string str, char ch, int x, int y, int w, int h)
 {
     Curses.Attribute(attribute, () => Fill(str, ch, x, y, w, h));
 }
Exemplo n.º 3
0
 public void Draw(int attribute, string str, int x, int y, int w, int h, out int endx, out int endy)
 {
     using (Curses.Attribute(attribute)) {
         Draw(str, x, y, w, h, out endx, out endy);
     }
 }
Exemplo n.º 4
0
 public void Fill(int attribute, char c, int x, int y, int w, int h, int startx, int starty)
 {
     Curses.Attribute(attribute, () => Fill(c, x, y, w, h, startx, starty));
 }