Add missing documentation for wxTreeCtrl GetSpacing / SetSpacing

Closes https://github.com/wxWidgets/wxWidgets/pull/1787
This commit is contained in:
Scott Talbert
2020-04-09 19:11:23 -04:00
committed by Vadim Zeitlin
parent 215a6ee238
commit e8be37da3d

View File

@@ -506,6 +506,12 @@ public:
*/
virtual unsigned int GetIndent() const;
/**
Returns the current tree control spacing. This is the number of
horizontal pixels between the buttons and the state images.
*/
unsigned int GetSpacing() const;
/**
Returns the background colour of the item.
*/
@@ -850,6 +856,13 @@ public:
*/
virtual void SetIndent(unsigned int indent);
/**
Sets the spacing for the tree control. Spacing is the number of
horizontal pixels between the buttons and the state images.
This has no effect under wxMSW.
*/
void SetSpacing(unsigned int spacing);
/**
Sets the colour of the item's background.
*/