Hello Ariel, thanks for your anwser, it works great. I use this code to do
it:
this.xTopWindow = (XTopWindow) UnoRuntime.queryInterface(XTopWindow.class,
this.xDialog);
this.xTopWindow.addTopWindowListener(new XTopWindowListener(){
public void windowClosing(EventObject arg0) {
setVisible(false);
}
// ...here goes the other implemented methods (windowOpened,
windowClosed, etc).
});
On Sat, Nov 12, 2011 at 3:28 AM, Ariel Constenla-Haile <
[email protected]> wrote:
> Hello Gerardo,
>
> On Sat, Nov 12, 2011 at 12:45:28AM -0600, Gerardo Gómez wrote:
> > Hello.
> > I have a problem with the implementation of the dialogs of UNO-AWT. When
> i
> > show the dialog as non-modal, using the setVisible method from the
> XWindow
> > interface, the showed dialog doesn't close or hides when i press the "x"
> > button (the default close button of all windows). Is it possible to close
> > the dialog with the default close button, or as a modal dialog that
> method
> > doesn't work?.
>
> the css.awt.XDialog is a css.awt.XTopWindow, add
> a css.awt.XTopWindowListener and when its windowClosing() gets invoked
> you can call css.awt.XWindow.setVisible( false ) and then dispose.
>
> This should work (== I didn't test it).
>
> Regards
> --
> Ariel Constenla-Haile
> La Plata, Argentina
>