Hi Friends,
Due to there is some change in Unicode currently there is only one editor can display a small language correctly, Studio even MS Word can not display it correctly.
So I'm planing to develop a plugin reference third-party editor for Studio.
My detailed plan is:
I will Show a small window some where in screen as viewPart, and Third-Party Editor will on it, the editor can set() and get() unicode characters, I will have three major button/functions:
1. GetText() Get Studio Text to Editor //editorController.ActiveDocument.FocusedDocumentContent.Target.ToString()
or //activeDocument.get_Selection().get_Target() //Document.Selection.Current.Target()
2. SetText Send Unicode to Studio //.....Target().Replace()
3. Move to NextSegment (If Null Stop) //From API I found Sdl.TranslationStudioAutomation.IntegrationApi.DocumentSelection but no way to move next
Can anybody give some suggesstions on these three steps, currently we are considering pure text only, no tags.