I need to develop an Eclipse plug-in as a schematic editor in Eclipse. So some questions concerning this.

  1. Is it possible to draw geometrical objects (rectangle/line/triangle/etc) using Eclipse native API ? If not please suggest alternative methods of doing it.

  2. Are there C++ APIs for doing this, preferably native Eclipse ?

Regards, Levon

link|improve this question

68% accept rate
feedback

2 Answers

up vote 0 down vote accepted
  1. No, unless you consider adding the plugin GEF as native Eclipse.
    "The Graphical Editing Framework (GEF) provides technology to create rich graphical editors and views for the Eclipse Workbench UI."
  2. Eclipse being developed mainly in Java, I doubt there is C++ APIs for this.

alt text

link|improve this answer
feedback

I would evaluate EMF + GMF + GEF combination as they can be used to generate the diagram for your domain model. Check the tutorial.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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