Package com.aelitis.azureus.ui.common.table

Examples of com.aelitis.azureus.ui.common.table.TableView


      for (int i = 0; i < itemsNeedingSelection.length; i++) {
        String itemID = itemsNeedingSelection[i];
        mapNewToolbarStates.put(itemID, hasSelection);
      }
 
      TableView tv = SelectedContentManager.getCurrentlySelectedTableView();
      boolean hasRealDM = tv != null;
      if (!hasRealDM) {
        MultipleDocumentInterfaceSWT mdi = UIFunctionsManagerSWT.getUIFunctionsSWT().getMDISWT();
        if (mdi != null) {
          MdiEntrySWT entry = mdi.getCurrentEntrySWT();
          if (entry != null) {
            if (entry.getDatasource() instanceof DownloadManager) {
              hasRealDM = true;
            } else if ((entry.getIView() instanceof UIPluginView)
                && (((UIPluginView) entry.getIView()).getDataSource() instanceof DownloadManager)) {
              hasRealDM = true;
            }
          }
        }
      }
 
      boolean canStart = false;
      boolean canStop = false;
      boolean canRemoveFileInfo = false;
      boolean canRunFileInfo = false;
      boolean hasDM = false;
 
      if (currentContent.length > 0 && hasRealDM) {
        for (int i = 0; i < currentContent.length; i++) {
          ISelectedContent content = currentContent[i];
          DownloadManager dm = content.getDownloadManager();
          int fileIndex = content.getFileIndex();
          if (fileIndex == -1) {
            hasDM = true;
            if (!canStart && ManagerUtils.isStartable(dm)) {
              canStart = true;
            }
            if (!canStop && ManagerUtils.isStopable(dm)) {
              canStop = true;
            }
          } else {
            DiskManagerFileInfo[] fileInfos = dm.getDiskManagerFileInfo();
            if (fileIndex < fileInfos.length) {
              DiskManagerFileInfo fileInfo = fileInfos[fileIndex];
              if (!canStart && (fileInfo.isSkipped())) {
                canStart = true;
              }
             
              if (!canStop && !fileInfo.isSkipped()) {
                canStop = true;
              }
             
              if (!canRemoveFileInfo && !fileInfo.isSkipped()) {
                int storageType = fileInfo.getStorageType();
                if (storageType == DiskManagerFileInfo.ST_LINEAR
                    || storageType == DiskManagerFileInfo.ST_COMPACT) {
                  canRemoveFileInfo = true;
                }
              }
             
              if (!canRunFileInfo
                  && fileInfo.getAccessMode() == DiskManagerFileInfo.READ
                  && fileInfo.getDownloaded() == fileInfo.getLength()
                  && fileInfo.getFile(true).exists()) {
                canRunFileInfo = true;
              }
            }
          }
        }
        boolean canRemove = hasDM || canRemoveFileInfo;
        mapNewToolbarStates.put("remove", canRemove);
      }
 
      boolean canRun = has1Selection && ((hasDM && !canRunFileInfo) || (!hasDM && canRunFileInfo));
      if (canRun) {
        ISelectedContent content = currentContent[0];
        DownloadManager dm = content.getDownloadManager();
 
        if (dm == null) {
          canRun = false;
        } else {
          TOTorrent torrent = dm.getTorrent();
 
          if (torrent == null) {
 
            canRun = false;
 
          } else if (!dm.getAssumedComplete() && torrent.isSimpleTorrent()) {
 
            canRun = false;
  /*
          } else if (PlatformTorrentUtils.useEMP(torrent)
              && PlatformTorrentUtils.embeddedPlayerAvail()
              && PlayUtils.canProgressiveOrIsComplete(torrent)) {
            // play button enabled and not UMP.. don't need launch
 
            canRun = false;
 
          }
          */
          }
        }
      }
      mapNewToolbarStates.put("run", canRun);
 
      mapNewToolbarStates.put("start", canStart);
      mapNewToolbarStates.put("stop", canStop);
 
      for (int i = 0; i < itemsNeedingRealDMSelection.length; i++) {
        String itemID = itemsNeedingRealDMSelection[i];
        if (!mapNewToolbarStates.containsKey(itemID)) {
          mapNewToolbarStates.put(itemID, hasSelection && hasDM
              && hasRealDM);
        }
      }
      for (int i = 0; i < itemsRequiring1DMSelection.length; i++) {
        String itemID = itemsRequiring1DMSelection[i];
        if (!mapNewToolbarStates.containsKey(itemID)) {
          mapNewToolbarStates.put(itemID, has1Selection && hasDM);
        }
      }
 
      for (int i = 0; i < itemsRequiring1DMwithHash.length; i++) {
        String itemID = itemsRequiring1DMwithHash[i];
        if (!mapNewToolbarStates.containsKey(itemID)) {
          mapNewToolbarStates.put(itemID, hasDM);
        }
      }
 
      mapNewToolbarStates.put("download", has1Selection
            && (!(currentContent[0] instanceof ISelectedVuzeFileContent))
            && currentContent[0].getDownloadManager() == null
            && (currentContent[0].getHash() != null || currentContent[0].getDownloadInfo() != null));
 
      if (tv != null) {
        TableColumn tc = tv.getTableColumn(RankItem.COLUMN_ID);
        if (tc != null && !tc.isVisible()) {
          mapNewToolbarStates.put("up", false);
          mapNewToolbarStates.put("down", false);
        }
      }
View Full Code Here


    Control[] swtChildren = ((Composite) control).getChildren();
    for (int i = 0; i < swtChildren.length; i++) {
      Control childControl = swtChildren[i];
      TableOrTreeSWT tableOrTree = TableOrTreeUtils.getTableOrTreeSWT(childControl);
      TableView tv = tableOrTree == null ? null
          : (TableView) tableOrTree.getData("TableView");
      if (tv instanceof ObfusticateImage) {
        ObfusticateImage oi = (ObfusticateImage) tv;
        oi.obfusticatedImage(image);
        continue;
View Full Code Here

    for (Control childControl : children) {
      if (!childControl.isVisible()) {
        continue;
      }
      TableOrTreeSWT tableOrTree = TableOrTreeUtils.getTableOrTreeSWT(childControl);
      TableView tv = tableOrTree == null ? null
          : (TableView) tableOrTree.getData("TableView");
      if (tv instanceof ObfusticateImage) {
        ObfusticateImage oi = (ObfusticateImage) tv;
        oi.obfusticatedImage(image);
        continue;
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.ui.common.table.TableView

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.