⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 verticaltext.java

📁 自己建立的项目
💻 JAVA
字号:
package com.swtSample.graphics;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.widgets.*;

/**
 * This class demonstrates how to draw vertical text
 */
public class VerticalText {
  /**
   * Runs the application
   */
  public void run() {
    Display display = new Display();
    final Shell shell = new Shell(display);
    final Font font = new Font(display, "Arial", 36, SWT.ITALIC);

    shell.addPaintListener(new PaintListener() {
      public void paintControl(PaintEvent event) {
        // Set the font
        event.gc.setFont(font);

        // Draw some text up in the upper left
        GraphicsUtils.drawVerticalText("Hello", 0, 0, event.gc, SWT.UP);

        // Draw some text down in the lower right
        // Note how we calculate the origin
        String goodBye = "Good Bye";
        Point pt = event.gc.textExtent(goodBye);
        Rectangle rect = shell.getClientArea();
        GraphicsUtils.drawVerticalText(goodBye, rect.width - pt.y, rect.height
            - pt.x, event.gc, SWT.DOWN);
      }
    });
    shell.setText("Vertical Text");
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    font.dispose();
    display.dispose();
  }

  /**
   * The application entry point
   * 
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    new VerticalText().run();
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -