Package net.sourceforge.squirrel_sql.client.gui

Examples of net.sourceforge.squirrel_sql.client.gui.WindowManager


    */
   public void execute()
   {
      if (_session != null)
      {
         WindowManager winMgr = _session.getApplication().getWindowManager();
         winMgr.showSessionPropertiesDialog(_session, _tabIndexToSelect);
      }
   }
View Full Code Here


         {
            SessionObjectTreePropertiesPanel otPanel = (SessionObjectTreePropertiesPanel) pnl;

            if (otPanel.isObjectTreeRefreshNeeded())
            {
               WindowManager wm = getSession().getApplication().getWindowManager();
               ISessionWidget[] frames = wm.getAllFramesOfSession(getSession().getIdentifier());
               for (int i = 0; i < frames.length; i++)
               {
                  ISessionWidget widget = frames[i];
                  try
                  {
View Full Code Here

   */
  public void execute()
  {
    if (_tree != null)
    {
      final WindowManager winMgr = _app.getWindowManager();
      winMgr.showEditWhereColsDialog(_tree, _objectInfo);
    }
  }
View Full Code Here

  {
    if (_objectTree != null)
    {
      final ISession session = _objectTree.getSession();
      final IApplication app = session.getApplication();
      final WindowManager winMgr = app.getWindowManager();
      winMgr.showSQLFilterDialog( _objectTree, _objectInfo);
    }
  }
View Full Code Here

    _cache =
      new DataCache(_driverMgr, _appFiles.getDatabaseDriversFile(), _appFiles.getDatabaseAliasesFile(),
        _resources.getDefaultDriversUrl(), this);

    indicateNewStartupTask(splash, s_stringMgr.getString("Application.splash.createWindowManager"));
    _windowManager = new WindowManager(this, args.getUserInterfaceDebugEnabled());

    // _mainFrame = new MainFrame(this);

    indicateNewStartupTask(splash, s_stringMgr.getString("Application.splash.uifactoryinit"));
    // AliasMaintSheetFactory.initialize(this);
View Full Code Here

   {
      _aliasesList.setViewAsTree(_toogleComponentHolder.isSelected());
    IApplication application = getApplication();
    if (application != null)
    {
      WindowManager windowManager = application.getWindowManager();
      if (windowManager != null)
      {
        AliasesListInternalFrame aliasesListInternalFrame = windowManager.getAliasesListInternalFrame();
        if (aliasesListInternalFrame != null)
        {
          aliasesListInternalFrame.enableDisableActions();
        }
      }
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.WindowManager

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.