Files
loongoffice/bean/qa/complex/bean/WriterFrame.java
Noel Grandin 0c18bedb73 java: 'final static' to 'static final'
this is the canonical order, and it makes the code easier to read

Change-Id: I272e7f1e140296e582702b6dbf77a03eefb65470
Reviewed-on: https://gerrit.libreoffice.org/16242
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
2015-06-15 08:45:19 +00:00

201 lines
6.8 KiB
Java

/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package complex.bean;
import com.sun.star.uno.XComponentContext;
import java.awt.Rectangle;
import java.awt.Insets;
import java.awt.BorderLayout;
import com.sun.star.comp.beans.OOoBean;
import com.sun.star.uno.UnoRuntime;
class WriterFrame extends java.awt.Frame
{
private com.sun.star.comp.beans.OOoBean m_bean;
private static final String m_sDocURL = "private:factory/swriter";
/**
@param loadBeforeVisible
the OOoBean is added to the frame before it is displayable. Then the Java Frame does
not have a native window peer yet.
*/
public WriterFrame(int x, int y, int width, int height, boolean loadBeforeVisible, XComponentContext _xConn) throws Exception
{
try
{
if (!loadBeforeVisible)
{
m_bean = new com.sun.star.comp.beans.OOoBean(new PrivateLocalOfficeConnection(_xConn));
add(m_bean, BorderLayout.CENTER);
pack();
setBounds(x, y, width, height);
setVisible(true);
m_bean.loadFromURL(m_sDocURL, null);
validate();
}
else
{
m_bean = new com.sun.star.comp.beans.OOoBean(new PrivateLocalOfficeConnection(_xConn));
m_bean.loadFromURL(m_sDocURL, null);
add(m_bean, BorderLayout.CENTER);
pack();
setBounds(x, y, width, height);
setVisible(true);
m_bean.aquireSystemWindow();
}
}
catch (Exception e)
{
System.out.println("Exception caught: " + e.getMessage());
}
}
public WriterFrame() throws Exception
{
this(0, 0, 800, 400, false, null);
}
public void setText(String s) throws Exception
{
com.sun.star.frame.XModel model = m_bean.getDocument();
com.sun.star.text.XTextDocument myDoc =
UnoRuntime.queryInterface(com.sun.star.text.XTextDocument.class, model);
com.sun.star.text.XText xText = myDoc.getText();
com.sun.star.text.XTextCursor xTCursor = xText.createTextCursor();
//inserting some Text
xText.insertString( xTCursor, s, false );
}
public String getText() throws Exception
{
com.sun.star.frame.XModel model = m_bean.getDocument();
com.sun.star.text.XTextDocument myDoc =
UnoRuntime.queryInterface(com.sun.star.text.XTextDocument.class, model);
com.sun.star.text.XText xText = myDoc.getText();
return xText.getString();
}
@Override
public void dispose() {
m_bean.stopOOoConnection();
setVisible(false);
super.dispose();
}
OOoBean getBean()
{
return m_bean;
}
/** Makes sure the document is displayed at the beginning.
* This is important for comparing screenshots.
*/
public void goToStart() throws Exception
{
com.sun.star.frame.XModel xModel = m_bean.getDocument();
com.sun.star.frame.XController xController = xModel.getCurrentController();
com.sun.star.text.XTextViewCursorSupplier xVCSupplier =
UnoRuntime.queryInterface(com.sun.star.text.XTextViewCursorSupplier.class, xController);
com.sun.star.text.XTextViewCursor xTViewCursor = xVCSupplier.getViewCursor ( );
xTViewCursor.gotoStart(false);
}
public void pageDown() throws Exception
{
com.sun.star.frame.XModel xModel = m_bean.getDocument();
com.sun.star.frame.XController xController = xModel.getCurrentController();
com.sun.star.text.XTextViewCursorSupplier xVCSupplier =
UnoRuntime.queryInterface(com.sun.star.text.XTextViewCursorSupplier.class, xController);
com.sun.star.text.XTextViewCursor xTViewCursor = xVCSupplier.getViewCursor ( );
com.sun.star.view.XScreenCursor xScreenCursor =
UnoRuntime.queryInterface(com.sun.star.view.XScreenCursor.class, xTViewCursor);
xScreenCursor.screenDown();
}
public Rectangle getClientArea()
{
Insets i = getInsets();
Rectangle r = getBounds();
Rectangle rc = new Rectangle(r.x + i.left, r.y + i.top,
r.width - i.left - i.right,
r.height - i.top - i.bottom);
return rc;
}
private Rectangle getUnoFramePosition() throws Exception
{
com.sun.star.awt.XWindow win = m_bean.getFrame().getContainerWindow();
com.sun.star.awt.Rectangle rect = win.getPosSize();
return new Rectangle(rect.X, rect.Y, rect.Width, rect.Height);
}
/** After resizing the Java frame, the UNO window shall be resized
* as well, which is checked by this method.
*/
public boolean checkUnoFramePosition() throws Exception
{
Rectangle client = getClientArea();
Rectangle unoWin = getUnoFramePosition();
if (client.x != unoWin.x
|| client.y != unoWin.y
|| client.width != unoWin.width
|| client.height != unoWin.height)
{
System.out.println("\nPosition of client are of Java frame does not match the position" +
"of the UNO window. These are the values of Java frame, followed by" +
"the UNO window: ");
System.out.println(client);
System.out.println(unoWin);
System.out.println("");
return false;
}
return true;
}
public void removeOOoBean() throws Exception
{
//OOoBean.releaseSystemWindow need not be called because
//LocalOfficeWindow overrides removeNotify.
//However because of bt4745222 which was fixed in 1.4.2_04,
//this is very very slow. The workaround is use releaseSystemWindow
//beforehand.
m_bean.releaseSystemWindow();
remove(m_bean);
}
public void addOOoBean() throws Exception
{
add(m_bean, BorderLayout.CENTER);
m_bean.aquireSystemWindow();
validate();
}
}