<div dir="ltr">Hi Petr,<div><br></div><div>I think you have to implement your code in C++ and then use it within Java.</div><div><br></div><div>Seb</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 7, 2017 at 8:08 AM, Petr Matoušek <span dir="ltr"><<a href="mailto:p3tr.matousek@gmail.com" target="_blank">p3tr.matousek@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
can anybody suggest how to implement custom vtkAbstractWidget and vtkWidgetRepresentation in Java? Is it even possible?<br>
<br>
I tried it but failed.<br>
<br>
1. The first problem I encountered was that vtkAbstractWidget uses its protected field WidgetRep, but there is no way how to set it from Java code. Only public methods are accessible from Java. So I introduced my own field in the Java class and overrided the GetRepresentation() method to return it. So far so good:<br>
<br>
public class CoordRangeVtkLineWidget extends vtkAbstractWidget {<br>
<br>
    private final vtkLineRepresentation representation;<br>
<br>
    public CoordRangeVtkLineWidget(final CoordRange coordRange) {<br>
        super();<br>
        this.representation = new vtkLineRepresentation();<br>
    }<br>
<br>
    @Override<br>
    public vtkWidgetRepresentation GetRepresentation() {<br>
        return this.representation;<br>
    }<br>
}<br>
<br>
2. But then the SetInteractor() method started to fail for my widget with SIGSEGV crash. I guess this is due to the fact that the observer mechanism is implemented a bit differently in Java. So it is not possible to call the original AddObserver() methods with Java object instances.<br>
<br>
So I skipped the interactor for the moment:<br>
<br>
@Override<br>
public void SetInteractor(final vtkRenderWindowInteractor interactor) {<br>
    // TODO<br>
}<br>
<br>
3. Then vtkAbstractWidget::SetEnabled(<wbr>) started to fail with SIGSEGV of course.<br>
<br>
So I stopped and start to think: this would be quite difficult. In fact I will probably have to reimplement the whole vtkAbstractWidget in Java to make it work.<br>
<br>
So does anybody any experience with this. Any suggestions? Am I going wrong direction? Please.<br>
<br>
Best regards, Petr Matousek<br>
______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensou<wbr>rce/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FA<wbr>Q</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mail<wbr>man/listinfo/vtkusers</a><br>
</blockquote></div><br></div>