Search in sources :

Example 6 with Paragraph

use of com.itextpdf.text.Paragraph in project specify by rhebecaabreu.

the class DocumentoReqCartaoEstoria method criaPDF.

/**
 * @param args
 * @throws FileNotFoundException
 * @throws DocumentException
 * @throws IOException
 * @throws MalformedURLException
 */
public void criaPDF(JTable table_1, java.util.List<Integer> codigosReq) throws FileNotFoundException, DocumentException {
    // Listing 1. Instantiation of document object
    Document document = new Document();
    try {
        document.setPageSize(PageSize.A4);
        document.setMargins(50, 50, 50, 50);
        nomepdf = MeusProjetos.getNome_pdf() + ".pdf";
        // Listing 2. Creation of PdfWriter object
        PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(nomepdf));
        ModelPDFRodape mf = new ModelPDFRodape();
        mf.setTopo("Specify");
        writer.setPageEvent(mf);
        document.open();
        // Listing 3. Creation of chapter object
        Paragraph title1 = new Paragraph("Documento de Requisitos", FontFactory.getFont(FontFactory.HELVETICA, 18, Font.BOLD));
        title1.setAlignment(Element.ALIGN_CENTER);
        Chapter chapter1 = new Chapter(title1, 1);
        chapter1.setNumberDepth(0);
        // Listing 4. Creation of section object
        RequisitoDAO rrdao = new RequisitoDAO();
        // Listing 4. Creation of section object
        ProjetoDAO pread = new ProjetoDAO();
        for (Requisito r : rrdao.readOrderBy()) {
            for (Projeto p : pread.read()) {
                for (int i = 0; i < codigosReq.size(); i++) {
                    if (r.getProjcodigo() == p.getCodigo() && r.getCodigo() == codigosReq.get(0)) {
                        Paragraph title_project2 = new Paragraph("Projeto: " + p.getNome(), FontFactory.getFont(FontFactory.HELVETICA, 16, Font.BOLD));
                        title_project2.setAlignment(Element.ALIGN_CENTER);
                        chapter1.add(title_project2);
                        break;
                    }
                }
            }
        }
        DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
        Date date = new Date();
        String data = dateFormat.format(date);
        Paragraph data_hora = new Paragraph("Gerado em " + data, FontFactory.getFont(FontFactory.HELVETICA, 14, Font.NORMAL));
        data_hora.setAlignment(Element.ALIGN_CENTER);
        chapter1.add(data_hora);
        Paragraph listRequirement = new Paragraph("Lista de Requisitos", FontFactory.getFont(FontFactory.HELVETICA, 14, Font.NORMAL));
        Section section1 = chapter1.addSection(listRequirement);
        RequisitoDAO rdao = new RequisitoDAO();
        Font f = FontFactory.getFont(FontFactory.HELVETICA, 13, Font.NORMAL);
        Font ff = FontFactory.getFont(FontFactory.HELVETICA, 13, Font.BOLD);
        for (Requisito r : rdao.readOrderBy()) {
            if (table_1.getSelectedRow() != -1) {
                for (int j = 0; j < (codigosReq.size()); j++) {
                    if (r.getCodigo() == codigosReq.get(j)) {
                        if (r.getTipoReq().toString().equals("FUNCIONAL")) {
                            Paragraph o = new Paragraph();
                            o.setFont(ff);
                            o.add("Tipo de Requisito: ");
                            o.setFont(f);
                            o.add("Funcional" + "       ");
                            o.setFont(ff);
                            o.add(" Código: ");
                            o.setFont(f);
                            o.add(String.valueOf(r.getCodigo()));
                            section1.add(o);
                        }
                        if (r.getTipoReq().toString().equals("NAOFUNCIONAL")) {
                            Paragraph o = new Paragraph();
                            o.setFont(ff);
                            o.add("Tipo de Requisito: ");
                            o.setFont(f);
                            o.add("Não-funcional" + "       ");
                            o.setFont(ff);
                            o.add(" Código: ");
                            o.setFont(f);
                            o.add(String.valueOf(r.getCodigo()));
                            section1.add(o);
                        }
                        if (r.getTipoReq().toString().equals("USUARIO")) {
                            Paragraph o = new Paragraph();
                            o.setFont(ff);
                            o.add("Tipo de Requisito: ");
                            o.setFont(f);
                            o.add("       Usuário" + "       ");
                            o.setFont(ff);
                            o.add(" Código: ");
                            o.setFont(f);
                            o.add(String.valueOf(r.getCodigo()));
                            section1.add(o);
                        }
                        if (r.getTipoReq().toString().equals("NEGOCIO")) {
                            Paragraph o = new Paragraph();
                            o.setFont(ff);
                            o.add("Tipo de Requisito: ");
                            o.setFont(f);
                            o.add("       Negócio" + "       ");
                            o.setFont(ff);
                            o.add(" Código: ");
                            o.setFont(f);
                            o.add(String.valueOf(r.getCodigo()));
                            section1.add(o);
                        }
                        Paragraph p = new Paragraph();
                        Paragraph q = new Paragraph();
                        Paragraph rr = new Paragraph();
                        Paragraph s = new Paragraph();
                        Paragraph t = new Paragraph();
                        p.setFont(ff);
                        p.add("Identificador: ");
                        p.setFont(f);
                        p.add(r.getId());
                        q.setFont(ff);
                        q.add("O(a) " + r.getSujeito() + " deve ser capaz de " + r.getAcaoRestricao() + " para " + r.getValorRazao());
                        rr.setFont(ff);
                        rr.add("Grau Prioridade: ");
                        rr.setFont(f);
                        rr.add(r.getGrauPrioridade().toString());
                        s.setFont(ff);
                        s.add("Grau Dificuldade: ");
                        s.setFont(f);
                        s.add(r.getGrauDificuldade().toString());
                        t = new Paragraph(" ");
                        section1.add(p);
                        section1.add(q);
                        section1.add(rr);
                        section1.add(s);
                        section1.add(t);
                    }
                }
            }
        }
        // Listing 3. Creation of chapter object
        Paragraph title2 = new Paragraph("Cartões de Estória", FontFactory.getFont(FontFactory.HELVETICA, 18, Font.BOLD));
        title2.setAlignment(Element.ALIGN_CENTER);
        Chapter chapter2 = new Chapter(title2, 2);
        chapter2.setNumberDepth(0);
        for (Requisito r : rrdao.readOrderBy()) {
            for (Projeto p : pread.read()) {
                for (int i = 0; i < codigosReq.size(); i++) {
                    if (r.getProjcodigo() == p.getCodigo() && r.getCodigo() == codigosReq.get(0)) {
                        Paragraph title_project2 = new Paragraph("Projeto: " + p.getNome(), FontFactory.getFont(FontFactory.HELVETICA, 16, Font.BOLD));
                        title_project2.setAlignment(Element.ALIGN_CENTER);
                        chapter2.add(title_project2);
                        break;
                    }
                }
            }
        }
        Paragraph data_hora2 = new Paragraph("Gerado em " + data, FontFactory.getFont(FontFactory.HELVETICA, 14, Font.NORMAL));
        data_hora2.setAlignment(Element.ALIGN_CENTER);
        chapter2.add(data_hora2);
        Paragraph listUserStories = new Paragraph("Lista de Cartões de Estória", FontFactory.getFont(FontFactory.HELVETICA, 14, Font.NORMAL));
        Section section2 = chapter2.addSection(listUserStories);
        for (Requisito r : rdao.readOrderBy()) {
            if (table_1.getSelectedRow() != -1) {
                for (int j = 0; j < (codigosReq.size()); j++) {
                    if (r.getCodigo() == codigosReq.get(j)) {
                        Paragraph p = new Paragraph();
                        Paragraph q = new Paragraph();
                        Paragraph rr = new Paragraph();
                        Paragraph s = new Paragraph();
                        Paragraph t = new Paragraph();
                        p.setFont(ff);
                        p.add("Identificador: ");
                        p.setFont(f);
                        p.add(r.getId());
                        p.setFont(ff);
                        p.add("       Código: ");
                        p.setFont(f);
                        p.add(String.valueOf(r.getCodigo()));
                        q.setFont(ff);
                        q.add("Como um " + r.getSujeito() + " eu quero " + r.getAcaoRestricao() + " a fim de " + r.getValorRazao());
                        Paragraph qq = new Paragraph();
                        qq.setFont(ff);
                        qq.add("Estimativa: ");
                        qq.setFont(f);
                        qq.add(r.getEstimativa() + " hora(s)");
                        rr.setFont(ff);
                        rr.add("Grau Prioridade: ");
                        rr.setFont(f);
                        rr.add(r.getGrauPrioridade().toString());
                        s.setFont(ff);
                        s.add("Grau Dificuldade: ");
                        s.setFont(f);
                        s.add(r.getGrauDificuldade().toString());
                        t = new Paragraph(" ");
                        // Paragraph p = new Paragraph();
                        section2.add(p);
                        section2.add(q);
                        section2.add(qq);
                        section2.add(rr);
                        section2.add(s);
                        section2.add(t);
                    }
                }
            }
        }
        // Listing 5. Addition of a chapter to the main document
        document.add(chapter1);
        document.add(chapter2);
        document.add(Chunk.NEXTPAGE);
    } catch (DocumentException ex) {
        System.out.println("Error:" + ex);
    } catch (FileNotFoundException ex) {
        System.out.println("Error:" + ex);
    } finally {
        document.close();
    }
    try {
        Desktop.getDesktop().open(new File(nomepdf));
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}
Also used : PdfWriter(com.itextpdf.text.pdf.PdfWriter) Requisito(model.bean.Requisito) ModelPDFRodape(model.bean.ModelPDFRodape) Chapter(com.itextpdf.text.Chapter) FileNotFoundException(java.io.FileNotFoundException) Projeto(model.bean.Projeto) IOException(java.io.IOException) Document(com.itextpdf.text.Document) Section(com.itextpdf.text.Section) Date(java.util.Date) Font(com.itextpdf.text.Font) Paragraph(com.itextpdf.text.Paragraph) RequisitoDAO(model.dao.RequisitoDAO) FileOutputStream(java.io.FileOutputStream) SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) DocumentException(com.itextpdf.text.DocumentException) ProjetoDAO(model.dao.ProjetoDAO) SimpleDateFormat(java.text.SimpleDateFormat) File(java.io.File)

