本文整理匯總了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();
}
}