我正在尝试在开始操作时更改光标.我希望光标显示为忙,直到操作完成.我有一个单独的类用于operationListener.我不知道如何分配光标?
从AplotBaseDialog类调用
listOp.addOperationListener(new MyOperationListener(this) {
etc....
}
Run Code Online (Sandbox Code Playgroud)
单独的类
public abstract class MyOperationListener implements InterfaceAIFOperationListener {
Cursor busyCursor = null;
AplotBaseDialog w = null;
public MyOperationListener(AplotBaseDialog win) {
**Should this not be getCurrent?**
busyCursor = new Cursor(Display.getCurrent(), SWT.CURSOR_WAIT);
w = win;
} // end constructor
public void startOperation(String startMessage) {
** should this be getting a Shell form the AplotBaseDialog? **
w.???.setCursor(busyCursor);
} // end startOperation()
public void endOperation() {
try {
endOperationImpl();
}
finally {
w.???.setCursor(null);
}
} // end endOperation()
abstract protected void endOperationImpl();
} // end class MyOperationListener
Run Code Online (Sandbox Code Playgroud)
编辑
plotButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
BusyIndicator.showWhile(Display.getDefault(), new Runnable(){
public void run(){
startPrinterListOperation();
}
});
}
});
Run Code Online (Sandbox Code Playgroud)
编辑
private void startPrinterListOperation() {
listOp = new AplotPrinterListOperation(appReg.getString("aplot.message.GETPRINTERLIST"), session);
listOp.addOperationListener(new MyOperationListener(this) {
public void endOperationImpl() {
try {
printers.clear();
printers.addAll((ArrayList<PrinterProfile>) listOp.getPrinters());
Display.getDefault().asyncExec(new Runnable() {
public void run() {
showAplotPlotterDialog();
}
});
}
finally {
listOp.removeOperationListener(this);
listOp = null;
}
}
});
session.queueOperation(listOp);
} // end startPrinterListOperation()
Run Code Online (Sandbox Code Playgroud)
你可以用
BusyIndicator.showWhile(Display.getDefault(), new Runnable(){
public void run(){
//your code
}
});
Run Code Online (Sandbox Code Playgroud)
这对我有用:
private static boolean wait = false;
private static Cursor cursor = null;
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
Button button = new Button(shell, SWT.PUSH);
button.setText("Change cursor");
button.addListener(SWT.Selection, new Listener() {
@Override
public void handleEvent(Event arg0) {
wait = !wait;
if(cursor != null)
cursor.dispose();
cursor = wait ? new Cursor(display, SWT.CURSOR_WAIT) : new Cursor(display, SWT.CURSOR_ARROW);
shell.setCursor(cursor);
}
});
shell.setSize(200,200);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
if(cursor != null)
cursor.dispose();
}
Run Code Online (Sandbox Code Playgroud)
只需通过设置包含 shell 的光标即可setCursor(Display, int)。
如果您不想更改整个 shell 的光标,请使用您选择的Composite或。Control
请记住,您必须自己创建dispose()每个实例。Cursor
| 归档时间: |
|
| 查看次数: |
11124 次 |
| 最近记录: |