]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - org.argeo.eclipse.ui/src/org/argeo/eclipse/ui/EclipseUiUtils.java
Enrich Eclipse UI Utils
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui / src / org / argeo / eclipse / ui / EclipseUiUtils.java
index 06f569dce7c216467543d3a4dbfe90fed8c9cf2e..52eaf9b8412fb97e47924df53646fffff6286847 100644 (file)
@@ -19,6 +19,8 @@ import org.eclipse.jface.resource.JFaceResources;
 import org.eclipse.swt.SWT;
 import org.eclipse.swt.events.ModifyListener;
 import org.eclipse.swt.graphics.Font;
+import org.eclipse.swt.layout.FormAttachment;
+import org.eclipse.swt.layout.FormData;
 import org.eclipse.swt.layout.GridData;
 import org.eclipse.swt.layout.GridLayout;
 import org.eclipse.swt.widgets.Composite;
@@ -27,8 +29,7 @@ import org.eclipse.swt.widgets.Text;
 
 /** Utilities to simplify UI development. */
 public class EclipseUiUtils {
-       
-       
+
        //
        // Simplify grid layouts management
        //
@@ -48,23 +49,46 @@ public class EclipseUiUtils {
                return grabWidth(SWT.FILL, SWT.FILL);
        }
 
+       public static GridData fillWidth(int colSpan) {
+               GridData gd = grabWidth(SWT.FILL, SWT.FILL);
+               gd.horizontalSpan = colSpan;
+               return gd;
+       }
+
        public static GridData fillAll() {
                return new GridData(SWT.FILL, SWT.FILL, true, true);
        }
 
+       public static GridData fillAll(int colSpan, int rowSpan) {
+               return new GridData(SWT.FILL, SWT.FILL, true, true, colSpan, rowSpan);
+       }
+
        public static GridData grabWidth(int horizontalAlignment,
                        int verticalAlignment) {
                return new GridData(horizontalAlignment, horizontalAlignment, true,
                                false);
        }
 
-       
-       
-       
-       
+       //
+       // Simplify Form layout management
+       //
+
        /**
-        * Create a label and a text field for a grid layout, the text field grabbing
-        * excess horizontal
+        * Creates a basic form data that is attached to the 4 corners of the parent
+        * composite
+        */
+       public static FormData fillFormData() {
+               FormData formData = new FormData();
+               formData.top = new FormAttachment(0, 0);
+               formData.left = new FormAttachment(0, 0);
+               formData.right = new FormAttachment(100, 0);
+               formData.bottom = new FormAttachment(100, 0);
+               return formData;
+       }
+
+       /**
+        * Create a label and a text field for a grid layout, the text field
+        * grabbing excess horizontal
         * 
         * @param parent
         *            the parent composite
@@ -127,6 +151,10 @@ public class EclipseUiUtils {
                return txt;
        }
 
+       //
+       // FONTS
+       //
+
        /** Shortcut to retrieve default italic font from display */
        public static Font getItalicFont(Composite parent) {
                return JFaceResources.getFontRegistry().defaultFontDescriptor()