Package org.pentaho.reporting.designer.core.settings

Examples of org.pentaho.reporting.designer.core.settings.WorkspaceSettings


   * Invoked when an action occurs.
   */
  public void actionPerformed(final ActionEvent e)
  {
    final ReportDesignerContext context = getReportDesignerContext();
    final WorkspaceSettings theWorkspaceSettings = WorkspaceSettings.getInstance();
    theWorkspaceSettings.setBounds(context.getParent().getBounds());
    final int contextCount = context.getReportRenderContextCount();
    final ReportRenderContext[] contextArray = new ReportRenderContext[contextCount];
    for (int i = 0; i < contextCount; i++)
    {
      contextArray[i] = context.getReportRenderContext(i);
View Full Code Here


  /**
   * Invoked when an action occurs.
   */
  public void actionPerformed(final ActionEvent e)
  {
    final WorkspaceSettings applicationSettings = WorkspaceSettings.getInstance();
    applicationSettings.setShowElementAlignmentHints(!applicationSettings.isShowElementAlignmentHints());
  }
View Full Code Here

  /**
   * Invoked when an action occurs.
   */
  public void actionPerformed(final ActionEvent e)
  {
    final WorkspaceSettings applicationSettings = WorkspaceSettings.getInstance();
    applicationSettings.setShowOverlappingElements(!applicationSettings.isShowOverlappingElements());
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.designer.core.settings.WorkspaceSettings

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.