blob: 8d5b331f74d5a542c70efbc4bf9a963b2c17b40e [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package com.sun.star.wizards.reportbuilder.layout;
import com.sun.star.awt.Rectangle;
import com.sun.star.report.XGroup;
import com.sun.star.report.XGroups;
import com.sun.star.report.XSection;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.wizards.common.Resource;
import com.sun.star.wizards.report.IReportDefinitionReadAccess;
import com.sun.star.wizards.ui.UIConsts;
/**
*
* @author ll93751
*/
public class Tabular extends ReportBuilderLayouter
{
public Tabular(IReportDefinitionReadAccess _xDefinitionAccess, Resource _aResource)
{
super(_xDefinitionAccess, _aResource);
}
public String getName()
{
return "DefaultLayoutOfData";
}
public String getLocalizedName()
{
return getResource().getResText(UIConsts.RID_REPORT + 80);
}
protected void insertDetailFields()
{
copyDetailProperties();
String[] aFieldNames = getFieldNames();
if (aFieldNames == null)
{
return;
}
if (aFieldNames.length == 0)
{
return;
}
// int nGroups = getReportDefinition().getGroups().getCount();
final XSection xSection = getReportDefinition().getDetail();
Rectangle aRect = new Rectangle();
aRect.X = getLeftPageIndent() + getLeftGroupIndent(getCountOfGroups());
final int nWidth = calculateFieldWidth(getLeftGroupIndent(getCountOfGroups()), aFieldNames.length);
final SectionObject aSO = getDesignTemplate().getDetailTextField();
int nHeight = LayoutConstants.FormattedFieldHeight;
for (int i = 0; i < aFieldNames.length; i++)
{
final String sFieldName = convertToFieldName(aFieldNames[i]);
aRect = insertFormattedField(xSection, sFieldName, aRect, nWidth, aSO);
nHeight = Math.max(aRect.Height, nHeight);
}
nHeight = Math.max(aSO.getHeight(nHeight), nHeight);
xSection.setHeight(nHeight);
}
protected void insertDetailFieldTitles(int lastGroupPostion)
{
final String[] aFieldTitleNames = getFieldTitleNames();
if (aFieldTitleNames == null || aFieldTitleNames.length == 0)
{
return;
}
try
{
SectionObject aSO = null;
final XGroups xGroups = getReportDefinition().getGroups();
final XGroup xGroup;
if (lastGroupPostion == -1)
{
// Spezial case, there is no Group.
xGroup = xGroups.createGroup();
xGroup.setHeaderOn(true);
xGroups.insertByIndex(xGroups.getCount(), xGroup);
copyGroupProperties(0);
aSO = getDesignTemplate().getDetailLabel();
aSO.setFontToBold();
}
else
{
// we insert the titles in the last group
xGroup = UnoRuntime.queryInterface(XGroup.class, xGroups.getByIndex(lastGroupPostion));
// We don't need to copy the GroupProperties, because this is done in the insertGroup() member function
// copyGroupProperties(0);
aSO = getDesignTemplate().getGroupLabel(lastGroupPostion);
}
XSection xSection = xGroup.getHeader();
Rectangle aRect = new Rectangle();
aRect.X = getLeftPageIndent() + getLeftGroupIndent(getCountOfGroups());
if (lastGroupPostion == -1)
{
xSection.setHeight(0); // group height + a little empty line)
aRect.Y = 0;
}
else
{
aRect.Y = xSection.getHeight() + LayoutConstants.LineHeight;
}
final int nWidth = calculateFieldWidth(getLeftGroupIndent(getCountOfGroups()), aFieldTitleNames.length);
for (int i = 0; i < aFieldTitleNames.length; i++)
{
aRect = insertLabel(xSection, aFieldTitleNames[i], aRect, nWidth, aSO);
}
xSection.setHeight(xSection.getHeight() + aSO.getHeight(LayoutConstants.LabelHeight));
}
catch (com.sun.star.uno.Exception e)
{
}
}
}