Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-devel] On buttonclick open change style dialog.

Hello there,

I just want to open udigs default style editor(change style) dialog on button click.
In similar way i have open TablView like
TableView view = (TableView) ApplicationGIS.getView(true,
                                        "net.refractions.udig.tool.select.TableView");
                                if (view == null) {
                                    IWorkbenchPage page = PlatformUI.getWorkbench()
                                            .getActiveWorkbenchWindow().getActivePage();
                                    view = (TableView) page
                                            .findView("net.refractions.udig.tool.select.TableView");
                                    if (!page.isPartVisible(view))
                                        page.bringToTop(view);
                                }

But how to open the style editor????

Thanks
Amit

Back to the top