Added wxDragLink

Added SetURL to wxURLDataObject

Fixed the Mozilla problem by reversing the order of the component DOs
in the wxURLDataObject.  By checking the wxTextDataObject first then
it avoids the problem of how Mozilla sends the UniformResourceLocator
data.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-10-26 02:11:23 +00:00
parent ac00ac40ed
commit e6d318c25a
6 changed files with 34 additions and 14 deletions

View File

@@ -1109,8 +1109,8 @@ wxURLDataObject::wxURLDataObject()
// we support CF_TEXT and CFSTR_SHELLURL formats which are basicly the same
// but it seems that some browsers only provide one of them so we have to
// support both
Add(new CFSTR_SHELLURLDataObject());
Add(new wxTextDataObject);
Add(new CFSTR_SHELLURLDataObject());
// we don't have any data yet
m_dataObjectLast = NULL;
@@ -1135,12 +1135,18 @@ wxString wxURLDataObject::GetURL() const
size_t len = m_dataObjectLast->GetDataSize();
m_dataObjectLast->GetDataHere(url.GetWriteBuf(len + 1));
m_dataObjectLast->GetDataHere(url.GetWriteBuf(len));
url.UngetWriteBuf();
return url;
}
void wxURLDataObject::SetURL(const wxString& url)
{
SetData(wxDataFormat(wxDF_TEXT), url.Length()+1, url.c_str());
SetData(wxDataFormat(CFSTR_SHELLURL), url.Length()+1, url.c_str());
}
// ----------------------------------------------------------------------------
// private functions
// ----------------------------------------------------------------------------