最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

SWT(JFace)體驗(yàn)之ProgressBar

 更新時(shí)間:2009年06月25日 11:44:22   作者:  
SWT(JFace)體驗(yàn)之ProgressBar 實(shí)現(xiàn)代碼。
先看代碼:
ProgressBarExamples.java
復(fù)制代碼 代碼如下:

package swt_jface.demo8;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.FontMetrics;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.ProgressBar;
import org.eclipse.swt.widgets.Shell;
public class ProgressBarExamples {

Display display = new Display();
Shell shell = new Shell(display);
public ProgressBarExamples() {
ProgressBar pb1 = new ProgressBar(shell, SWT.NULL);
final ProgressBar pb2 = new ProgressBar(shell, SWT.SMOOTH);
ProgressBar pb3 = new ProgressBar(shell, SWT.INDETERMINATE);

pb2.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
Point point = pb2.getSize();

Font font = new Font(shell.getDisplay(),"Courier",10,SWT.BOLD);
e.gc.setFont(font);
e.gc.setForeground(shell.getDisplay().getSystemColor(SWT.COLOR_WHITE));

FontMetrics fontMetrics = e.gc.getFontMetrics();
int stringWidth = fontMetrics.getAverageCharWidth() * 4;
int stringHeight = fontMetrics.getHeight();

e.gc.drawString("60%", (point.x-stringWidth)/2 , (point.y-stringHeight)/2, true);
font.dispose();
}
});

pb1.setSelection(60);
pb2.setSelection(60);

pb1.setBounds(100, 10, 200, 20);
pb2.setBounds(100, 40, 200, 20);
pb3.setBounds(100, 70, 200, 20);

Label label = new Label(shell, SWT.NULL);
label.setText("(default)");
Label label2 = new Label(shell, SWT.NULL);
label2.setText("SWT.SMOOTH");

label.setAlignment(SWT.RIGHT);
label2.setAlignment(SWT.RIGHT);
label.setBounds(10, 10, 80, 20);
label2.setBounds(10, 40, 80, 20);

shell.pack();
shell.open();

while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new ProgressBarExamples();
}
}

再來一個例子:
CountNumbers.java
復(fù)制代碼 代碼如下:

package swt_jface.demo8;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.FontMetrics;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.ProgressBar;
import org.eclipse.swt.widgets.Shell;
public class CountNumbers {

Display display = new Display();
Shell shell = new Shell(display);
Button button;
ProgressBar progressBar;

public CountNumbers() {
GridLayout gridLayout = new GridLayout(1, true);
shell.setLayout(gridLayout);

button = new Button(shell, SWT.BORDER);
button.setText("Start to count");

progressBar = new ProgressBar(shell, SWT.SMOOTH);
progressBar.setMinimum(0);
progressBar.setMaximum(10);

final Thread countThread = new Thread(){
public void run() {
for(int i=0; i<=10; i++) {
final int num = i;
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
shell.getDisplay().asyncExec(new Runnable(){
public void run() {
if(button.isDisposed() || progressBar.isDisposed()) return;
button.setText("Counting: " + num);
progressBar.setSelection(num);
//progressBar.redraw();
}
});
}
}
};

button.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event event) {
button.setEnabled(false);
countThread.start();
}
});

progressBar.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
System.out.println("PAINT");
String string = (progressBar.getSelection() * 1.0 /(progressBar.getMaximum()-progressBar.getMinimum()) * 100) + "%";
Point point = progressBar.getSize();
Font font = new Font(shell.getDisplay(),"Courier",10,SWT.BOLD);
e.gc.setFont(font);
e.gc.setForeground(shell.getDisplay().getSystemColor(SWT.COLOR_WHITE));
FontMetrics fontMetrics = e.gc.getFontMetrics();
int stringWidth = fontMetrics.getAverageCharWidth() * string.length();
int stringHeight = fontMetrics.getHeight();
e.gc.drawString(string, (point.x-stringWidth)/2 , (point.y-stringHeight)/2, true);
font.dispose();
}
});

