window: move some members from protected to private section

This commit is contained in:
Andrzej Rybczak
2009-09-21 01:44:38 +02:00
parent 1a3dcbfe17
commit 14a774b8a3
2 changed files with 27 additions and 27 deletions

View File

@@ -500,11 +500,6 @@ namespace NCurses
WINDOW *itsWindow;
WINDOW *itsWinBorder;
/// pointer to helper function used by GetString()
/// @see GetString()
///
GetStringHelper itsGetStringHelper;
/// start points and dimensions
size_t itsStartX;
size_t itsStartY;
@@ -514,19 +509,6 @@ namespace NCurses
/// window timeout
int itsWindowTimeout;
/// temporary coordinates
/// @see X()
/// @see Y()
///
int itsX;
int itsY;
/// window's title
std::string itsTitle;
/// stack of colors
std::stack<Colors> itsColors;
/// current colors
Color itsColor;
Color itsBgColor;
@@ -559,6 +541,24 @@ namespace NCurses
///
void AltCharset(bool altcharset_state) const;
/// pointer to helper function used by GetString()
/// @see GetString()
///
GetStringHelper itsGetStringHelper;
/// temporary coordinates
/// @see X()
/// @see Y()
///
int itsX;
int itsY;
/// window's title
std::string itsTitle;
/// stack of colors
std::stack<Colors> itsColors;
/// pointer to container used as history
std::deque<std::wstring> *itsHistory;