Example 7 with Paragraph

use of com.itextpdf.text.Paragraph in project trainning by fernandotomasio.

the class IReportUtil method fillSection.

public static Section fillSection(Section section, String text) {
    if (text != null && text.length() > 0) {
        String[] split = text.split("\n");
        int countParagraphs = 0;
        for (String item : split) {
            if (item.length() > 1) {
                char c = item.charAt(1);
                if (c != '-' && c != ')' && c != '.') {
                    countParagraphs++;
                }
            }
        }
        if (countParagraphs > 1) {
            for (String item : split) {
                if (item.length() > 1) {
                    char c = item.charAt(1);
                    if (c == '-' || c == ')' || c == '.') {
                        Paragraph p = new Paragraph(item, fontManager.getDefaultFont());
                        p.setIndentationLeft(75);
                        p.setAlignment(Element.ALIGN_JUSTIFIED);
                        section.add(p);
                    } else {
                        Paragraph p = new Paragraph(item, fontManager.getDefaultFont());
                        p.setAlignment(Element.ALIGN_JUSTIFIED);
                        section.addSection(p);
                    }
                }
            }
        } else {
            for (String item : split) {
                if (item.length() > 1) {
                    char c = item.charAt(1);
                    if (c == '-' || c == ')' || c == '.') {
                        Paragraph p = new Paragraph(item, fontManager.getDefaultFont());
                        p.setIndentationLeft(75);
                        p.setAlignment(Element.ALIGN_JUSTIFIED);
                        section.add(p);
                    } else {
                        Paragraph p = new Paragraph(item, fontManager.getDefaultFont());
                        p.setFirstLineIndent(75);
                        p.setAlignment(Element.ALIGN_JUSTIFIED);
                        section.add(p);
                    }
                }
            }
        }
    }
    return section;
}
Also used : Paragraph(com.itextpdf.text.Paragraph)

