Get the extent of a string : Draw String « SWT 2D Graphics « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » SWT 2D Graphics » Draw String 
18. 14. 7. Get the extent of a string
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ControlEditor;
import org.eclipse.swt.events.ControlAdapter;
import org.eclipse.swt.events.ControlEvent;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Canvas;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class FontSizeString {
  private static final String STRING = "www.java2java.com";

  private static final String[] SIZES = "8""10""12""14""16""18" };

  private static Font font;

  public static void main(String[] a) {
    Display display = new Display();
    final Shell shell = new Shell(display);
    shell.setText("Extents");

    final Canvas canvas = new Canvas(shell, SWT.NONE);

    shell.addControlListener(new ControlAdapter() {
      public void controlResized(ControlEvent event) {
        canvas.setBounds(shell.getClientArea());
      }
    });
    canvas.addPaintListener(new PaintListener() {
      public void paintControl(PaintEvent event) {
        event.gc.setFont(font);
        Point pt = event.gc.stringExtent(STRING);

        System.out.println(pt);
      }
    });

    // Create an editor to house the dropdown
    ControlEditor editor = new ControlEditor(canvas);

    // Create the combo and fill it
    final Combo combo = new Combo(canvas, SWT.READ_ONLY);
    for (int i = 0, n = SIZES.length; i < n; i++) {
      combo.add(SIZES[i]);
    }

    // Set up the editor
    editor.horizontalAlignment = SWT.CENTER;
    editor.verticalAlignment = SWT.TOP;
    Point size = combo.computeSize(SWT.DEFAULT, SWT.DEFAULT);
    editor.minimumWidth = size.x;
    editor.minimumHeight = size.y;
    editor.setEditor(combo);

    combo.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(SelectionEvent event) {
        if (font != null)
          font.dispose();
        font = new Font(shell.getDisplay()"Helvetica"new Integer(combo.getText()).intValue(),
            SWT.BOLD);
        canvas.redraw();
      }
    });

    // Select the first item in the combo
    combo.select(0);

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    if (font != null)
      font.dispose();
    display.dispose();
  }
}
18. 14. Draw String
18. 14. 1. Draw string and display newlines and tabs as nonprintable characters.Draw string and display newlines and tabs as nonprintable characters.
18. 14. 2. String with new line and tabString with new line and tab
18. 14. 3. Draw string and display newlines and tabs as nonprintable characters: isTransparentDraw string and display newlines and tabs as nonprintable characters: isTransparent
18. 14. 4. Draw string and process newlines and expanding tabs: drawText(String text, int x, int y)Draw string and process newlines and expanding tabs: drawText(String text, int x, int y)
18. 14. 5. Draw string and process newlines and expanding tabs: drawText(String text, int x, int y, boolean isTransparent)Draw string and process newlines and expanding tabs: drawText(String text, int x, int y, boolean isTransparent)
18. 14. 6. Draw string and processing newlines and expanding tabsDraw string and processing newlines and expanding tabs
18. 14. 7. Get the extent of a string
18. 14. 8. Measure a String
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.