當前位置: 首頁>>代碼示例>>Java>>正文


Java TimedDeadzone類代碼示例

本文整理匯總了Java中com.intellij.util.ui.TimedDeadzone的典型用法代碼示例。如果您正苦於以下問題:Java TimedDeadzone類的具體用法?Java TimedDeadzone怎麽用?Java TimedDeadzone使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


TimedDeadzone類屬於com.intellij.util.ui包,在下文中一共展示了TimedDeadzone類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ContentTabLabel

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public ContentTabLabel(final Content content, TabContentLayout layout) {
  super(layout.myUi, true);
  myLayout = layout;
  myContent = content;
  update();

  myBehavior = new BaseButtonBehavior(this) {
    protected void execute(final MouseEvent e) {
      final ContentManager mgr = contentManager();
      if (mgr.getIndexOfContent(myContent) >= 0) {
        mgr.setSelectedContent(myContent, true);
      }
    }
  };
  myBehavior.setActionTrigger(MouseEvent.MOUSE_PRESSED);
  myBehavior.setMouseDeadzone(TimedDeadzone.NULL);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:18,代碼來源:ContentTabLabel.java

示例2: ToolbarAlikeButton

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
private ToolbarAlikeButton(@NotNull final Icon icon) {
  myIcon = icon;

  myBehavior = new BaseButtonBehavior(this, TimedDeadzone.NULL) {
    @Override
    protected void execute(MouseEvent e) {
      onClick(e);
    }
  };

  setOpaque(false);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:13,代碼來源:ConfigurationErrorsComponent.java

示例3: setTabLabelActionsMouseDeadzone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
@Override
@NotNull
public JBTabsPresentation setTabLabelActionsMouseDeadzone(final TimedDeadzone.Length length) {
  myTabActionsMouseDeadzone = length;
  final List<TabInfo> all = getTabs();
  for (TabInfo each : all) {
    final TabLabel eachLabel = myInfo2Label.get(each);
    eachLabel.updateTabActions();
  }
  return this;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:12,代碼來源:JBTabsImpl.java

示例4: ActionButton

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public ActionButton(JBTabsImpl tabs, TabInfo tabInfo, AnAction action, String place, Pass<MouseEvent> pass, TimedDeadzone.Length deadzone) {
  super(null, action.getTemplatePresentation().getIcon());
  myTabs = tabs;
  myTabInfo = tabInfo;
  myAction = action;
  myPlace = place;

  myButton = new InplaceButton(this, this, pass, deadzone) {
    @Override
    protected void doRepaintComponent(Component c) {
      repaintComponent(c);
    }
  };
  myButton.setVisible(false);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:16,代碼來源:ActionButton.java

示例5: ToolbarAlikeButton

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
private ToolbarAlikeButton(@NotNull Icon icon) {
  myIcon = icon;

  myBehavior = new BaseButtonBehavior(this, TimedDeadzone.NULL) {
    @Override
    protected void execute(MouseEvent e) {
      onClick(e);
    }
  };

  setOpaque(false);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:13,代碼來源:ConfigurationErrorsPanel.java

示例6: ToolWindowsWidget

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
private ToolWindowsWidget() {
  new BaseButtonBehavior(this, TimedDeadzone.NULL) {
    @Override
    protected void execute(MouseEvent e) {
      performAction();
    }
  }.setActionTrigger(MouseEvent.MOUSE_PRESSED);

  UISettings.getInstance().addUISettingsListener(this, this);
  KeyboardFocusManager.getCurrentKeyboardFocusManager().addPropertyChangeListener("focusOwner", this);
}
 
開發者ID:lshain-android-source,項目名稱:tools-idea,代碼行數:12,代碼來源:IdeStatusBarImpl.java

示例7: setTabLabelActionsMouseDeadzone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
@Override
@Nonnull
public JBTabsPresentation setTabLabelActionsMouseDeadzone(final TimedDeadzone.Length length) {
  myTabActionsMouseDeadzone = length;
  final List<TabInfo> all = getTabs();
  for (TabInfo each : all) {
    final TabLabel eachLabel = myInfo2Label.get(each);
    eachLabel.updateTabActions();
  }
  return this;
}
 
開發者ID:consulo,項目名稱:consulo,代碼行數:12,代碼來源:JBTabsImpl.java

示例8: ToolWindowsWidget

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
ToolWindowsWidget(@Nonnull Disposable parent) {
  new BaseButtonBehavior(this, TimedDeadzone.NULL) {
    @Override
    protected void execute(MouseEvent e) {
      performAction();
    }
  }.setActionTrigger(MouseEvent.MOUSE_PRESSED);

  IdeEventQueue.getInstance().addDispatcher(e -> {
    if (e instanceof MouseEvent) {
      MouseEvent mouseEvent = (MouseEvent)e;
      if (mouseEvent.getComponent() == null || !SwingUtilities.isDescendingFrom(mouseEvent.getComponent(), SwingUtilities.getWindowAncestor(this))) {
        return false;
      }

      if (e.getID() == MouseEvent.MOUSE_MOVED && isShowing()) {
        Point p = mouseEvent.getLocationOnScreen();
        Point screen = this.getLocationOnScreen();
        if (new Rectangle(screen.x - 4, screen.y - 2, getWidth() + 4, getHeight() + 4).contains(p)) {
          mouseEntered();
          wasExited = false;
        }
        else {
          if (!wasExited) {
            wasExited = mouseExited(p);
          }
        }
      }
      else if (e.getID() == MouseEvent.MOUSE_EXITED) {
        //mouse exits WND
        mouseExited(mouseEvent.getLocationOnScreen());
      }
    }
    return false;
  }, parent);

  ApplicationManager.getApplication().getMessageBus().connect(this).subscribe(UISettingsListener.TOPIC, this);
  KeyboardFocusManager.getCurrentKeyboardFocusManager().addPropertyChangeListener("focusOwner", this);
  myAlarm = new Alarm(parent);
}
 
開發者ID:consulo,項目名稱:consulo,代碼行數:41,代碼來源:ToolWindowsWidget.java

示例9: ToolbarAlikeButton

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
ToolbarAlikeButton(@Nonnull final Icon icon) {
  myIcon = icon;

  myBehavior = new BaseButtonBehavior(this, TimedDeadzone.NULL) {
    @Override
    protected void execute(MouseEvent e) {
      onClick(e);
    }
  };

  setOpaque(false);
}
 
開發者ID:consulo,項目名稱:consulo,代碼行數:13,代碼來源:ConfigurationErrorsComponent.java

示例10: InplaceButton

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public InplaceButton(IconButton source, final ActionListener listener, final Pass<MouseEvent> me) {
  this(source, listener, me, TimedDeadzone.DEFAULT);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:InplaceButton.java

示例11: setMouseDeadzone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public void setMouseDeadzone(final TimedDeadzone.Length deadZone) {
  myBehavior.setMouseDeadzone(deadZone);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:InplaceButton.java

示例12: setTabLabelActionsMouseDeadzone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
@NotNull
JBTabsPresentation setTabLabelActionsMouseDeadzone(TimedDeadzone.Length length);
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:3,代碼來源:JBTabsPresentation.java

示例13: getTabActionsMouseDeadzone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public TimedDeadzone.Length getTabActionsMouseDeadzone() {
  return myTabActionsMouseDeadzone;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:JBTabsImpl.java

示例14: setMouseDeadZone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public void setMouseDeadZone(TimedDeadzone.Length deadZone) {
  myButton.setMouseDeadzone(deadZone);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:4,代碼來源:ActionButton.java

示例15: setMouseDeadZone

import com.intellij.util.ui.TimedDeadzone; //導入依賴的package包/類
public void setMouseDeadZone(TimedDeadzone.Length deadZone) {
  myButton.setMouseDeadzone(deadZone);    
}
 
開發者ID:lshain-android-source,項目名稱:tools-idea,代碼行數:4,代碼來源:ActionButton.java


注:本文中的com.intellij.util.ui.TimedDeadzone類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。