Example 8 with Paragraph

use of com.itextpdf.text.Paragraph in project trainning by fernandotomasio.

the class DOC001PDF method buildChapter7.

private Chapter buildChapter7(CurriculoMinimoDTO curriculo) {
    Chapter ch = new Chapter(new Paragraph("DISPOSIÇÕES GERAIS", fontManager.getBoldFont()), 7);
    ch.add(Chunk.NEWLINE);
    IReportUtil.fillChapter(ch, curriculo.getDisposicoesGerais());
    return ch;
}
Also used : Chapter(com.itextpdf.text.Chapter) Paragraph(com.itextpdf.text.Paragraph)

Example 9 with Paragraph

use of com.itextpdf.text.Paragraph in project trainning by fernandotomasio.

the class DOC001PDF method buildPrefacio.

private Chapter buildPrefacio(CurriculoMinimoDTO curriculo) {
    Paragraph p = new Paragraph("PREFÁCIO", fontManager.getBoldFont());
    p.setAlignment(Element.ALIGN_CENTER);
    Chapter ch = new Chapter(p, 0);
    ch.setNumberDepth(0);
    ch.add(Chunk.NEWLINE);
    Paragraph p1 = new Paragraph("Esta publicação estabelece o Plano de Unidades Didáticas, referente ao primeiro semestre de\n" + "2014, para o Curso de Formação de Sargentos – Especialidade Meteorologia (BMT), Turma\n" + "241", fontManager.getDefaultFont());
    p1.setAlignment(Element.ALIGN_JUSTIFIED);
    ch.add(p1);
    ch.add(new Paragraph("Este Plano de Unidades Didáticas complementa o Currículo Mínimo do Curso de Formação de\n" + "Sargentos - Especialidade de Meteorologia (ICA 37-38) e contém a previsão de todas as\n" + "atividades que o instruendo realizará sob a orientação da Escola para atingir os objetivos do\n" + "Curso acima mencionado.", fontManager.getDefaultFont()));
    ch.add(new Paragraph("Contém dados relativos ao desenvolvimento das Unidades Didáticas que compõem as\n" + "disciplinas do Curso acima mencionado.", fontManager.getDefaultFont()));
    ch.add(new Paragraph("Destina-se, especificamente, aos docentes, discentes e ao uso administrativo desta Escola.", fontManager.getDefaultFont()));
    return ch;
}
Also used : Chapter(com.itextpdf.text.Chapter) Paragraph(com.itextpdf.text.Paragraph)

