Class DialogArea

java.lang.Object
org.eclipse.nebula.widgets.opal.dialog.DialogArea
Direct Known Subclasses:
FooterArea, MessageArea

abstract class DialogArea
extends java.lang.Object
This abstract class if the mother of MessageArea and FooterArea classes
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected Dialog parent  
  • Constructor Summary

    Constructors 
    Constructor Description
    DialogArea​(Dialog parent)
    Constructor
  • Method Summary

    Modifier and Type Method Description
    protected org.eclipse.swt.graphics.Font getBiggerFont()  
    protected org.eclipse.swt.graphics.Image getFewerDetailsImage()  
    protected org.eclipse.swt.graphics.Color getGreyColor()  
    protected org.eclipse.swt.graphics.Image getMoreDetailsImage()  
    protected org.eclipse.swt.graphics.Font getNormalFont()  
    protected org.eclipse.swt.graphics.Color getTitleColor()  
    (package private) boolean isInitialised()  
    (package private) abstract void render()
    Render the content of an area
    (package private) void setInitialised​(boolean initialised)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • DialogArea

      public DialogArea​(Dialog parent)
      Constructor
      Parameters:
      parent - parent dialog
  • Method Details

    • render

      abstract void render()
      Render the content of an area
    • isInitialised

      boolean isInitialised()
      Returns:
      the initialised field
    • setInitialised

      void setInitialised​(boolean initialised)
      Parameters:
      initialised - the initialised value to set
    • getNormalFont

      protected org.eclipse.swt.graphics.Font getNormalFont()
      Returns:
      the normal font used by the dialog box
    • getBiggerFont

      protected org.eclipse.swt.graphics.Font getBiggerFont()
      Returns:
      the bigger font used by the dialog box
    • getTitleColor

      protected org.eclipse.swt.graphics.Color getTitleColor()
      Returns:
      the title's color (blue)
    • getGreyColor

      protected org.eclipse.swt.graphics.Color getGreyColor()
      Returns:
      the grey color
    • getFewerDetailsImage

      protected org.eclipse.swt.graphics.Image getFewerDetailsImage()
      Returns:
      the image "fewer details"
    • getMoreDetailsImage

      protected org.eclipse.swt.graphics.Image getMoreDetailsImage()
      Returns:
      the image "more details"