]> git.saurik.com Git - wxWidgets.git/blobdiff - user/wxLayout/wxlwindow.h
Should work very well now.
[wxWidgets.git] / user / wxLayout / wxlwindow.h
index f6f7b6f03e1f5bef9c143db5a02bce53dd60f7e9..89d709a7286784b4fa0b6dc62476c9cfb8495158 100644 (file)
@@ -81,6 +81,11 @@ public:
    
    void EnablePopup(bool enable = true) { m_DoPopupMenu = enable; }
 
+   /** Sets the wrap margin.
+       @param margin set this to 0 to disable it
+   */
+   void SetWrapMargin(CoordType margin) { m_WrapMargin = margin; }
+   
    /** Redraws the window.
        @param scrollToCursor if true, scroll the window so that the
        cursor becomes visible
@@ -154,6 +159,8 @@ private:
 
    /// Can user edit the window?
    bool m_Editable;
+   /// wrap margin
+   CoordType    m_WrapMargin;
    /// Is list dirty?
    bool         m_Dirty;
    wxMemoryDC  *m_memDC;