window: move some members from protected to private section
This commit is contained in:
36
src/window.h
36
src/window.h
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user