1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
|
/*
* $Id: PDFViewer.java,v 1.5 2007/12/20 18:33:33 rbair Exp $
*
* Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
* Santa Clara, California 95054, U.S.A. All rights reserved.
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package com.sun.pdfview;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.Rectangle2D;
import java.awt.print.Book;
import java.awt.print.PageFormat;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.awt.Toolkit;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.net.Socket;
import java.net.URL;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.util.Date;
import java.util.HashMap;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.Box;
import javax.swing.ButtonGroup;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JDialog;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JSplitPane;
import javax.swing.JTextField;
import javax.swing.JToggleButton;
import javax.swing.JToolBar;
import javax.swing.JTree;
import javax.swing.event.TreeSelectionEvent;
import javax.swing.event.TreeSelectionListener;
import javax.swing.filechooser.FileFilter;
import javax.swing.SwingUtilities;
import com.sun.pdfview.action.GoToAction;
import com.sun.pdfview.action.PDFAction;
import java.lang.reflect.InvocationTargetException;
/**
* A PDF Viewer application that integrates with the
* <a href="http://sunlabs.east/mc/">Meeting Central</a> project.
*/
public class PDFViewer extends JFrame
implements KeyListener, TreeSelectionListener,
PageChangeListener {
public final static String TITLE = "SwingLabs PDF Viewer";
/** The current PDFFile */
PDFFile curFile;
/** the name of the current document */
String docName;
/** The split between thumbs and page */
JSplitPane split;
/** The thumbnail scroll pane */
JScrollPane thumbscroll;
/** The thumbnail display */
ThumbPanel thumbs;
/** The page display */
PagePanel page;
/** The full screen page display, or null if not in full screen mode */
PagePanel fspp;
// Thread anim;
/** The current page number (starts at 0), or -1 if no page */
int curpage = -1;
/** the full screen button */
JToggleButton fullScreenButton;
/** the current page number text field */
JTextField pageField;
/** the full screen window, or null if not in full screen mode */
FullScreenWindow fullScreen;
/** the root of the outline, or null if there is no outline */
OutlineNode outline = null;
/** The page format for printing */
PageFormat pformat = PrinterJob.getPrinterJob().defaultPage();
/** true if the thumb panel should exist at all */
boolean doThumb = true;
/** flag to indicate when a newly added document has been announced */
Flag docWaiter;
/** a thread that pre-loads the next page for faster response */
PagePreparer pagePrep;
/** the window containing the pdf outline, or null if one doesn't exist */
JDialog olf;
/** the document menu */
JMenu docMenu;
/**
* utility method to get an icon from the resources of this class
* @param name the name of the icon
* @return the icon, or null if the icon wasn't found.
*/
public Icon getIcon(String name) {
Icon icon = null;
URL url = null;
try {
url = getClass().getResource(name);
icon = new ImageIcon(url);
if (icon == null) {
System.out.println("Couldn't find " + url);
}
} catch (Exception e) {
System.out.println("Couldn't find " + getClass().getName() + "/" + name);
e.printStackTrace();
}
return icon;
}
/// FILE MENU
Action openAction = new AbstractAction("Open...") {
public void actionPerformed(ActionEvent evt) {
doOpen();
}
};
Action pageSetupAction = new AbstractAction("Page setup...") {
public void actionPerformed(ActionEvent evt) {
doPageSetup();
}
};
Action printAction = new AbstractAction("Print...", getIcon("gfx/print.gif")) {
public void actionPerformed(ActionEvent evt) {
doPrint();
}
};
Action closeAction = new AbstractAction("Close") {
public void actionPerformed(ActionEvent evt) {
doClose();
}
};
Action quitAction = new AbstractAction("Quit") {
public void actionPerformed(ActionEvent evt) {
doQuit();
}
};
class ZoomAction extends AbstractAction {
double zoomfactor = 1.0;
public ZoomAction(String name, double factor) {
super(name);
zoomfactor = factor;
}
public ZoomAction(String name, Icon icon, double factor) {
super(name, icon);
zoomfactor = factor;
}
public void actionPerformed(ActionEvent evt) {
doZoom(zoomfactor);
}
}
ZoomAction zoomInAction = new ZoomAction("Zoom in",
getIcon("gfx/zoomin.gif"),
2.0);
ZoomAction zoomOutAction = new ZoomAction("Zoom out",
getIcon("gfx/zoomout.gif"),
0.5);
Action zoomToolAction = new AbstractAction("", getIcon("gfx/zoom.gif")) {
public void actionPerformed(ActionEvent evt) {
doZoomTool();
}
};
Action fitInWindowAction = new AbstractAction("Fit in window",
getIcon("gfx/fit.gif")) {
public void actionPerformed(ActionEvent evt) {
doFitInWindow();
}
};
class ThumbAction extends AbstractAction
implements PropertyChangeListener {
boolean isOpen = true;
public ThumbAction() {
super("Hide thumbnails");
}
public void propertyChange(PropertyChangeEvent evt) {
int v = ((Integer) evt.getNewValue()).intValue();
if (v <= 1) {
isOpen = false;
putValue(ACTION_COMMAND_KEY, "Show thumbnails");
putValue(NAME, "Show thumbnails");
} else {
isOpen = true;
putValue(ACTION_COMMAND_KEY, "Hide thumbnails");
putValue(NAME, "Hide thumbnails");
}
}
public void actionPerformed(ActionEvent evt) {
doThumbs(!isOpen);
}
}
ThumbAction thumbAction = new ThumbAction();
Action fullScreenAction = new AbstractAction("Full screen",
getIcon("gfx/fullscrn.gif")) {
public void actionPerformed(ActionEvent evt) {
doFullScreen((evt.getModifiers() & evt.SHIFT_MASK) != 0);
}
};
Action nextAction = new AbstractAction("Next", getIcon("gfx/next.gif")) {
public void actionPerformed(ActionEvent evt) {
doNext();
}
};
Action firstAction = new AbstractAction("First", getIcon("gfx/first.gif")) {
public void actionPerformed(ActionEvent evt) {
doFirst();
}
};
Action lastAction = new AbstractAction("Last", getIcon("gfx/last.gif")) {
public void actionPerformed(ActionEvent evt) {
doLast();
}
};
Action prevAction = new AbstractAction("Prev", getIcon("gfx/prev.gif")) {
public void actionPerformed(ActionEvent evt) {
doPrev();
}
};
/**
* Create a new PDFViewer based on a user, with or without a thumbnail
* panel.
* @param useThumbs true if the thumb panel should exist, false if not.
*/
public PDFViewer(boolean useThumbs) {
super(TITLE);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
doQuit();
}
});
doThumb = useThumbs;
init();
}
/**
* Initialize this PDFViewer by creating the GUI.
*/
protected void init() {
page = new PagePanel();
page.addKeyListener(this);
if (doThumb) {
split = new JSplitPane(split.HORIZONTAL_SPLIT);
split.addPropertyChangeListener(split.DIVIDER_LOCATION_PROPERTY,
thumbAction);
split.setOneTouchExpandable(true);
thumbs = new ThumbPanel(null);
thumbscroll = new JScrollPane(thumbs,
thumbscroll.VERTICAL_SCROLLBAR_ALWAYS,
thumbscroll.HORIZONTAL_SCROLLBAR_NEVER);
split.setLeftComponent(thumbscroll);
split.setRightComponent(page);
getContentPane().add(split, BorderLayout.CENTER);
} else {
getContentPane().add(page, BorderLayout.CENTER);
}
JToolBar toolbar = new JToolBar();
toolbar.setFloatable(false);
JButton jb;
jb = new JButton(firstAction);
jb.setText("");
toolbar.add(jb);
jb = new JButton(prevAction);
jb.setText("");
toolbar.add(jb);
pageField = new JTextField("-", 3);
// pageField.setEnabled(false);
pageField.setMaximumSize(new Dimension(45, 32));
pageField.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
doPageTyped();
}
});
toolbar.add(pageField);
jb = new JButton(nextAction);
jb.setText("");
toolbar.add(jb);
jb = new JButton(lastAction);
jb.setText("");
toolbar.add(jb);
toolbar.add(Box.createHorizontalGlue());
fullScreenButton = new JToggleButton(fullScreenAction);
fullScreenButton.setText("");
toolbar.add(fullScreenButton);
fullScreenButton.setEnabled(true);
toolbar.add(Box.createHorizontalGlue());
JToggleButton jtb;
ButtonGroup bg = new ButtonGroup();
jtb = new JToggleButton(zoomToolAction);
jtb.setText("");
bg.add(jtb);
toolbar.add(jtb);
jtb = new JToggleButton(fitInWindowAction);
jtb.setText("");
bg.add(jtb);
jtb.setSelected(true);
toolbar.add(jtb);
toolbar.add(Box.createHorizontalGlue());
jb = new JButton(printAction);
jb.setText("");
toolbar.add(jb);
getContentPane().add(toolbar, BorderLayout.NORTH);
JMenuBar mb = new JMenuBar();
JMenu file = new JMenu("File");
file.add(openAction);
file.add(closeAction);
file.addSeparator();
file.add(pageSetupAction);
file.add(printAction);
file.addSeparator();
file.add(quitAction);
mb.add(file);
JMenu view = new JMenu("View");
JMenu zoom = new JMenu("Zoom");
zoom.add(zoomInAction);
zoom.add(zoomOutAction);
zoom.add(fitInWindowAction);
zoom.setEnabled(false);
view.add(zoom);
view.add(fullScreenAction);
if (doThumb) {
view.addSeparator();
view.add(thumbAction);
}
mb.add(view);
setJMenuBar(mb);
setEnabling();
pack();
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
int x = (screen.width - getWidth()) / 2;
int y = (screen.height - getHeight()) / 2;
setLocation(x, y);
if (SwingUtilities.isEventDispatchThread()) {
show();
} else {
try {
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
show();
}
});
} catch (InvocationTargetException ie) {
// ignore
} catch (InterruptedException ie) {
// ignore
}
}
}
/**
* Changes the displayed page, desyncing if we're not on the
* same page as a presenter.
* @param pagenum the page to display
*/
public void gotoPage(int pagenum) {
if (pagenum < 0) {
pagenum = 0;
} else if (pagenum >= curFile.getNumPages()) {
pagenum = curFile.getNumPages() - 1;
}
forceGotoPage(pagenum);
}
/**
* Changes the displayed page.
* @param pagenum the page to display
*/
public void forceGotoPage(int pagenum) {
if (pagenum <= 0) {
pagenum = 0;
} else if (pagenum >= curFile.getNumPages()) {
pagenum = curFile.getNumPages() - 1;
}
// System.out.println("Going to page " + pagenum);
curpage = pagenum;
// update the page text field
pageField.setText(String.valueOf(curpage + 1));
// fetch the page and show it in the appropriate place
PDFPage pg = curFile.getPage(pagenum + 1);
if (fspp != null) {
fspp.showPage(pg);
fspp.requestFocus();
} else {
page.showPage(pg);
page.requestFocus();
}
// update the thumb panel
if (doThumb) {
thumbs.pageShown(pagenum);
}
// stop any previous page prepper, and start a new one
if (pagePrep != null) {
pagePrep.quit();
}
pagePrep = new PagePreparer(pagenum);
pagePrep.start();
setEnabling();
}
/**
* A class to pre-cache the next page for better UI response
*/
class PagePreparer extends Thread {
int waitforPage;
int prepPage;
/**
* Creates a new PagePreparer to prepare the page after the current
* one.
* @param waitforPage the current page number, 0 based
*/
public PagePreparer(int waitforPage) {
setDaemon(true);
this.waitforPage = waitforPage;
this.prepPage = waitforPage + 1;
}
public void quit() {
waitforPage = -1;
}
public void run() {
Dimension size = null;
Rectangle2D clip = null;
// wait for the current page
// System.out.println("Preparer waiting for page " + (waitforPage + 1));
if (fspp != null) {
fspp.waitForCurrentPage();
size = fspp.getCurSize();
clip = fspp.getCurClip();
} else if (page != null) {
page.waitForCurrentPage();
size = page.getCurSize();
clip = page.getCurClip();
}
if (waitforPage == curpage) {
// don't go any further if the user changed pages.
// System.out.println("Preparer generating page " + (prepPage + 2));
PDFPage pdfPage = curFile.getPage(prepPage + 1, true);
if (pdfPage != null && waitforPage == curpage) {
// don't go any further if the user changed pages
// System.out.println("Generating image for page " + (prepPage + 2));
pdfPage.getImage(size.width, size.height, clip, null, true, true);
// System.out.println("Generated image for page "+ (prepPage+2));
}
}
}
}
/**
* Enable or disable all of the actions based on the current state.
*/
public void setEnabling() {
boolean fileavailable = curFile != null;
boolean pageshown = ((fspp != null) ? fspp.getPage() != null : page.getPage() != null);
boolean printable = fileavailable && curFile.isPrintable();
pageField.setEnabled(fileavailable);
printAction.setEnabled(printable);
closeAction.setEnabled(fileavailable);
fullScreenAction.setEnabled(pageshown);
prevAction.setEnabled(pageshown);
nextAction.setEnabled(pageshown);
firstAction.setEnabled(fileavailable);
lastAction.setEnabled(fileavailable);
zoomToolAction.setEnabled(pageshown);
fitInWindowAction.setEnabled(pageshown);
zoomInAction.setEnabled(pageshown);
zoomOutAction.setEnabled(pageshown);
}
/**
* Open a specific pdf file. Creates a DocumentInfo from the file,
* and opens that.
* @param file the file to open
*/
public void openFile(File file) throws IOException {
// first open the file for random access
RandomAccessFile raf = new RandomAccessFile(file, "r");
// extract a file channel
FileChannel channel = raf.getChannel();
// now memory-map a byte-buffer
ByteBuffer buf =
channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size());
// create a PDFFile from the data
PDFFile newfile = null;
try {
newfile = new PDFFile(buf);
} catch (IOException ioe) {
openError(file.getPath() + " doesn't appear to be a PDF file.");
return;
}
// Now that we're reasonably sure this document is real, close the
// old one.
doClose();
// set up our document
this.curFile = newfile;
docName = file.getName();
setTitle(TITLE + ": " + docName);
// set up the thumbnails
if (doThumb) {
thumbs = new ThumbPanel(curFile);
thumbs.addPageChangeListener(this);
thumbscroll.getViewport().setView(thumbs);
thumbscroll.getViewport().setBackground(Color.gray);
}
setEnabling();
// display page 1.
forceGotoPage(0);
// if the PDF has an outline, display it.
try {
outline = curFile.getOutline();
} catch (IOException ioe) {
}
if (outline != null) {
if (outline.getChildCount() > 0) {
olf = new JDialog(this, "Outline");
olf.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
olf.setLocation(this.getLocation());
JTree jt = new JTree(outline);
jt.setRootVisible(false);
jt.addTreeSelectionListener(this);
JScrollPane jsp = new JScrollPane(jt);
olf.getContentPane().add(jsp);
olf.pack();
olf.setVisible(true);
} else {
if (olf != null) {
olf.setVisible(false);
olf = null;
}
}
}
}
/**
* Display a dialog indicating an error.
*/
public void openError(String message) {
JOptionPane.showMessageDialog(split, message, "Error opening file",
JOptionPane.ERROR_MESSAGE);
}
/**
* A file filter for PDF files.
*/
FileFilter pdfFilter = new FileFilter() {
public boolean accept(File f) {
return f.isDirectory() || f.getName().endsWith(".pdf");
}
public String getDescription() {
return "Choose a PDF file";
}
};
private File prevDirChoice;
/**
* Ask the user for a PDF file to open from the local file system
*/
public void doOpen() {
try {
JFileChooser fc = new JFileChooser();
fc.setCurrentDirectory(prevDirChoice);
fc.setFileFilter(pdfFilter);
fc.setMultiSelectionEnabled(false);
int returnVal = fc.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
try {
prevDirChoice = fc.getSelectedFile();
openFile(fc.getSelectedFile());
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
} catch (Exception e) {
JOptionPane.showMessageDialog(split,
"Opening files from your local " +
"disk is not available\nfrom the " +
"Java Web Start version of this " +
"program.\n",
"Error opening directory",
JOptionPane.ERROR_MESSAGE);
e.printStackTrace();
}
}
/**
* Open a local file, given a string filename
* @param name the name of the file to open
*/
public void doOpen(String name) {
try {
openFile(new File(name));
} catch (IOException ioe) {
}
}
/**
* Posts the Page Setup dialog
*/
public void doPageSetup() {
PrinterJob pjob = PrinterJob.getPrinterJob();
pformat = pjob.pageDialog(pformat);
}
/**
* A thread for printing in.
*/
class PrintThread extends Thread {
PDFPrintPage ptPages;
PrinterJob ptPjob;
public PrintThread(PDFPrintPage pages, PrinterJob pjob) {
ptPages = pages;
ptPjob = pjob;
}
public void run() {
try {
ptPages.show(ptPjob);
ptPjob.print();
} catch (PrinterException pe) {
JOptionPane.showMessageDialog(PDFViewer.this,
"Printing Error: " + pe.getMessage(),
"Print Aborted",
JOptionPane.ERROR_MESSAGE);
}
ptPages.hide();
}
}
/**
* Print the current document.
*/
public void doPrint() {
PrinterJob pjob = PrinterJob.getPrinterJob();
pjob.setJobName(docName);
Book book = new Book();
PDFPrintPage pages = new PDFPrintPage(curFile);
book.append(pages, pformat, curFile.getNumPages());
pjob.setPageable(book);
if (pjob.printDialog()) {
new PrintThread(pages, pjob).start();
}
}
/**
* Close the current document.
*/
public void doClose() {
if (thumbs != null) {
thumbs.stop();
}
if (olf != null) {
olf.setVisible(false);
olf = null;
}
if (doThumb) {
thumbs = new ThumbPanel(null);
thumbscroll.getViewport().setView(thumbs);
}
setFullScreenMode(false, false);
page.showPage(null);
curFile = null;
setTitle(TITLE);
setEnabling();
}
/**
* Shuts down all known threads. This ought to cause the JVM to quit
* if the PDFViewer is the only application running.
*/
public void doQuit() {
// if (thumbs != null) {
// thumbs.stop();
// }
doClose();
dispose();
System.exit(0);
}
/**
* Turns on zooming
*/
public void doZoomTool() {
if (fspp == null) {
page.useZoomTool(true);
}
}
/**
* Turns off zooming; makes the page fit in the window
*/
public void doFitInWindow() {
if (fspp == null) {
page.useZoomTool(false);
page.setClip(null);
}
}
/**
* Shows or hides the thumbnails by moving the split pane divider
*/
public void doThumbs(boolean show) {
if (show) {
split.setDividerLocation((int) thumbs.getPreferredSize().width +
(int) thumbscroll.getVerticalScrollBar().
getWidth() + 4);
} else {
split.setDividerLocation(0);
}
}
/**
* Enter full screen mode
* @param force true if the user should be prompted for a screen to
* use in a multiple-monitor setup. If false, the user will only be
* prompted once.
*/
public void doFullScreen(boolean force) {
setFullScreenMode(fullScreen == null, force);
}
public void doZoom(double factor) {
}
// public void doOpenMeetingDoc(DocumentInfo doc) {
// }
/**
* Goes to the next page
*/
public void doNext() {
gotoPage(curpage + 1);
}
/**
* Goes to the previous page
*/
public void doPrev() {
gotoPage(curpage - 1);
}
/**
* Goes to the first page
*/
public void doFirst() {
gotoPage(0);
}
/**
* Goes to the last page
*/
public void doLast() {
gotoPage(curFile.getNumPages() - 1);
}
/**
* Goes to the page that was typed in the page number text field
*/
public void doPageTyped() {
int pagenum = -1;
try {
pagenum = Integer.parseInt(pageField.getText()) - 1;
} catch (NumberFormatException nfe) {
}
if (pagenum >= curFile.getNumPages()) {
pagenum = curFile.getNumPages() - 1;
}
if (pagenum >= 0) {
if (pagenum != curpage) {
gotoPage(pagenum);
}
} else {
pageField.setText(String.valueOf(curpage));
}
}
/**
* Runs the FullScreenMode change in another thread
*/
class PerformFullScreenMode implements Runnable {
boolean force;
public PerformFullScreenMode(boolean forcechoice) {
force = forcechoice;
}
public void run() {
fspp = new PagePanel();
fspp.setBackground(Color.black);
page.showPage(null);
fullScreen = new FullScreenWindow(fspp, force);
fspp.addKeyListener(PDFViewer.this);
gotoPage(curpage);
fullScreenAction.setEnabled(true);
}
}
/**
* Starts or ends full screen mode.
* @param full true to enter full screen mode, false to leave
* @param force true if the user should be prompted for a screen
* to use the second time full screen mode is entered.
*/
public void setFullScreenMode(boolean full, boolean force) {
// curpage= -1;
if (full && fullScreen == null) {
fullScreenAction.setEnabled(false);
new Thread(new PerformFullScreenMode(force)).start();
fullScreenButton.setSelected(true);
} else if (!full && fullScreen != null) {
fullScreen.close();
fspp = null;
fullScreen = null;
gotoPage(curpage);
fullScreenButton.setSelected(false);
}
}
public static void main(String args[]) {
String fileName = null;
boolean useThumbs = true;
for (int i = 0; i < args.length; i++) {
if (args[i].equalsIgnoreCase("-noThumb")) {
useThumbs = false;
} else if (args[i].equalsIgnoreCase("-help") ||
args[i].equalsIgnoreCase("-h") ||
args[i].equalsIgnoreCase("-?")) {
System.out.println("java com.sun.awc.PDFViewer [flags] [file]");
System.out.println("flags: [-noThumb] [-help or -h or -?]");
System.exit(0);
} else {
fileName = args[i];
}
}
// start the viewer
PDFViewer viewer;
viewer = new PDFViewer(useThumbs);
if (fileName != null) {
viewer.doOpen(fileName);
}
}
/**
* Handle a key press for navigation
*/
public void keyPressed(KeyEvent evt) {
int code = evt.getKeyCode();
if (code == evt.VK_LEFT) {
doPrev();
} else if (code == evt.VK_RIGHT) {
doNext();
} else if (code == evt.VK_UP) {
doPrev();
} else if (code == evt.VK_DOWN) {
doNext();
} else if (code == evt.VK_HOME) {
doFirst();
} else if (code == evt.VK_END) {
doLast();
} else if (code == evt.VK_PAGE_UP) {
doPrev();
} else if (code == evt.VK_PAGE_DOWN) {
doNext();
} else if (code == evt.VK_SPACE) {
doNext();
} else if (code == evt.VK_ESCAPE) {
setFullScreenMode(false, false);
}
}
/**
* Combines numeric key presses to build a multi-digit page number.
*/
class PageBuilder implements Runnable {
int value = 0;
long timeout;
Thread anim;
static final long TIMEOUT = 500;
/** add the digit to the page number and start the timeout thread */
public synchronized void keyTyped(int keyval) {
value = value * 10 + keyval;
timeout = System.currentTimeMillis() + TIMEOUT;
if (anim == null) {
anim = new Thread(this);
anim.start();
}
}
/**
* waits for the timeout, and if time expires, go to the specified
* page number
*/
public void run() {
long now, then;
synchronized (this) {
now = System.currentTimeMillis();
then = timeout;
}
while (now < then) {
try {
Thread.sleep(timeout - now);
} catch (InterruptedException ie) {
}
synchronized (this) {
now = System.currentTimeMillis();
then = timeout;
}
}
synchronized (this) {
gotoPage(value - 1);
anim = null;
value = 0;
}
}
}
PageBuilder pb = new PageBuilder();
public void keyReleased(KeyEvent evt) {
}
/**
* gets key presses and tries to build a page if they're numeric
*/
public void keyTyped(KeyEvent evt) {
char key = evt.getKeyChar();
if (key >= '0' && key <= '9') {
int val = key - '0';
pb.keyTyped(val);
}
}
/**
* Someone changed the selection of the outline tree. Go to the new
* page.
*/
public void valueChanged(TreeSelectionEvent e) {
if (e.isAddedPath()) {
OutlineNode node = (OutlineNode) e.getPath().getLastPathComponent();
if (node == null) {
return;
}
try {
PDFAction action = node.getAction();
if (action == null) {
return;
}
if (action instanceof GoToAction) {
PDFDestination dest = ((GoToAction) action).getDestination();
if (dest == null) {
return;
}
PDFObject page = dest.getPage();
if (page == null) {
return;
}
int pageNum = curFile.getPageNumber(page);
if (pageNum >= 0) {
gotoPage(pageNum);
}
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
}
|