本文整理汇总了Java中com.rapidminer.gui.look.InternalFrameTitlePane类的典型用法代码示例。如果您正苦于以下问题:Java InternalFrameTitlePane类的具体用法?Java InternalFrameTitlePane怎么用?Java InternalFrameTitlePane使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
InternalFrameTitlePane类属于com.rapidminer.gui.look包,在下文中一共展示了InternalFrameTitlePane类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: mouseEntered
import com.rapidminer.gui.look.InternalFrameTitlePane; //导入依赖的package包/类
@Override
public void mouseEntered(MouseEvent me) {
boolean res = true;
try {
if (MenuUI.this.menuItem.getParent().getParent() != null) {
if (((JMenu) MenuUI.this.menuItem).getParent().getParent() instanceof InternalFrameTitlePane) {
res = false;
}
}
} catch (Exception exp) {
// do nothing
}
if (res && ((AbstractButton) me.getSource()).isRolloverEnabled()) {
((AbstractButton) me.getSource()).getModel().setRollover(true);
((JComponent) me.getSource()).repaint();
}
}
示例2: mouseExited
import com.rapidminer.gui.look.InternalFrameTitlePane; //导入依赖的package包/类
@Override
public void mouseExited(MouseEvent me) {
boolean res = true;
try {
if (MenuUI.this.menuItem.getParent().getParent() != null) {
if (((JMenu) MenuUI.this.menuItem).getParent().getParent() instanceof InternalFrameTitlePane) {
res = false;
}
}
} catch (Exception exp) {
// do nothing
}
if (res && ((AbstractButton) me.getSource()).isRolloverEnabled()) {
((AbstractButton) me.getSource()).getModel().setRollover(false);
((JComponent) me.getSource()).repaint();
}
}
示例3: installComponents
import com.rapidminer.gui.look.InternalFrameTitlePane; //导入依赖的package包/类
@Override
protected void installComponents() {
this.iconPane = new InternalFrameTitlePane(this.frame);
this.desktopIcon.setLayout(new BorderLayout());
this.desktopIcon.add(this.iconPane, BorderLayout.CENTER);
this.desktopIcon.setBorder(null);
}
示例4: createNorthPane
import com.rapidminer.gui.look.InternalFrameTitlePane; //导入依赖的package包/类
@Override
protected JComponent createNorthPane(JInternalFrame w) {
this.titlePane = new InternalFrameTitlePane(w);
return this.titlePane;
}