Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [udig-dev] Can't hide view or override view ID anymore

Not sure if I understood you correctly. The extenstion-point org.eclipse.ui.perspectiveExtensions is used to setup a perspective, independently of view configuration and behavior.

Do you have written a view with the same view-ID and like to get this one in instead of the view provided by Eclipse/uDig?
What's the goal you like to reach and where do you change configurations, in your code or within a fork of udig sources?

Cheers
Frank


2016-06-22 13:00 GMT+02:00 Іван В <ivanvydai@xxxxxxxxx>:
Hello colleagues,

In our project based on uDig 1.2.2 there are functional that overrides few standard Eclipse/uDig views (e.g. 'Layers', 'Search', 'Information').
Previously it was working well using same view ID to override, but on Luna and uDig 2.0.0 it can't be done anymore.
It simply adds additional view instead of overriding old one and shows the old one af before.

Also I can't hide unused views by setting visible='false' attribute.
E.g. like:
    <extension         
         point="org.eclipse.ui.perspectiveExtensions">
      <perspectiveExtension targetID="org.locationtech.udig.ui.mapPerspective">
         <view id="org.locationtech.udig.catalog.ui.CatalogView"
               relationship="stack"
               visible="false"/>
         <view id="org.locationtech.udig.catalog.ui.Search"
               relationship="stack"
               visible="false"/>
      </perspectiveExtension>
    </extension>

Is anyone faced those issues?

Best regards,
--
Ivan Vydai
Skype: d3m0n1c_ua

_______________________________________________
udig-dev mailing list
udig-dev@xxxxxxxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://locationtech.org/mailman/listinfo/udig-dev


Back to the top