Schnittstelle ToolBar

Alle Superschnittstellen:
ReportViewChangeListener
Alle bekannten Implementierungsklassen:
SwingToolBar

public interface ToolBar extends ReportViewChangeListener
The toolbar which contains various buttons.
Seit:
7.0
  • Feldübersicht

    Felder
    Modifikator und Typ
    Feld
    Beschreibung
    static final int
    Button responsible for the export action
    static final int
    Button responsible for showing the info dialog
    static final int
    Button responsible for action loading java report archive (JRA)
    static final int
    Button responsible for action saving java report archive (JRA)
    static final int
    Button responsible for the print action
    static final int
    Button responsible for the refresh action
    static final int
    Button responsible for the search action
    static final int
    Button group of all "general" buttons
    static final int
    Button group of all "navigation" buttons such as "next page", "previous page", etc.
    static final int
    Button group of all various "report" buttons such as "search", "export", and "refresh".
    static final int
    Button group of all "view" buttons such as "double page view", "single page view", etc.
    static final int
    Button group of all "zoom" buttons, that is - "zoom in", "zoom out".
  • Methodenübersicht

    Modifikator und Typ
    Methode
    Beschreibung
    Returns the gui component of this toolbar.
    boolean
    isButtonsVisible(int buttons)
    Return true if the button or button group is visible otherwise false.
    boolean
    Determines whether this component should be visible when its parent is visible.
    void
    setButtonsVisible(int buttons, boolean visible)
    Sets a button or a button group visible or invisible.
    void
    setVisible(boolean vis)
    Shows or hides this component depending on the value of parameter b.

    Von Schnittstelle geerbte Methoden ReportViewChangeListener

    reportViewChanged
  • Felddetails

    • BUTTONS_GENERAL

      static final int BUTTONS_GENERAL
      Button group of all "general" buttons
      Seit:
      7.0
      Siehe auch:
    • BUTTONS_NAVIGATION

      static final int BUTTONS_NAVIGATION
      Button group of all "navigation" buttons such as "next page", "previous page", etc.
      Seit:
      7.0
      Siehe auch:
    • BUTTONS_VIEW

      static final int BUTTONS_VIEW
      Button group of all "view" buttons such as "double page view", "single page view", etc.
      Seit:
      7.0
      Siehe auch:
    • BUTTONS_ZOOM

      static final int BUTTONS_ZOOM
      Button group of all "zoom" buttons, that is - "zoom in", "zoom out".
      Seit:
      7.0
      Siehe auch:
    • BUTTONS_REPORT

      static final int BUTTONS_REPORT
      Button group of all various "report" buttons such as "search", "export", and "refresh".
      Seit:
      7.0
      Siehe auch:
    • BUTTON_PRINT

      static final int BUTTON_PRINT
      Button responsible for the print action
      Seit:
      7.0
      Siehe auch:
    • BUTTON_REFRESH

      static final int BUTTON_REFRESH
      Button responsible for the refresh action
      Seit:
      7.0
      Siehe auch:
    • BUTTON_EXPORT

      static final int BUTTON_EXPORT
      Button responsible for the export action
      Seit:
      7.0
      Siehe auch:
    • BUTTON_INFO

      static final int BUTTON_INFO
      Button responsible for showing the info dialog
      Seit:
      7.0
      Siehe auch:
    • BUTTON_JRA_LOAD

      static final int BUTTON_JRA_LOAD
      Button responsible for action loading java report archive (JRA)
      Seit:
      7.0
      Siehe auch:
    • BUTTON_JRA_SAVE

      static final int BUTTON_JRA_SAVE
      Button responsible for action saving java report archive (JRA)
      Seit:
      7.0
      Siehe auch:
  • Methodendetails

    • setButtonsVisible

      void setButtonsVisible(int buttons, boolean visible)
      Sets a button or a button group visible or invisible.
      Parameter:
      buttons - The identifier for the button or button group
      visible - True if the button shoulb be visible otherwise false
      Seit:
      7.0
      Siehe auch:
    • isButtonsVisible

      boolean isButtonsVisible(int buttons)
      Return true if the button or button group is visible otherwise false.
      Parameter:
      buttons - The specified button or button group
      Gibt zurück:
      true if it is visible otherwise false
      Seit:
      7.0
      Siehe auch:
    • setVisible

      void setVisible(boolean vis)
      Shows or hides this component depending on the value of parameter b.
      Parameter:
      vis - if true, shows this component; otherwise, hides this component
      Seit:
      7.0
    • isVisible

      boolean isVisible()
      Determines whether this component should be visible when its parent is visible. Components are initially visible, with the exception of top level components such as Frame objects.
      Gibt zurück:
      true if the component is visible, false otherwise
      Seit:
      7.0
    • getComponent

      Component getComponent()
      Returns the gui component of this toolbar.
      Gibt zurück:
      The gui component of this toolbar
      Seit:
      7.0