button.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
progressBar.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
shell.setSize(300, 100);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new CountNumbers();
}
}

相關(guān)文章

  • Springboot中如何使用Jackson

    Springboot中如何使用Jackson

    這篇文章主要介紹了Springboot中如何使用Jackson,幫助大家更好的理解和使用springboot框架,感興趣的朋友可以了解下
    2020-11-11
  • 如何在SpringBoot 中使用 Druid 數(shù)據(jù)庫連接池

    如何在SpringBoot 中使用 Druid 數(shù)據(jù)庫連接池

    這篇文章主要介紹了SpringBoot 中使用 Druid 數(shù)據(jù)庫連接池的實(shí)現(xiàn)步驟,幫助大家更好的理解和學(xué)習(xí)使用SpringBoot,感興趣的朋友可以了解下
    2021-03-03
  • 關(guān)于synchronized、volatile、ReentrantLock的區(qū)別與對比

    關(guān)于synchronized、volatile、ReentrantLock的區(qū)別與對比

    這篇文章主要介紹了關(guān)于synchronized、volatile、ReentrantLock的區(qū)別與對比,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-04-04
  • java web實(shí)現(xiàn)簡單留言板功能

    java web實(shí)現(xiàn)簡單留言板功能

    這篇文章主要為大家詳細(xì)介紹了java web實(shí)現(xiàn)簡單留言板功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-11-11
  • Java線程中start和run方法全面解析

    Java線程中start和run方法全面解析

    這篇文章主要介紹了Java線程中start和run方法的相關(guān)資料,非常不錯,具有參考借鑒價(jià)值,需要的朋友可以參考下
    2016-08-08
  • Spring AspectJ 實(shí)現(xiàn)AOP的方法你了解嗎

    Spring AspectJ 實(shí)現(xiàn)AOP的方法你了解嗎

    這篇文章主要為大家介紹了Spring AspectJ 實(shí)現(xiàn)AOP的方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下,希望能夠給你帶來幫助
    2022-01-01
  • Java多線程 Guarded Suspension設(shè)計(jì)模式

    Java多線程 Guarded Suspension設(shè)計(jì)模式

    這篇文章主要介紹了Java多線程 Guarded Suspension設(shè)計(jì)模式,Guarded Suspension意為保護(hù)暫停,其核心思想是僅當(dāng)服務(wù)進(jìn)程準(zhǔn)備好時(shí),才提供服務(wù),文章圍繞Java多線程 Guarded Suspension展開內(nèi)容,需要的朋友可以參考一下
    2021-10-10
  • java實(shí)現(xiàn)emqx設(shè)備上下線監(jiān)聽詳解

    java實(shí)現(xiàn)emqx設(shè)備上下線監(jiān)聽詳解

    這篇文章主要為大家介紹了java實(shí)現(xiàn)emqx設(shè)備上下線監(jiān)聽詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-07-07
  • 線程池之newCachedThreadPool可緩存線程池的實(shí)例

    線程池之newCachedThreadPool可緩存線程池的實(shí)例

    這篇文章主要介紹了線程池之newCachedThreadPool可緩存線程池的實(shí)例,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-06-06
  • SpringBoot單元測試使用@Test沒有run方法的解決方案

    SpringBoot單元測試使用@Test沒有run方法的解決方案

    這篇文章主要介紹了SpringBoot單元測試使用@Test沒有run方法的解決方案,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-01-01

最新評論

资兴市| 海安县| 房产| 宁明县| 香格里拉县| 牟定县| 贡嘎县| 津市市| 永城市| 陈巴尔虎旗| 靖江市| 开原市| 涿州市| 通海县| 永州市| 新巴尔虎右旗| 南京市| 苗栗县| 黔西县| 乐安县| 徐州市| 博客| 德令哈市| 叶城县| 虹口区| 剑河县| 英山县| 库尔勒市| 宿松县| 湘西| 霍山县| 东源县| 大埔区| 仙居县| 桐梓县| 永年县| 寿阳县| 铜陵市| 中山市| 荔波县| 白河县|