Package org.pentaho.reporting.engine.classic.core.modules.gui.common

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.common.GuiContext


    final PageDefinition originalPageDef = report.getPageDefinition();

    if ("true".equals(ClassicEngineBoot.getInstance().getGlobalConfig().getConfigProperty // NON-NLS
        ("org.pentaho.reporting.engine.classic.core.modules.gui.print.UseAlternatePageSetupDialog"))) // NON-NLS
    {
      final GuiContext context = new DefaultGuiContext();
      final PageSetupDialog dialog;
      final Window proxy = LibSwingUtil.getWindowAncestor(getReportDesignerContext().getView().getParent());
      if (proxy instanceof Frame)
      {
        dialog = new PageSetupDialog(context, (Frame) proxy);
View Full Code Here


    final PageDefinition originalPageDef = report.getPageDefinition();

    if ("true".equals(ClassicEngineBoot.getInstance().getGlobalConfig().getConfigProperty // NON-NLS
        ("org.pentaho.reporting.engine.classic.core.modules.gui.print.UseAlternatePageSetupDialog"))) // NON-NLS
    {
      final GuiContext context = new DefaultGuiContext();
      final PageSetupDialog dialog;
      final Window proxy = SwingUtil.getWindowAncestor(getReportDesignerContext().getParent());
      if (proxy instanceof Frame)
      {
        dialog = new PageSetupDialog(context, (Frame) proxy);
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.modules.gui.common.GuiContext

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.