From: Robin Dunn Date: Mon, 17 May 2004 19:20:00 +0000 (+0000) Subject: Subindent support added X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6d2e144a7cd04e2bc37ce1f7687a5b58720e56c4 Subindent support added git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_textctrl.i b/wxPython/src/_textctrl.i index 7110d61466..4f8e3b616f 100644 --- a/wxPython/src/_textctrl.i +++ b/wxPython/src/_textctrl.i @@ -122,7 +122,7 @@ public: void SetFont(const wxFont& font, long flags = wxTEXT_ATTR_FONT); void SetAlignment(wxTextAttrAlignment alignment); void SetTabs(const wxArrayInt& tabs); - void SetLeftIndent(int indent); + void SetLeftIndent(int indent, int subIndent=0); void SetRightIndent(int indent); void SetFlags(long flags); @@ -142,6 +142,7 @@ public: wxTextAttrAlignment GetAlignment() const; const wxArrayInt& GetTabs() const; long GetLeftIndent() const; + long GetLeftSubIndent() const; long GetRightIndent() const; long GetFlags() const;