void ScintillaWX::StartDrag() {
#if wxUSE_DRAG_AND_DROP
- wxString dragText(drag.s, drag.len);
+ wxString dragText(drag.s, wxConvUTF8, drag.len);
// Send an event to allow the drag text to be changed
wxStyledTextEvent evt(wxEVT_STC_START_DRAG, stc->GetId());
SelectionText st;
CopySelectionRange(&st);
wxTheClipboard->Open();
- wxTheClipboard->SetData(new wxTextDataObject(wxString(st.s, st.len)));
+ wxString text(st.s, wxConvUTF8, st.len);
+ wxTheClipboard->SetData(new wxTextDataObject(text));
wxTheClipboard->Close();
}
}
gotData = wxTheClipboard->GetData(data);
wxTheClipboard->Close();
if (gotData) {
- wxString str = data.GetText();
- int len = str.Length();
- pdoc->InsertString(currentPos, str.c_str(), len);
+ wxWX2MBbuf buf = (wxWX2MBbuf)data.GetText().mb_str(wxConvUTF8);
+ int len = strlen(buf);
+ pdoc->InsertString(currentPos, buf, len);
SetEmptySelection(currentPos + len);
}
bool canPaste;
wxTheClipboard->Open();
- canPaste = wxTheClipboard->IsSupported( wxDF_TEXT );
+ canPaste = wxTheClipboard->IsSupported(wxUSE_UNICODE ? wxDF_UNICODETEXT : wxDF_TEXT);
wxTheClipboard->Close();
return canPaste;
if (!label[0])
((wxMenu*)popup.GetID())->AppendSeparator();
else
- ((wxMenu*)popup.GetID())->Append(cmd, label);
+ ((wxMenu*)popup.GetID())->Append(cmd, wxString(label, *wxConvCurrent));
if (!enabled)
((wxMenu*)popup.GetID())->Enable(cmd, enabled);
}
-void ScintillaWX::DoAddChar(char ch) {
- AddChar(ch);
+void ScintillaWX::DoAddChar(int key) {
+ AddChar(key);
}
int ScintillaWX::DoKeyDown(int key, bool shift, bool ctrl, bool alt, bool* consumed) {
dragResult = evt.GetDragResult();
if (dragResult == wxDragMove || dragResult == wxDragCopy) {
DropAt(evt.GetPosition(),
- evt.GetDragText(),
+ evt.GetDragText().mb_str(wxConvUTF8),
dragResult == wxDragMove,
FALSE); // TODO: rectangular?
return TRUE;