don't break lines in the middle of word

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22001 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-07-15 18:28:21 +00:00
parent 515e94a608
commit 8ba2f3ec94
2 changed files with 18 additions and 13 deletions

View File

@@ -254,6 +254,10 @@ public:
// Sets cell's behaviour on pagebreaks (see AdjustPagebreak). Default
// is true - the cell can be split on two pages
void SetCanLiveOnPagebreak(bool can) { m_CanLiveOnPagebreak = can; }
// Can the line be broken before this cell?
virtual bool IsLinebreakAllowed() const
{ return !IsFormattingCell(); }
// Returns y-coordinates that contraint the cell, i.e. left is highest
// and right lowest coordinate such that the cell lays between then.
@@ -338,6 +342,9 @@ public:
wxHtmlRenderingInfo& info);
wxCursor GetCursor() const;
wxString ConvertToText(wxHtmlSelection *sel) const;
bool IsLinebreakAllowed() const { return m_allowLinebreak; }
void SetPreviousWord(wxHtmlWordCell *cell);
protected:
void SetSelectionPrivPos(wxDC& dc, wxHtmlSelection *s) const;
@@ -346,6 +353,7 @@ protected:
unsigned& pos1, unsigned& pos2) const;
wxString m_Word;
bool m_allowLinebreak;
};