Partially functioning selections.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1999-05-09 15:24:57 +00:00
parent 8fa2e6a209
commit 18d084cf1f
4 changed files with 187 additions and 48 deletions

View File

@@ -148,13 +148,36 @@ wxString wxLayoutExportCmdAsHTML(wxLayoutObjectCmd const & cmd,
wxLayoutExportStatus::wxLayoutExportStatus(wxLayoutList *list,
wxPoint fromPos,
wxPoint toPos)
{
list->GetDefaults()->GetStyle(&m_si);
m_line = list->GetFirstLine();
m_iterator = m_line->GetFirstObject();
m_fromPos = fromPos;
m_toPos = toPos;
if(m_fromPos != wxLayoutExportNoPosition)
{
while(m_line && (*m_line)->GetLineNumber() != m_fromPos.y)
m_line->GetNextLine();
wxASSERT(m_line);
m_iterator = (**i).FindObject(fromPos.x);
}
}
#define WXLO_IS_TEXT(type) \
( type == WXLO_TYPE_TEXT \
|| (type == WXLO_TYPE_CMD \
&& mode == WXLO_EXPORT_AS_HTML))
extern const wxPoint wxLayoutExportNoPosition = wxPoint(-1,-1);
wxLayoutExportObject *wxLayoutExport(wxLayoutExportStatus *status,
int mode, int flags)
{
@@ -197,7 +220,6 @@ wxLayoutExportObject *wxLayoutExport(wxLayoutExportStatus *status,
wxString *str = new wxString();
// text must be concatenated
int testf = WXLO_EXPORT_WITH_CRLF;
for(;;)
{
while(status->m_iterator == NULLIT)