The MASM Forum

Projects => MASM32 => Topic started by: HSE on March 03, 2020, 11:08:07 PM

Title: Iczelion Sintax HighLighting in qEditor
Post by: HSE on March 03, 2020, 11:08:07 PM
Hi all!

After tests with RFT and other things result is very simple: Iczelion procedure requiere nothing to work in QE.

Plugin don't modify Richedit properties or text in anyway. For my taste some improvement is needed (sometime...).

Font still is hardcoded: fixedsys, height =12, weight= 500. But is very easy to change that.

Again, location of wordfile.txt must be qEditor's location.

Of course itsn't perfect, is blocking QE functions, and you have to close Syntax to use them (to save for example).
Title: Re: Iczelion Sintax HighLighting in qEditor
Post by: Mikl__ on March 14, 2020, 01:37:00 AM
Win x64 Tutorial #35: IczEdit version 3.0 (http://masm32.com/board/index.php?topic=4190.msg47502#msg47502)
Title: Re: Iczelion Sintax HighLighting in qEditor
Post by: HSE on March 14, 2020, 10:36:24 AM
Hi Mikl!

Can you run 64 bits plugins in qEditor?
Title: Re: Iczelion Sintax HighLighting in qEditor
Post by: jj2007 on March 14, 2020, 11:30:48 AM
No. Plugins are dlls, so they must be 32-bit like qEditor. It's different if you launch an executable via a qEditor menu: that can be 64 bits. You could even pass the 32-bit handle to the 64-bit exe and do nasty things with it.
Title: Re: Iczelion Sintax HighLighting in qEditor
Post by: Mikl__ on March 15, 2020, 02:27:28 AM
Hi, HSE and jj2007!
I'm trying to write a text editor for IDE and I'll use your idea of syntax coloring through dll
Title: Re: Iczelion Sintax HighLighting in qEditor
Post by: HSE on March 15, 2020, 11:17:49 AM
Quote from: Mikl__ on March 15, 2020, 02:27:28 AM
I'm trying to write a text editor for IDE
Fantastic   :thumbsup:

Quote from: Mikl__ on March 15, 2020, 02:27:28 AM
I'll use your idea of syntax coloring through dll
It's what Hutch allow to do in qEditor  :biggrin:
I think you can use dlls in same way in WinAsm and RadAsm.