Is there a synedit package that works under firemonkey (or someone working on it) ?

From what I can gather there was a VGScene port earlier (see: https://forums.embarcadero.com/thread.jspa?threadID=58470), but it seems to have vanished.

Also see: http://ksdev.blogspot.com/2010/08/synedit-for-vgscene.html

link|improve this question

80% accept rate
5  
The vg_synedit.pas file can be found here ksdev.com/mplfiles – RRUZ Feb 1 at 20:55
Good find. But I was hoping for something a bit more complete. In general I think most of the display/scroll stuff would have to be rewritten. Something as simple as the scrollbars wont work under firemonkey - they would have to be replaced with FM's own versions. But the bulk of the text processing engine could be salvaged. – Jon Lennart Aasenden Feb 2 at 19:33
3  
I'm not sure about salvaging the text processing: Delphi's SynEdit is based on Windows text functions, these would have to be replaced for cross-platform use, and FireMonkey text support is quite limited/buggy. A better start might be from the Lazarus fork of SynEdit, which is cross-platform already (but built against the LCL...), and more advanced on many aspects than the SourceForge (Delphi) version (cf. wiki.lazarus.freepascal.org/SynEdit) – Eric Grange Feb 3 at 7:41
What would be nice is to abstract the code which deals with text handling from the display functionality. Some overlapping will occur, especially when dealing with fontmetrics, scale and row drawing - but it would be sad if synEdit did not make it over. Lazarus solved it my having a very heavy emulation layer. Even messages are emulated by lazarus. Perhaps a clean rewrite is the only way. The code is to close to the layout/drawing/scrolling code which is extremely windows centric :( – Jon Lennart Aasenden Feb 4 at 17:02
feedback

1 Answer

No there is none.

But from my point of view it's not as hard as that to write one, you basically need

  • a strong stringlist processing class which implements history handling and all data-related stuffs
  • a modular tokenizer/parser (used to set the brushes/font style on the paint event, modular because you would have to highlight many languages...)
  • a container control, a bit like the ScrollBox but more "painting-oriented". It would be the ancestor of the Editor, but only as a a GUI, since you would adopt a design that strictly separates the data processing from the data representation...
  • use only fixed-width font...(related to a previous criticism about text in FMX...)

I'm the author of a soft not so far from this (a hex editor written in vgScene, try it), so trust me, in 1 or 2 monthes a single person could write the root of a FMX syntax editor ;).

link|improve this answer
In fact, using the existing source code FMX controls as a basis, perhaps even less. +1 to counter stupid downvote. – Warren P Apr 18 at 22:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.