|
|
|
|
@ -71,20 +71,20 @@ Window::Window(size_t startx, |
|
|
|
|
Border border) |
|
|
|
|
: itsWindow(0), |
|
|
|
|
itsWinBorder(0), |
|
|
|
|
itsGetStringHelper(0), |
|
|
|
|
itsStartX(startx), |
|
|
|
|
itsStartY(starty), |
|
|
|
|
itsWidth(width), |
|
|
|
|
itsHeight(height), |
|
|
|
|
itsWindowTimeout(-1), |
|
|
|
|
itsX(0), |
|
|
|
|
itsY(0), |
|
|
|
|
itsTitle(title), |
|
|
|
|
itsColor(color), |
|
|
|
|
itsBgColor(clDefault), |
|
|
|
|
itsBaseColor(color), |
|
|
|
|
itsBaseBgColor(clDefault), |
|
|
|
|
itsBorder(border), |
|
|
|
|
itsGetStringHelper(0), |
|
|
|
|
itsX(0), |
|
|
|
|
itsY(0), |
|
|
|
|
itsTitle(title), |
|
|
|
|
itsHistory(0), |
|
|
|
|
itsBoldCounter(0), |
|
|
|
|
itsUnderlineCounter(0), |
|
|
|
|
@ -121,21 +121,21 @@ Window::Window(size_t startx, |
|
|
|
|
|
|
|
|
|
Window::Window(const Window &w) : itsWindow(dupwin(w.itsWindow)), |
|
|
|
|
itsWinBorder(dupwin(w.itsWinBorder)), |
|
|
|
|
itsGetStringHelper(w.itsGetStringHelper), |
|
|
|
|
itsStartX(w.itsStartX), |
|
|
|
|
itsStartY(w.itsStartY), |
|
|
|
|
itsWidth(w.itsWidth), |
|
|
|
|
itsHeight(w.itsHeight), |
|
|
|
|
itsWindowTimeout(w.itsWindowTimeout), |
|
|
|
|
itsX(w.itsX), |
|
|
|
|
itsY(w.itsY), |
|
|
|
|
itsTitle(w.itsTitle), |
|
|
|
|
itsColors(w.itsColors), |
|
|
|
|
itsColor(w.itsColor), |
|
|
|
|
itsBgColor(w.itsBgColor), |
|
|
|
|
itsBaseColor(w.itsBaseColor), |
|
|
|
|
itsBaseBgColor(w.itsBaseBgColor), |
|
|
|
|
itsBorder(w.itsBorder), |
|
|
|
|
itsGetStringHelper(w.itsGetStringHelper), |
|
|
|
|
itsX(w.itsX), |
|
|
|
|
itsY(w.itsY), |
|
|
|
|
itsTitle(w.itsTitle), |
|
|
|
|
itsColors(w.itsColors), |
|
|
|
|
itsHistory(w.itsHistory), |
|
|
|
|
itsBoldCounter(w.itsBoldCounter), |
|
|
|
|
itsUnderlineCounter(w.itsUnderlineCounter), |
|
|
|
|
|