Package org.pentaho.reporting.engine.classic.core.designtime

Examples of org.pentaho.reporting.engine.classic.core.designtime.ReportModelEventFilterFactory


    putValue(Action.NAME, ActionMessages.getString("ScaleAction.Text"));
    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString("ScaleAction.Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("ScaleAction.Mnemonic"));
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("ScaleAction.Accelerator"));

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(ElementStyleKeys.SCALE);
  }
View Full Code Here


    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("TextAlignmentLeftAction.Mnemonic"));
    putValue(Action.SMALL_ICON, IconLoader.getInstance().getTextAlignLeftCommand());
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("TextAlignmentLeftAction.Accelerator"));
    putValue(Action.SELECTED_KEY, Boolean.FALSE);

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(ElementStyleKeys.ALIGNMENT);
  }
View Full Code Here

    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("UnderlineAction.Mnemonic"));
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("UnderlineAction.Accelerator"));
    putValue(Action.SMALL_ICON, IconLoader.getInstance().getUnderlineCommand());
    putValue(Action.SELECTED_KEY, Boolean.FALSE);

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(TextStyleKeys.UNDERLINED);
  }
View Full Code Here

    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString("StrikethroughAction.Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("StrikethroughAction.Mnemonic"));
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("StrikethroughAction.Accelerator"));
    putValue(Action.SELECTED_KEY, Boolean.FALSE);

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(TextStyleKeys.STRIKETHROUGH);
  }
View Full Code Here

    putValue(Action.NAME, ActionMessages.getString("EditContentRefAction.Text"));
    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString("EditContentRefAction.Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("EditContentRefAction.Mnemonic"));
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("EditContentRefAction.Accelerator"));

    eventFilter = new ReportModelEventFilterFactory().createAttributeFilter
        (AttributeNames.Core.NAMESPACE, AttributeNames.Core.ELEMENT_TYPE);
  }
View Full Code Here

    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString("TextAlignmentJustifyAction.Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("TextAlignmentJustifyAction.Mnemonic"));
    putValue(Action.SMALL_ICON, IconLoader.getInstance().getTextAlignJustifyCommand());
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("TextAlignmentJustifyAction.Accelerator"));

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(ElementStyleKeys.ALIGNMENT);
  }
View Full Code Here

    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString("ItalicsAction.Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("ItalicsAction.Mnemonic"));
    putValue(Action.SMALL_ICON, IconLoader.getInstance().getItalicCommand());
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("ItalicsAction.Accelerator"));

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(TextStyleKeys.ITALIC);
  }
View Full Code Here

    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("TextAlignmentCenterAction.Mnemonic"));
    putValue(Action.SMALL_ICON, IconLoader.getInstance().getTextAlignCenterCommand());
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("TextAlignmentCenterAction.Accelerator"));
    putValue(Action.SELECTED_KEY, Boolean.FALSE);

    eventFilter = new ReportModelEventFilterFactory().createStyleFilter(ElementStyleKeys.ALIGNMENT);
  }
View Full Code Here

    putValue(Action.NAME, ActionMessages.getString("HideElementAction.Text"));
    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString("HideElementAction.Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic("HideElementAction.Mnemonic"));
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke("HideElementAction.Accelerator"));

    eventFilter = new ReportModelEventFilterFactory().createAttributeFilter
        (ReportDesignerParserModule.NAMESPACE, ReportDesignerParserModule.HIDE_IN_LAYOUT_GUI_ATTRIBUTE);
  }
View Full Code Here

      throw new NullPointerException();
    }

    this.prefix = prefix;
    this.layoutMode = layoutMode;
    this.eventFilter = new ReportModelEventFilterFactory().createStyleFilter(BandStyleKeys.LAYOUT);

    putValue(Action.NAME, ActionMessages.getString(prefix + ".Text"));
    putValue(Action.SHORT_DESCRIPTION, ActionMessages.getString(prefix + ".Description"));
    putValue(Action.MNEMONIC_KEY, ActionMessages.getOptionalMnemonic(prefix + ".Mnemonic"));
    putValue(Action.ACCELERATOR_KEY, ActionMessages.getOptionalKeyStroke(prefix + ".Accelerator"));
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.designtime.ReportModelEventFilterFactory

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.