Added a member to know when an update request has been sent
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12266 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -84,9 +84,10 @@ WinBorder::WinBorder(const BRect &r, const char *name, const int32 look, const i
|
|||||||
// unlike BViews, windows start off as hidden
|
// unlike BViews, windows start off as hidden
|
||||||
fHidden = true;
|
fHidden = true;
|
||||||
fInUpdate = false;
|
fInUpdate = false;
|
||||||
|
fRequestSent = false;
|
||||||
fServerWin = win;
|
fServerWin = win;
|
||||||
fClassID = AS_WINBORDER_CLASS;
|
fClassID = AS_WINBORDER_CLASS;
|
||||||
cnt = 0;
|
cnt = 0; // for debugging
|
||||||
fMouseButtons = 0;
|
fMouseButtons = 0;
|
||||||
fKeyModifiers = 0;
|
fKeyModifiers = 0;
|
||||||
fDecorator = NULL;
|
fDecorator = NULL;
|
||||||
|
|||||||
@@ -125,9 +125,12 @@ protected:
|
|||||||
bool fIsZooming;
|
bool fIsZooming;
|
||||||
|
|
||||||
bool fInUpdate;
|
bool fInUpdate;
|
||||||
int cnt;
|
bool fRequestSent;
|
||||||
|
|
||||||
float fMinWidth, fMaxWidth;
|
float fMinWidth, fMaxWidth;
|
||||||
float fMinHeight, fMaxHeight;
|
float fMinHeight, fMaxHeight;
|
||||||
|
|
||||||
|
int cnt; // for debugging
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user