org.sonar.report.pdf.Style.java Source code

Java tutorial

Introduction

Here is the source code for org.sonar.report.pdf.Style.java

Source

/*
 * Sonar PDF Report (Maven plugin)
 * Copyright (C) 2010 klicap - ingenieria del puzle
 * dev@sonar.codehaus.org
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */

package org.sonar.report.pdf;

import java.awt.Color;
import java.util.Iterator;
import java.util.List;

import com.lowagie.text.Font;
import com.lowagie.text.Phrase;
import com.lowagie.text.pdf.PdfPTable;

public class Style {

    /**
     * Font used in main chapters title
     */
    public final static Font CHAPTER_FONT = new Font(Font.TIMES_ROMAN, 18, Font.BOLD, Color.GRAY);

    /**
     * Font used in sub-chapters title
     */
    public final static Font TITLE_FONT = new Font(Font.TIMES_ROMAN, 14, Font.BOLD, Color.GRAY);

    /**
     * Font used in graphics foots
     */
    public final static Font FOOT_FONT = new Font(Font.TIMES_ROMAN, 10, Font.BOLD, Color.GRAY);

    /**
     * Font used in general plain text
     */
    public final static Font NORMAL_FONT = new Font(Font.TIMES_ROMAN, 11, Font.NORMAL, Color.BLACK);

    /**
     * Font used in code text (bold)
     */
    public final static Font MONOSPACED_BOLD_FONT = new Font(Font.COURIER, 11, Font.BOLD, Color.BLACK);

    /**
     * Font used in code text
     */
    public final static Font MONOSPACED_FONT = new Font(Font.COURIER, 10, Font.NORMAL, Color.BLACK);

    /**
     * Font used in table of contents title
     */
    public final static Font TOC_TITLE_FONT = new Font(Font.HELVETICA, 24, Font.BOLD, Color.GRAY);

    /**
     * Font used in front page (Project name)
     */
    public final static Font FRONTPAGE_FONT_1 = new Font(Font.HELVETICA, 22, Font.BOLD, Color.BLACK);

    /**
     * Font used in front page (Project description)
     */
    public final static Font FRONTPAGE_FONT_2 = new Font(Font.HELVETICA, 18, Font.ITALIC, Color.BLACK);

    /**
     * Font used in front page (Project date)
     */
    public final static Font FRONTPAGE_FONT_3 = new Font(Font.HELVETICA, 16, Font.BOLDITALIC, Color.GRAY);

    /**
     * Underlined font
     */
    public final static Font UNDERLINED_FONT = new Font(Font.HELVETICA, 14, Font.UNDERLINE, Color.BLACK);

    /**
     * Dashboard metric title font
     */
    public final static Font DASHBOARD_TITLE_FONT = new Font(Font.TIMES_ROMAN, 14, Font.BOLD, Color.BLACK);

    /**
     * Dashboard metric value font
     */
    public final static Font DASHBOARD_DATA_FONT = new Font(Font.TIMES_ROMAN, 14, Font.BOLD, Color.GRAY);

    /**
     * Dashboard metric details font
     */
    public final static Font DASHBOARD_DATA_FONT_2 = new Font(Font.TIMES_ROMAN, 10, Font.BOLD,
            new Color(100, 150, 190));

    /**
     * Tendency icons height + 2 (used in tables style)
     */
    public final static int TENDENCY_ICONS_HEIGHT = 20;

    public final static float FRONTPAGE_LOGO_POSITION_X = 114;

    public final static float FRONTPAGE_LOGO_POSITION_Y = 542;

    public static void noBorderTable(PdfPTable table) {
        table.getDefaultCell().setBorderColor(Color.WHITE);
    }

    /**
     * This method makes a simple table with content.
     * 
     * @param left Data for left column
     * @param right Data for right column
     * @param title The table title
     * @param noData Showed when left or right are empty
     * @return The table (iText table) ready to add to the document
     */
    public static PdfPTable createSimpleTable(List<String> left, List<String> right, String title, String noData) {
        PdfPTable table = new PdfPTable(2);
        table.getDefaultCell().setColspan(2);
        table.addCell(new Phrase(title, Style.DASHBOARD_TITLE_FONT));
        table.getDefaultCell().setBackgroundColor(Color.GRAY);
        table.addCell("");
        table.getDefaultCell().setColspan(1);
        table.getDefaultCell().setBackgroundColor(Color.WHITE);

        Iterator<String> itLeft = left.iterator();
        Iterator<String> itRight = right.iterator();

        while (itLeft.hasNext()) {
            String textLeft = itLeft.next();
            String textRight = itRight.next();
            table.addCell(textLeft);
            table.addCell(textRight);
        }

        if (left.isEmpty()) {
            table.getDefaultCell().setColspan(2);
            table.addCell(noData);
        }

        table.setSpacingBefore(20);
        table.setSpacingAfter(20);

        return table;
    }

    public static PdfPTable createTwoColumnsTitledTable(List<String> titles, List<String> content) {
        PdfPTable table = new PdfPTable(10);
        Iterator<String> itLeft = titles.iterator();
        Iterator<String> itRight = content.iterator();
        while (itLeft.hasNext()) {
            String textLeft = itLeft.next();
            String textRight = itRight.next();
            table.getDefaultCell().setColspan(1);
            table.addCell(textLeft);
            table.getDefaultCell().setColspan(9);
            table.addCell(textRight);
        }
        table.setSpacingBefore(20);
        table.setSpacingAfter(20);
        table.setLockedWidth(false);
        table.setWidthPercentage(90);
        return table;
    }
}