Package net.sourceforge.squirrel_sql.client.gui.desktopcontainer

Examples of net.sourceforge.squirrel_sql.client.gui.desktopcontainer.WidgetAdapter


      return _sgaTracePanel;
   }

   private void createGUI()
   {
      addWidgetListener(new WidgetAdapter()
      {
         public void widgetClosing(WidgetEvent e)
         {
            SGATraceInternalFrame.super.internalFrameClosing(_toolBar.isStayOnTop(), _sgaTracePanel.getAutoRefreshPeriod());
            _sgaTracePanel.setAutoRefresh(false);
View Full Code Here


    // This is to fix a problem with the JDK (up to version 1.3)
    // where focus events were not generated correctly. The sympton
    // is being unable to key into the text entry field unless you click
    // elsewhere after focus is gained by the internal frame.
    // See bug ID 4309079 on the JavaSoft bug parade (plus others).
    addWidgetListener(new WidgetAdapter()
    {
      public void widgetActivated(WidgetEvent evt)
      {
            SwingUtilities.invokeLater(new Runnable()
            {
View Full Code Here

    y += 2;
    builder.add(_btnsPnl, cc.xywh(1, y, 3, 1));


    // Set focus to password control if default user name has been setup.
    addWidgetListener(new WidgetAdapter()
    {
      private WidgetAdapter _this;
      public void widgetActivated(WidgetEvent evt)
      {
        _this = this;
View Full Code Here

    if (icon != null)
    {
      setFrameIcon(icon);
    }

    addWidgetListener(new WidgetAdapter()
    {
      public void widgetClosing(WidgetEvent evt)
      {
            if (!session.isfinishedLoading())
            {
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.desktopcontainer.WidgetAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.