JAL-3032 adds Java 8 functionality (2/2)
[jalview.git] / src2 / fr / orsay / lri / varna / views / Imprimer.java
1 /*
2  VARNA is a tool for the automated drawing, visualization and annotation of the secondary structure of RNA, designed as a companion software for web servers and databases.
3  Copyright (C) 2008  Kevin Darty, Alain Denise and Yann Ponty.
4  electronic mail : Yann.Ponty@lri.fr
5  paper mail : LRI, bat 490 Université Paris-Sud 91405 Orsay Cedex France
6
7  This file is part of VARNA version 3.1.
8  VARNA version 3.1 is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License
9  as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10
11  VARNA version 3.1 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
12  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  See the GNU General Public License for more details.
14
15  You should have received a copy of the GNU General Public License along with VARNA version 3.1.
16  If not, see http://www.gnu.org/licenses.
17  */ 
18 package fr.orsay.lri.varna.views;
19
20 import java.awt.Color;
21 import java.awt.Font;
22 import java.awt.Graphics;
23 import java.awt.Graphics2D;
24 import java.awt.print.PageFormat;
25 import java.awt.print.Printable;
26 import java.awt.print.PrinterJob;
27
28 public class Imprimer implements Printable {
29         private String phrase;
30
31         public Imprimer(String phrase) {
32                 this.phrase = phrase;
33         }
34
35         public int print(Graphics g, PageFormat pf, int indexPage) {
36                 if (indexPage > 0)
37                         return NO_SUCH_PAGE;
38                 Graphics2D g2 = (Graphics2D) g;
39                 g2.setPaint(Color.blue);
40                 g2.setFont(new Font("Serif", Font.PLAIN, 64));
41                 g2.drawString(phrase, 96, 144);
42                 return PAGE_EXISTS;
43         }
44
45         public static void main(String args[]) {
46                 PrinterJob tache = PrinterJob.getPrinterJob();
47                 tache.setPrintable(new Imprimer(
48                                 "Ceci est un teste d'impression en java!"));
49
50                 // printDialog affiche la fenetre de sélection de l’imprimante,
51                 // etc...
52
53                 // il retourne true si on clique sur "Ok", false si on clique sur
54                 // "Annuler"
55                 //System.out.println(PrinterJob.getPrinterJob());
56                 if (!tache.printDialog())
57                         return;
58                 try {
59                         tache.print();
60                 } catch (Exception e) {
61                         System.err.println("impossible d'imprimer");
62                 }
63         }
64 }