Package net.sourceforge.squirrel_sql.client.gui.session

Source Code of net.sourceforge.squirrel_sql.client.gui.session.SessionInternalFrame

package net.sourceforge.squirrel_sql.client.gui.session;
/*
* Copyright (C) 2001-2004 Colin Bell
* colbell@users.sourceforge.net
*
* Modifications Copyright (C) 2003-2004 Jason Height
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.SwingUtilities;
import javax.swing.WindowConstants;

import net.sourceforge.squirrel_sql.client.IApplication;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.SessionTabWidget;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.WidgetAdapter;
import net.sourceforge.squirrel_sql.client.gui.desktopcontainer.WidgetEvent;
import net.sourceforge.squirrel_sql.client.session.IObjectTreeAPI;
import net.sourceforge.squirrel_sql.client.session.IObjectTreeInternalFrame;
import net.sourceforge.squirrel_sql.client.session.ISQLInternalFrame;
import net.sourceforge.squirrel_sql.client.session.ISQLPanelAPI;
import net.sourceforge.squirrel_sql.client.session.ISession;

public class SessionInternalFrame extends SessionTabWidget
          implements ISQLInternalFrame, IObjectTreeInternalFrame
{
    static final long serialVersionUID = 6961615570741567740L;
   
    /** Application API. */
  private final IApplication _app;

  private SessionPanel _sessionPanel;
   
  public SessionInternalFrame(ISession session)
  {
    super(session.getTitle(), true, true, true, true, session);
    _app = session.getApplication();
    setVisible(false);
    createGUI(session);
  }

  public SessionPanel getSessionPanel()
  {
    return _sessionPanel;
  }

  public ISQLPanelAPI getSQLPanelAPI()
  {
    return _sessionPanel.getSQLPaneAPI();
  }

  public IObjectTreeAPI getObjectTreeAPI()
  {
    return _sessionPanel.getObjectTreePanel();
  }

   /**
   * Add the passed action to the toolbar of the sessions main window.
   *
   * @param  action  Action to be added.
   */
  void addToToolbar(Action action)
   {
      _sessionPanel.addToToolbar(action);
   }

   public void addSeparatorToToolbar()
   {
      _sessionPanel.addSeparatorToToolbar();
   }

   public void addToToolsPopUp(String selectionString, Action action)
   {
      _sessionPanel.addToToolsPopUp(selectionString, action);
   }



   private void createGUI(final ISession session)
  {
    setVisible(false);
    setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
    final IApplication app = session.getApplication();
    Icon icon = app.getResources().getIcon(getClass(), "frameIcon"); //i18n
    if (icon != null)
    {
      setFrameIcon(icon);
    }

    addWidgetListener(new WidgetAdapter()
    {
      public void widgetClosing(WidgetEvent evt)
      {
            if (!session.isfinishedLoading())
            {
               return;
            }
            final ISession mySession = getSession();
            if (mySession != null)
        {
               _sessionPanel.sessionWindowClosing();
          _app.getSessionManager().closeSession(mySession);
        }
      }
    });

    _sessionPanel = new SessionPanel(session);
    _sessionPanel.setMainPanelFactory(new MainPanelFactory());
    _sessionPanel.initialize(session);
    setContentPane(_sessionPanel);
    validate();
  }

   public void requestFocus()
   {
      if (ISession.IMainPanelTabIndexes.SQL_TAB == getSession().getSelectedMainTabIndex())
      {
         SwingUtilities.invokeLater(new Runnable()
         {
            public void run()
            {
               _sessionPanel.getSQLEntryPanel().requestFocus();
            }
         });
      }
      else if (ISession.IMainPanelTabIndexes.OBJECT_TREE_TAB == getSession().getSelectedMainTabIndex())
      {
         SwingUtilities.invokeLater(new Runnable()
         {
            public void run()
            {
               _sessionPanel.getObjectTreePanel().requestFocus();
            }
         });
      }

   }

   public boolean hasSQLPanelAPI()
   {
      return true;
   }

   @Override
   public void moveToFront()
   {
      super.moveToFront();
     
      if(MainPanel.ITabIndexes.SQL_TAB == _sessionPanel.getSelectedMainTabIndex())
      {
         _sessionPanel.getSQLEntryPanel().requestFocus();
      }
   }
}
TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.session.SessionInternalFrame

TOP
Copyright © 2018 www.massapi.com. 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.