don't send SPLITTER_POS_CHANGED events when the splitter position was changed from the program itself

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-05-14 18:10:04 +00:00
parent 936b18ac29
commit 63ec9dbbac
2 changed files with 28 additions and 15 deletions

View File

@@ -244,7 +244,12 @@ protected:
int ConvertSashPosition(int sashPos) const;
// set the real sash position, sashPos here must be positive
void DoSetSashPosition(int sashPos);
//
// returns TRUE if the sash position has been changed, FALSE otherwise
bool DoSetSashPosition(int sashPos);
// set the sash position and send an event about it having been changed
void SetSashPositionAndNotify(int sashPos);
// set the cursor appropriate for the current split mode
void SetResizeCursor();