Examples of MCTViewManifestationInfo


Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

    /** Set the panel title font size from the manifestation info
     * @param newFontSize the new font size
     */
    public void setTitleFontSize(Integer newFontSize) {
        if (this.titlePanel.isVisible()) {
            MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
            manifestInfo.setPanelTitleFontSize(newFontSize);
            setTitleFromManifestation(manifestInfo);
            revalidate();
            notifyTitleChanged();
        }
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

    /** Set the panel title font style from the manifestation info
     * @param newFontStyle the new font style
     */
    public void setTitleFontStyle(Integer newFontStyle) {
        if (this.titlePanel.isVisible()) {
            MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
            manifestInfo.setPanelTitleFontStyle(newFontStyle);
            setTitleFromManifestation(manifestInfo);
            revalidate();
            notifyTitleChanged();
        }
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

    /** Set the panel title font underline from the manifestation info
     * @param newFontStyle the title font underline style
     */
    public void setTitleFontUnderline(Integer newFontStyle) {
        if (this.titlePanel.isVisible()) {
            MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
            manifestInfo.setPanelTitleFontUnderline(newFontStyle);
            setTitleFromManifestation(manifestInfo);
            revalidate();
            notifyTitleChanged();
        }
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

    /** Set the panel title font color from the manifestation info
     * @param newTitleFontForegroundColor
     */
    public void setTitleFontForegroundColor(Integer newTitleFontForegroundColor) {
        if (this.titlePanel.isVisible()) {
            MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
            manifestInfo.setPanelTitleFontForegroundColor(newTitleFontForegroundColor);
            setTitleFromManifestation(manifestInfo);
            revalidate();
            notifyTitleChanged();
        }
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

    /** Set the panel title background color from the manifestation info
     * @param newTitleFontBackgroundColor
     */
    public void setTitleFontBackgroundColor(Integer newTitleFontBackgroundColor) {
        if (this.titlePanel.isVisible()) {
            MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
            manifestInfo.setPanelTitleFontBackgroundColor(newTitleFontBackgroundColor);
            setTitleFromManifestation(manifestInfo);
            revalidate();
            notifyTitleChanged();
        }
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

            notifyTitleChanged();
        }
    }
   
    public String getTitle() {
        MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
        if (manifestInfo.getPanelTitle() == null) {
            return wrappedManifestation.getManifestedComponent().getDisplayName();
        }
        return manifestInfo.getPanelTitle();
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

   
    /** Get the panel title font from the manifestation info
     * @return the panel title font from the manifestation info
     */
    public String getTitleFont() {
        MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
        return manifestInfo.getPanelTitleFont();
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

   
    /** Get the panel title font size from the manifestation info
     * @return the panel title font size from the manifestation info
     */
    public Integer getTitleFontSize() {
        MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
        return manifestInfo.getPanelTitleFontSize();
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

   
    /** Get the panel title font style from the manifestation info
     * @return the panel title font style from the manifestation info
     */
    public Integer getTitleFontStyle() {
        MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
        return manifestInfo.getPanelTitleFontStyle();
    }
View Full Code Here

Examples of gov.nasa.arc.mct.gui.MCTViewManifestationInfo

   
    /** Get the panel title font underline style from the manifestation info
     * @return the panel title font underline style from the manifestation info
     */
    public Integer getTitleFontUnderline() {
        MCTViewManifestationInfo manifestInfo = CanvasManifestation.getManifestationInfo(this.wrappedManifestation);
        return manifestInfo.getPanelTitleFontUnderline();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.