Package org.pentaho.reporting.designer.core.util.docking

Examples of org.pentaho.reporting.designer.core.util.docking.Category


      propertyChangeSupport.removePropertyChangeListener(propertyName, listener);
    }

    public boolean isStructureVisible()
    {
      final Category reportTreeToolWindow = getReportTreeToolWindow();
      return reportTreeToolWindow != null && reportTreeToolWindow.isMinimized() == false;
    }
View Full Code Here


      return reportTreeToolWindow != null && reportTreeToolWindow.isMinimized() == false;
    }

    public void setStructureVisible(final boolean visible)
    {
      final Category reportTreeToolWindow = getReportTreeToolWindow();
      final boolean oldValue = reportTreeToolWindow.isMinimized() == false;
      reportTreeToolWindow.setMinimized(visible == false);
      propertyChangeSupport.firePropertyChange(STRUCTURE_VISIBLE_PROPERTY, oldValue, visible);
    }
View Full Code Here

      propertyChangeSupport.firePropertyChange(STRUCTURE_VISIBLE_PROPERTY, oldValue, visible);
    }

    public boolean isPropertiesEditorVisible()
    {
      final Category attributeToolWindow = getAttributeToolWindow();
      if (attributeToolWindow == null)
      {
        return false;
      }
      return attributeToolWindow.isMinimized() == false;
    }
View Full Code Here

      return attributeToolWindow.isMinimized() == false;
    }

    public void setPropertiesEditorVisible(final boolean visible)
    {
      final Category attributeToolWindow = getAttributeToolWindow();
      final boolean oldValue = attributeToolWindow.isMinimized() == false;
      attributeToolWindow.setMinimized(visible == false);
      propertyChangeSupport.firePropertyChange(PROPERTIES_EDITOR_VISIBLE_PROPERTY, oldValue, visible);
    }
View Full Code Here

      propertyChangeSupport.firePropertyChange(PROPERTIES_EDITOR_VISIBLE_PROPERTY, oldValue, visible);
    }

    public boolean isMessagesVisible()
    {
      final Category inspectionsToolWindow = getInspectionsToolWindow();
      return inspectionsToolWindow != null && !inspectionsToolWindow.isMinimized();
    }
View Full Code Here

      return inspectionsToolWindow != null && !inspectionsToolWindow.isMinimized();
    }

    public void setMessagesVisible(final boolean visible)
    {
      final Category inspectionsToolWindow = getInspectionsToolWindow();
      final boolean oldValue = inspectionsToolWindow.isMinimized() == false;
      inspectionsToolWindow.setMinimized(visible == false);
      propertyChangeSupport.firePropertyChange(MESSAGES_VISIBLE_PROPERTY, oldValue, visible);
    }
View Full Code Here

  private Category createAttributesToolWindow()
  {
    final ImageIcon propertyTableIcon = IconLoader.getInstance().getPropertyTableIcon();

    return new Category(propertyTableIcon, Messages.getString("Attribute.Title"), attributeEditorPanel);// NON-NLS
  }
View Full Code Here

    inspectionsMessagePanel.setReportDesignerContext(context);

    final InternalWindow inspectionGadgetInternalWindow = new InternalWindow(Messages.getString("InspectionGadget.Title"));// NON-NLS
    inspectionGadgetInternalWindow.add(inspectionsMessagePanel, BorderLayout.CENTER);

    final Category category = new Category
        (IconLoader.getInstance().getMessagesIcon(),
            Messages.getString("Messages.Title"),// NON-NLS
            inspectionGadgetInternalWindow);
    category.setMinimized(true);
    return category;
  }
View Full Code Here

    return category;
  }

  private Category createStructureTreeToolWindow()
  {
    return new Category(IconLoader.getInstance().getReportTreeIcon(),
            Messages.getString("StructureView.Title"),// NON-NLS
            treePanel);

  }
View Full Code Here

    attributeEditorPanel.setAllowAttributeCard(true);
    attributeEditorPanel.setReportDesignerContext(context);

    final ImageIcon propertyTableIcon = IconLoader.getInstance().getPropertyTableIcon();

    return new Category(propertyTableIcon, Messages.getString("Attribute.Title"), attributeEditorPanel);// NON-NLS
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.util.docking.Category

Copyright © 2018 www.massapicom. 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.