wxRTC doc updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2011-05-11 16:45:34 +00:00
parent 3395d7b48e
commit 71185527a0
3 changed files with 74 additions and 11 deletions

View File

@@ -2001,6 +2001,10 @@ public:
The function puts the position in @a textPosition if one is found.
@a pt is in logical units (a zero y position is at the beginning of the buffer).
Pass wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS if you only want to consider objects
directly under the object you are calling HitTest on. Otherwise, it will recurse
and potentially find a nested object.
@return One of the ::wxRichTextHitTestFlags values.
*/

View File

@@ -351,31 +351,38 @@ public:
long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold; }
/**
Gets the flag indicating that full layout is required.
*/
bool GetFullLayoutRequired() const { return m_fullLayoutRequired; }
/**
Sets the flag indicating that full layout is required.
*/
void SetFullLayoutRequired(bool b) { m_fullLayoutRequired = b; }
/**
Returns the last time full layout was performed.
*/
wxLongLong GetFullLayoutTime() const { return m_fullLayoutTime; }
/**
Sets the last time full layout was performed.
*/
void SetFullLayoutTime(wxLongLong t) { m_fullLayoutTime = t; }
/**
Returns the position that should be shown when full (delayed) layout is performed.
*/
long GetFullLayoutSavedPosition() const { return m_fullLayoutSavedPosition; }
/**
Sets the position that should be shown when full (delayed) layout is performed.
*/
void SetFullLayoutSavedPosition(long p) { m_fullLayoutSavedPosition = p; }
// Force any pending layout due to large buffer
/**
Forces any pending layout due to delayed, partial layout when the control
was resized.
*/
void ForceDelayedLayout();