KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > debug > ui > PixelConverter


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.debug.ui;
12
13
14 import org.eclipse.jface.dialogs.Dialog;
15 import org.eclipse.swt.graphics.FontMetrics;
16 import org.eclipse.swt.graphics.GC;
17 import org.eclipse.swt.widgets.Control;
18
19 public class PixelConverter {
20     
21     private FontMetrics fFontMetrics;
22     
23     public PixelConverter(Control control) {
24         GC gc = new GC(control);
25         gc.setFont(control.getFont());
26         fFontMetrics= gc.getFontMetrics();
27         gc.dispose();
28     }
29         
30     /**
31      * @see DialogPage#convertHorizontalDLUsToPixels
32      */

33     public int convertHorizontalDLUsToPixels(int dlus) {
34         return Dialog.convertHorizontalDLUsToPixels(fFontMetrics, dlus);
35     }
36     
37     /**
38      * @see DialogPage#convertWidthInCharsToPixels
39      */

40     public int convertWidthInCharsToPixels(int chars) {
41         return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
42     }
43 }
44
Popular Tags