summaryrefslogtreecommitdiff
path: root/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/PixelConverter.java
blob: 1e3699f762c71c4cea93639697933c66889ce700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*******************************************************************************
 * Copyright (c) 2011 Google, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Google, Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.wb.internal.core.utils.ui;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.graphics.FontMetrics;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.widgets.Control;

/**
 * Helper class for converting DLU and char size into pixels.
 * 
 * Based on code from JDT UI.
 * 
 * @author scheglov_ke
 */
public class PixelConverter {
  private final FontMetrics fFontMetrics;

  ////////////////////////////////////////////////////////////////////////////
  //
  // Constructors
  //
  ////////////////////////////////////////////////////////////////////////////
  public PixelConverter(Control control) {
    GC gc = new GC(control);
    gc.setFont(control.getFont());
    fFontMetrics = gc.getFontMetrics();
    gc.dispose();
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // Conversions
  //
  ////////////////////////////////////////////////////////////////////////////
  /**
   * see org.eclipse.jface.dialogs.DialogPage#convertHeightInCharsToPixels(int)
   */
  public int convertHeightInCharsToPixels(int chars) {
    return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars);
  }

  /**
   * see org.eclipse.jface.dialogs.DialogPage#convertHorizontalDLUsToPixels(int)
   */
  public int convertHorizontalDLUsToPixels(int dlus) {
    return Dialog.convertHorizontalDLUsToPixels(fFontMetrics, dlus);
  }

  /**
   * see org.eclipse.jface.dialogs.DialogPage#convertVerticalDLUsToPixels(int)
   */
  public int convertVerticalDLUsToPixels(int dlus) {
    return Dialog.convertVerticalDLUsToPixels(fFontMetrics, dlus);
  }

  /**
   * see org.eclipse.jface.dialogs.DialogPage#convertWidthInCharsToPixels(int)
   */
  public int convertWidthInCharsToPixels(int chars) {
    return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
  }
}