//# 0 errors, 26 messages
//#
/*
    //#StatusBar.java:1:1: class: com.dmdirc.ui.interfaces.StatusBar
    //#StatusBar.java:1:1: method: com.dmdirc.ui.interfaces.StatusBar.com.dmdirc.ui.interfaces.StatusBar__static_init
 * Copyright (c) 2006-2009 Chris Smith, Shane Mc Cormack, Gregory Holmes
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.dmdirc.ui.interfaces;

/**
 * Status bar interface.
 */
public interface StatusBar {
    
    /**
     * sets the message in the status bar.
     *
     * @param newMessage Message to display
     */
    void setMessage(final String newMessage);
    
    /**
     * sets the message in the status bar.
     *
     * @param iconType Message icon
     * @param newMessage Message to display
     * 
     * @since 0.6
     */
    void setMessage(final String iconType, final String newMessage);
    
    /**
     * Sets the message in the status bar with a specified callback event
     * using the default timeout.
     *
     * @param newMessage Message to display
     * @param newNotifier status message notifier to be notified for events on
     * this message
     * 
     * @since 0.6
     */
    void setMessage(final String newMessage, 
            final StatusMessageNotifier newNotifier);
    
    /**
     * Sets the message in the status bar with a specified callback event
     * using the default timeout.
     *
     * @param iconType Message icon
     * @param newMessage Message to display
     * @param newNotifier status message notifier to be notified for events on
     * this message
     * 
     * @since 0.6
     */
    void setMessage(final String iconType, final String newMessage, 
            final StatusMessageNotifier newNotifier);
    
    /**
     * Sets the message in the status bar with a specified callback event for
     * a specified time.
     *
     * @param newMessage Message to display
     * @param newNotifier status message notifier to be notified for events on
     * this message
     * @param timeout message timeout in seconds
     */
    void setMessage(final String newMessage,
            final StatusMessageNotifier newNotifier, final int timeout);
    
    /**
     * Sets the message in the status bar with a specified callback event for
     * a specified time.
     *
     * @param iconType Message icon
     * @param newMessage Message to display
     * @param newNotifier status message notifier to be notified for events on
     * this message
     * @param timeout message timeout in seconds
     * 
     * @since 0.6
     */
    void setMessage(final String iconType, final String newMessage,
            final StatusMessageNotifier newNotifier, final int timeout);
    
    /**
     * Removes the message from the status bar.
     */
    void clearMessage();
    
    /**
     * Adds a component to the status bar.
     *
     * @param component component to add
     */
    void addComponent(final StatusBarComponent component);
    
    /**
     * Removes a component to the status bar.
     *
     * @param component component to add
     */
    void removeComponent(final StatusBarComponent component);
    
    /**
     * Returns true if the status bar is visible.
     *
     * @return true iff the status bar is visible
     */
    boolean isVisible();
    
}
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Descendant_Table[com/dmdirc/ui/interfaces/StatusBar]
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.addComponent(Lcom/dmdirc/ui/interfaces/StatusBarComponent;)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.clearMessage()V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.isVisible()Z
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.removeComponent(Lcom/dmdirc/ui/interfaces/StatusBarComponent;)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;I)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Ljava/lang/String;)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;)V
    //#output(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;I)V
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Descendant_Table[com/dmdirc/ui/interfaces/StatusBar] == &__Dispatch_Table
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.addComponent(Lcom/dmdirc/ui/interfaces/StatusBarComponent;)V == &addComponent
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.clearMessage()V == &clearMessage
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.isVisible()Z == &isVisible
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.removeComponent(Lcom/dmdirc/ui/interfaces/StatusBarComponent;)V == &removeComponent
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;)V == &setMessage
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;)V == &setMessage
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;I)V == &setMessage
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Ljava/lang/String;)V == &setMessage
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;)V == &setMessage
    //#post(com.dmdirc.ui.interfaces.StatusBar__static_init): __Dispatch_Table.setMessage(Ljava/lang/String;Ljava/lang/String;Lcom/dmdirc/ui/interfaces/StatusMessageNotifier;I)V == &setMessage
    //#StatusBar.java:: end of method: com.dmdirc.ui.interfaces.StatusBar.com.dmdirc.ui.interfaces.StatusBar__static_init
    //#StatusBar.java:: end of class: com.dmdirc.ui.interfaces.StatusBar
