]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.wiki.ui/src/org/simantics/wiki/ui/editor/WikiExportPDFAction.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.wiki.ui / src / org / simantics / wiki / ui / editor / WikiExportPDFAction.java
index 4f145a6dd893fd0d85d73f865bdb56ad282ed400..a12805eba9bafc1cd653e7791f4893e3087db24b 100644 (file)
@@ -1,68 +1,68 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.wiki.ui.editor;\r
-\r
-import java.io.FileNotFoundException;\r
-import java.io.FileOutputStream;\r
-\r
-import org.eclipse.jface.action.Action;\r
-import org.eclipse.swt.SWT;\r
-import org.eclipse.swt.widgets.Display;\r
-import org.eclipse.swt.widgets.FileDialog;\r
-import org.eclipse.swt.widgets.Shell;\r
-\r
-import com.lowagie.text.Document;\r
-import com.lowagie.text.DocumentException;\r
-import com.lowagie.text.PageSize;\r
-import com.lowagie.text.pdf.PdfWriter;\r
-\r
-public class WikiExportPDFAction extends Action {\r
-\r
-       final IExportable exportable;\r
-       \r
-       public WikiExportPDFAction(IExportable exportable) {\r
-               this.exportable = exportable;\r
-       }\r
-       \r
-       public void run() {\r
-               \r
-               Shell shell = Display.getCurrent().getActiveShell();\r
-\r
-        FileDialog fd = new FileDialog(shell, SWT.SAVE);\r
-        fd.setText("Save PDF");\r
-        fd.setFilterPath("C:/");\r
-        String[] filterExt = { "*.pdf", "*.*" };\r
-        fd.setFilterExtensions(filterExt);\r
-        String filename = fd.open();\r
-        if (filename == null)\r
-            return;\r
-               exportPDF(filename);\r
-               \r
-       }\r
-       \r
-       protected void exportPDF(String filename) {             \r
-               Document document = new Document(PageSize.A4,36,36,36,36);\r
-               try {\r
-                       PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(filename));\r
-                       document.open();\r
-                       exportable.export(document, writer);\r
-               } catch (FileNotFoundException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } catch (DocumentException e) {\r
-                       // TODO Auto-generated catch block\r
-                       e.printStackTrace();\r
-               } finally {\r
-                       document.close();\r
-               }\r
-       }\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.wiki.ui.editor;
+
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+
+import org.eclipse.jface.action.Action;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Display;
+import org.eclipse.swt.widgets.FileDialog;
+import org.eclipse.swt.widgets.Shell;
+
+import com.lowagie.text.Document;
+import com.lowagie.text.DocumentException;
+import com.lowagie.text.PageSize;
+import com.lowagie.text.pdf.PdfWriter;
+
+public class WikiExportPDFAction extends Action {
+
+       final IExportable exportable;
+       
+       public WikiExportPDFAction(IExportable exportable) {
+               this.exportable = exportable;
+       }
+       
+       public void run() {
+               
+               Shell shell = Display.getCurrent().getActiveShell();
+
+        FileDialog fd = new FileDialog(shell, SWT.SAVE);
+        fd.setText("Save PDF");
+        fd.setFilterPath("C:/");
+        String[] filterExt = { "*.pdf", "*.*" };
+        fd.setFilterExtensions(filterExt);
+        String filename = fd.open();
+        if (filename == null)
+            return;
+               exportPDF(filename);
+               
+       }
+       
+       protected void exportPDF(String filename) {             
+               Document document = new Document(PageSize.A4,36,36,36,36);
+               try {
+                       PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(filename));
+                       document.open();
+                       exportable.export(document, writer);
+               } catch (FileNotFoundException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } catch (DocumentException e) {
+                       // TODO Auto-generated catch block
+                       e.printStackTrace();
+               } finally {
+                       document.close();
+               }
+       }
+}