本文整理汇总了Java中javax.swing.AbstractButton.doClick方法的典型用法代码示例。如果您正苦于以下问题:Java AbstractButton.doClick方法的具体用法?Java AbstractButton.doClick怎么用?Java AbstractButton.doClick使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.AbstractButton
的用法示例。
在下文中一共展示了AbstractButton.doClick方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: mouseReleased
import javax.swing.AbstractButton; //导入方法依赖的package包/类
public void mouseReleased( MouseEvent evt ) {
if( evt.isControlDown() ) {
dragWindow = false;
return;
} else if (dragMap) {
dragMap = false;
zoomToRect();
map.repaint();
}
else if( dragWindow ) {
dragWindow = false;
map.repaint();
}
if (profileEnabled) {
AbstractButton b = map.getMapTools().profileB;
b.doClick();
profileEnabled=false;
}
}
示例2: clickButton
import javax.swing.AbstractButton; //导入方法依赖的package包/类
/**
* Clicks a given button
* @param action action of the button to be clicked
*/
public void clickButton(AbstractJMTAction action) {
AbstractButton button = getButton(action);
if (button != null) {
button.doClick();
}
}
示例3: mousePressed
import javax.swing.AbstractButton; //导入方法依赖的package包/类
public void mousePressed( MouseEvent evt ) {
dragWindow = false;
dragMap = false;
if( evt.isControlDown() ) {
return;
}
Rectangle r = map.getVisibleRect();
if (rect == null) return;
r.x += x;
r.y += y;
r.width = this.w;
r.height = this.h;
if( r.contains( evt.getPoint() ) ) {
evt.consume();
AbstractButton b = map.getMapTools().profileB;
profileEnabled = b.isSelected();
if (profileEnabled) b.doClick();
dragWindow = true;
lastPoint = evt.getPoint();
r.x+=rect.x;
r.y+=rect.y;
r.width=(int)rect.width;
r.height=(int)rect.height;
if (r.contains(evt.getPoint())){
dragMap=true;
dragWindow = false;
drawRect();
} else if (rect.x+rect.width>this.w){
r.x-=this.w;
if (r.contains(evt.getPoint())) {
rect.x-=this.w;
dragMap=true;
dragWindow = false;
drawRect();
}
}
else
drawBox();
}
}