new version with WorkingCopy Management
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / util / SWTUtil.java
index 5344dc0..ffdd686 100644 (file)
@@ -1,12 +1,16 @@
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
 package net.sourceforge.phpdt.internal.ui.util;
 
 
-import org.eclipse.jface.dialogs.IDialogConstants;
-import org.eclipse.jface.util.Assert;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.dnd.DragSource;
 import org.eclipse.swt.dnd.DropTarget;
@@ -18,8 +22,13 @@ import org.eclipse.swt.widgets.Display;
 import org.eclipse.swt.widgets.Menu;
 import org.eclipse.swt.widgets.ScrollBar;
 import org.eclipse.swt.widgets.Shell;
+import org.eclipse.swt.widgets.Table;
 import org.eclipse.swt.widgets.Widget;
 
+import org.eclipse.jface.dialogs.IDialogConstants;
+import org.eclipse.jface.resource.JFaceResources;
+import org.eclipse.jface.util.Assert;
+
 /**
  * Utility class to simplify access to some SWT resources. 
  */
@@ -66,6 +75,8 @@ public class SWTUtil {
         * Returns a width hint for a button control.
         */
        public static int getButtonWidthHint(Button button) {
+               if (button.getFont().equals(JFaceResources.getDefaultFont()))
+                       button.setFont(JFaceResources.getDialogFont());
                PixelConverter converter= new PixelConverter(button);
                int widthHint= converter.convertHorizontalDLUsToPixels(IDialogConstants.BUTTON_WIDTH);
                return Math.max(widthHint, button.computeSize(SWT.DEFAULT, SWT.DEFAULT, true).x);
@@ -75,6 +86,8 @@ public class SWTUtil {
         * Returns a height hint for a button control.
         */             
        public static int getButtonHeigthHint(Button button) {
+               if (button.getFont().equals(JFaceResources.getDefaultFont()))
+                       button.setFont(JFaceResources.getDialogFont());
                PixelConverter converter= new PixelConverter(button);
                return converter.convertVerticalDLUsToPixels(IDialogConstants.BUTTON_HEIGHT);
        }       
@@ -94,7 +107,16 @@ public class SWTUtil {
                        ((GridData)gd).heightHint= getButtonHeigthHint(button);
                        ((GridData)gd).widthHint= getButtonWidthHint(button);            
                }
-       }               
+       }
+       
+       public static int getTableHeightHint(Table table, int rows) {
+               if (table.getFont().equals(JFaceResources.getDefaultFont()))
+                       table.setFont(JFaceResources.getDialogFont());
+               int result= table.getItemHeight() * rows + table.getHeaderHeight();
+               if (table.getLinesVisible())
+                       result+= table.getGridLineWidth() * (rows - 1);
+               return result;          
+       }
        
 
-}
\ No newline at end of file
+}