Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » e(fx)clipse » How to create an editor with syntax highlighting for Java (tutorial)
How to create an editor with syntax highlighting for Java (tutorial) [message #1616219] Sat, 14 February 2015 12:09 Go to next message
AIT YAHIA Idir is currently offline AIT YAHIA IdirFriend
Messages: 39
Registered: April 2013
Member
Hello,

Following this torial, I'm stuck even before starting
How to create an editor with syntax highlighting for Java

i have doing this steps
Quote:

Download Java8u40 (at the time of this writing you need to use an EA build)
Download e(fx)clipse all-in-one downloads
Clone the following git-repositories:

http://git.eclipse.org/c/platform/eclipse.platform.text.git/
http://git.eclipse.org/c/efxclipse/org.eclipse.efxclipse.git/


Now for the rest, sincerely i do not know where to start.
To implement the tutorial should we start with a simple JavaFX Application or an E4 JavaFX application, I am confused, I never writing editor for eclipse it's my first steps

[Updated on: Sat, 14 February 2015 12:10]

Report message to a moderator

Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1616246 is a reply to message #1616219] Sat, 14 February 2015 12:31 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
No you don't create anything just clone the git repos and import the mentionned projects
Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1616303 is a reply to message #1616246] Sat, 14 February 2015 13:26 Go to previous messageGo to next message
AIT YAHIA Idir is currently offline AIT YAHIA IdirFriend
Messages: 39
Registered: April 2013
Member
it works, I misunderstood the first time , I thought I had to create my own project, and use dependencies with imported project

there a little problem with the number key on the top of the keyboard, certain key combination does not work like Alt+2 to get @

[Updated on: Sat, 14 February 2015 19:00]

Report message to a moderator

Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1616309 is a reply to message #1616303] Sat, 14 February 2015 13:32 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
File bugs for things that don't work so that we can fix them
Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1616351 is a reply to message #1616309] Sat, 14 February 2015 14:14 Go to previous messageGo to next message
AIT YAHIA Idir is currently offline AIT YAHIA IdirFriend
Messages: 39
Registered: April 2013
Member
there's a bug trackers ? or i will use e(fx)clipse to report a bug

for me i have a french Layout Keyboard,
for example to get opening brace i must press Alt Gr + 4 (doesn't work), also all the key combination fails.

after trying, it's the same things with english keyboard layout
for example to get capital letter :
Caps Lock + (letter) => work
Shift + (letter) don't work
Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1618935 is a reply to message #1616351] Mon, 16 February 2015 08:16 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

Of course there is a bugtracker. Anyways I went a head and reworked key
event handling while communting to work and hopefully fixed the problem
with https://bugs.eclipse.org/bugs/show_bug.cgi?id=459973.

Please pull the efxclipse git repo and try out if things are now working
for you. I guess the current code only worked on OS-X and I hope this is
now working appropriately for cross platform apps.

Tom

On 14.02.15 15:14, AIT YAHIA Idir wrote:
> there's a bug trackers ? or i will use e(fx)clipse to report a bug
> for me i have a french Layout Keyboard, for example to get opening brace
> i must press Alt Gr + 4 (doesn't work), also all the key combination fails.
>
> after trying, it's the same things with english keyboard layout
> for example to get capital letter :
> Caps Lock + (letter) => work
> Shift + (letter) don't work
Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1621317 is a reply to message #1618935] Tue, 17 February 2015 20:43 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
You might be interested in a project I made public just a few minutes
ago
http://tomsondev.bestsolution.at/2015/02/17/compensator-a-code-editor-and-a-code-dev-environment-written-in-javafx/

Tom


On 16.02.15 09:16, Tom Schindl wrote:
> Hi,
>
> Of course there is a bugtracker. Anyways I went a head and reworked key
> event handling while communting to work and hopefully fixed the problem
> with https://bugs.eclipse.org/bugs/show_bug.cgi?id=459973.
>
> Please pull the efxclipse git repo and try out if things are now working
> for you. I guess the current code only worked on OS-X and I hope this is
> now working appropriately for cross platform apps.
>
> Tom
>
> On 14.02.15 15:14, AIT YAHIA Idir wrote:
>> there's a bug trackers ? or i will use e(fx)clipse to report a bug
>> for me i have a french Layout Keyboard, for example to get opening brace
>> i must press Alt Gr + 4 (doesn't work), also all the key combination fails.
>>
>> after trying, it's the same things with english keyboard layout
>> for example to get capital letter :
>> Caps Lock + (letter) => work
>> Shift + (letter) don't work
>
Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1623118 is a reply to message #1618935] Wed, 18 February 2015 23:54 Go to previous messageGo to next message
AIT YAHIA Idir is currently offline AIT YAHIA IdirFriend
Messages: 39
Registered: April 2013
Member
Thomas Schindl wrote on Mon, 16 February 2015 03:16
Hi,

Of course there is a bugtracker. Anyways I went a head and reworked key
event handling while communting to work and hopefully fixed the problem
with https://bugs.eclipse.org/bugs/show_bug.cgi?id=459973.

Please pull the efxclipse git repo and try out if things are now working
for you. I guess the current code only worked on OS-X and I hope this is
now working appropriately for cross platform apps.

Tom



thanks Tom, I'll test this and if there are bugs I'll report them on the bugtraker
Thomas Schindl wrote on Tue, 17 February 2015 15:43

You might be interested in a project I made public just a few minutes
ago
http://tomsondev.bestsolution.at/2015/02/17/compensator-a-code-editor-and-a-code-dev-environment-written-in-javafx/
Tom


That seems very interesting, I'll watch it tomorrow
Re: How to create an editor with syntax highlighting for Java (tutorial) [message #1623659 is a reply to message #1618935] Thu, 19 February 2015 08:32 Go to previous message
AIT YAHIA Idir is currently offline AIT YAHIA IdirFriend
Messages: 39
Registered: April 2013
Member
Thomas Schindl wrote on Mon, 16 February 2015 03:16
Hi,
Please pull the efxclipse git repo and try out if things are now working
for you. I guess the current code only worked on OS-X and I hope this is
now working appropriately for cross platform apps.

Tom

On 14.02.15 15:14, AIT YAHIA Idir wrote:



i confirm, i have tested and it's work fine now on windows, i will also try in Linux, just a time to install a virtualBox machine
Previous Topic:Cannot complete the install because of a conflicting dependency
Next Topic:JavaFX application deployment
Goto Forum:
  


Current Time: Wed Feb 05 08:52:04 GMT 2025

Powered by FUDForum. Page generated in 0.04390 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top