打印gwt小部件

时间:2009-11-05 07:33:38

标签: gwt printing

谁能告诉我如何打印gwt小部件?

我不会通过以下线程尝试。

http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/eea48bafbe8eed63

我仍然无法做到这一点。我可以在没有任何CSS样式的情况下打印小部件。我也希望包含css样式(css文件)。感谢您的宝贵帮助。

2 个答案:

答案 0 :(得分:0)

我使用您使用过的相同链接遇到了类似的情况。 它可以毫无问题地打印字符串,窗口小部件或元素。

我发现解决方案是在调用Print之前需要一些延迟。

所以,很少有替代解决方案。 1.记下一个导致延迟2-3秒的循环。 2.使用时间延迟2-3秒 3.使用Window.Confirm提出一些问题,例如“你想要打印吗?”

希望这会对其他人有所帮助

答案 1 :(得分:0)

您可以创建自己的类,然后单击应用程序中的“打印”按钮,使用本机打印方法可以调用Window.Print()。

GWT UIObject可以用于此目的,方法和它将被转换为字符串。

public class NTPrint {
    /**
     * If true, use a Timer instead to print the internal frame
     */
    public static boolean USE_TIMER = true;

    /**
     * Time in seconds to wait before printing the internal frame when using Timer
     */
    public static int TIMER_DELAY = 1;

    public static native void it() /*-{ 
        $wnd.print(); 
    }-*/; 

    public static void it(String html) {
        try{
            buildFrame(html);
            if (USE_TIMER) {
                Timer timer = new Timer() {
                    public void run() {
                        printFrame();
                    }
                };
                timer.schedule(TIMER_DELAY * 1000);
            } else {
                printFrame();
            }
        }
        catch (Throwable exc) {
            CommonUtil.printStackTrace(exc);
            Window.alert(exc.getMessage());
        }
    }

    /**
     * This method will be called when you pass Widget without style.
     * @param uiObjects
     */
    public static void it( UIObject...uiObjects) { 
        StringBuffer objString= new StringBuffer();
        for(UIObject obj: uiObjects)
                objString.append(obj.toString());
            it("", objString.toString()); 
    } 

}

点击“打印”按钮,

  /**
         * prints all forms
         * @param documentInfo
         */
        public static void printForms(List<FormTransaction> formTransactions, String documentInfo, List<CellTransaction> cellTransactionList, boolean isComment, Document document) {
                String style = "<link rel='styleSheet' type='text/css' href='v4workflow/css/style.css'>"
                                + "<link rel='styleSheet' type='text/css' href='v4workflow/css/gwtcontrols.css'>"
                                + "<style type='text/css' media='print'>"
                                + "@media print {"
                                + ".footerText{font-size:13px; font-weight:normal;margin-top:0px;}"
                                + ".break {page-break-after:always}"
                                + "}" + "</style>";
                List<UIObject> uiObjects = new ArrayList<UIObject>();
                NTPrintLayout printLayout = new NTPrintLayout();
                printLayout.setSelectedDocument(null);
                uiObjects.add(createHeader());
                NTPrint.it(style,uiObjects);
        }

 public static FlexTable createHeader(){
                FlexTable flexTable = new FlexTable();
                flexTable.setWidth("100%");
                return flexTable;
        }