Example 10 with Paragraph

use of com.itextpdf.text.Paragraph in project trainning by fernandotomasio.

the class DOC001PDF method buildChapter6.

private Chapter buildChapter6(CurriculoMinimoDTO curriculo) {
    Chapter ch = new Chapter(new Paragraph("PROCEDIMENTOS DE AVALIAÇÃO", fontManager.getBoldFont()), 6);
    ch.add(Chunk.NEWLINE);
    IReportUtil.fillChapter(ch, curriculo.getProcedimentosAvaliacao());
    return ch;
}
Also used : Chapter(com.itextpdf.text.Chapter) Paragraph(com.itextpdf.text.Paragraph)

Aggregations

Paragraph (com.itextpdf.text.Paragraph)67 Chapter (com.itextpdf.text.Chapter)25 PdfPTable (com.itextpdf.text.pdf.PdfPTable)18 Phrase (com.itextpdf.text.Phrase)14 PdfPCell (com.itextpdf.text.pdf.PdfPCell)13 Font (com.itextpdf.text.Font)11 IOException (java.io.IOException)11 DocumentException (com.itextpdf.text.DocumentException)10 Section (com.itextpdf.text.Section)10 Document (com.itextpdf.text.Document)8 ArrayList (java.util.ArrayList)8 ListItem (com.itextpdf.text.ListItem)7 BaseFont (com.itextpdf.text.pdf.BaseFont)7 FileOutputStream (java.io.FileOutputStream)7 List (com.itextpdf.text.List)6 Chunk (com.itextpdf.text.Chunk)5 Image (com.itextpdf.text.Image)5 PdfWriter (com.itextpdf.text.pdf.PdfWriter)5 ObjetivoDisciplinaDTO (com.tomasio.projects.trainning.dto.ObjetivoDisciplinaDTO)5 SubunidadeDidaticaDTO (com.tomasio.projects.trainning.dto.SubunidadeDidaticaDTO)5