42c295613cb4b2d5ede15e657474dc32e2e8a2b9
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.quantum.sql / src / com / quantum / view / PHPSourceConsole.java
1 package com.quantum.view;
2
3 /**********************************************************************
4 Copyright (c) 2000, 2002 IBM Corp. and others.
5 All rights reserved. This program and the accompanying materials
6 are made available under the terms of the Common Public License v1.0
7 which accompanies this distribution, and is available at
8 http://www.eclipse.org/legal/cpl-v10.html
9
10 Contributors:
11         IBM Corporation - Initial implementation
12         Klaus Hartlage - www.eclipseproject.de
13 **********************************************************************/
14 import org.eclipse.core.runtime.IStatus;
15 import org.eclipse.core.runtime.Status;
16 import org.eclipse.jface.action.Action;
17 import org.eclipse.jface.resource.JFaceResources;
18 import org.eclipse.jface.text.BadLocationException;
19 import org.eclipse.jface.text.Document;
20 import org.eclipse.jface.text.TextViewer;
21 import org.eclipse.swt.SWT;
22 import org.eclipse.swt.custom.StyledText;
23 import org.eclipse.swt.layout.GridData;
24 import org.eclipse.swt.widgets.Composite;
25 import org.eclipse.ui.IActionBars;
26 import org.eclipse.ui.IWorkbenchActionConstants;
27 import org.eclipse.ui.IWorkbenchPage;
28 import org.eclipse.ui.PartInitException;
29 import org.eclipse.ui.PlatformUI;
30 import org.eclipse.ui.part.ViewPart;
31
32 import com.quantum.Messages;
33 import com.quantum.QuantumPlugin;
34
35 /**
36  * The PHPSourceConsole is used to display the output from the PHP SQL wizards
37  * @see ViewPart
38  */
39 public class PHPSourceConsole extends ViewPart {
40
41   public static final String CONSOLE_ID =
42         "net.sourceforge.phpdt.sql.view.phpsourceconsoleview";
43
44   TextViewer viewer = null;
45   private Document document = null;
46
47   /**
48    * The constructor.
49    */
50   public PHPSourceConsole() {
51   }
52
53   /**
54    * Insert the method's description here.
55    * @see ViewPart#createPartControl
56    */
57   public void createPartControl(Composite parent) {
58         viewer = new TextViewer(parent, SWT.WRAP | SWT.V_SCROLL | SWT.H_SCROLL);
59         GridData viewerData = new GridData(GridData.FILL_BOTH);
60         viewer.getControl().setLayoutData(viewerData);
61         viewer.setEditable(false);
62
63         StyledText widget = viewer.getTextWidget();
64         widget.setFont(
65           JFaceResources.getFontRegistry().get(JFaceResources.TEXT_FONT));
66         Action cutAction = new Action() {
67           public void run() {
68                 viewer.getTextWidget().cut();
69           }
70         };
71         Action copyAction = new Action() {
72           public void run() {
73                 viewer.getTextWidget().copy();
74           }
75         };
76         Action pasteAction = new Action() {
77           public void run() {
78                 viewer.getTextWidget().paste();
79           }
80         };
81
82         IActionBars bars = this.getViewSite().getActionBars();
83         bars.setGlobalActionHandler(IWorkbenchActionConstants.CUT, cutAction);
84         bars.setGlobalActionHandler(IWorkbenchActionConstants.COPY, copyAction);
85         bars.setGlobalActionHandler(IWorkbenchActionConstants.PASTE, pasteAction);
86   }
87
88   /**
89    * Insert the method's description here.
90    * @see ViewPart#setFocus
91    */
92   public void setFocus() {
93   }
94
95   /**
96    * Set the text for the viewer
97    */
98   private void setOutputText(String text) {
99         document = new Document(text);
100         viewer.setDocument(document);
101   }
102
103   private void appendOutputText(String text) {
104         try {
105           if (document == null) {
106                 document = new Document(text);
107                 viewer.setDocument(document);
108           }
109           document.replace(document.getLength(), 0, text);
110         } catch (BadLocationException e) {
111         }
112         //  viewer.setDocument(document);
113   }
114
115   public static PHPSourceConsole getInstance() {
116         IWorkbenchPage page =
117           PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
118         PHPSourceConsole console = (PHPSourceConsole) page.findView(PHPSourceConsole.CONSOLE_ID);
119         // if (PHPeclipsePlugin.SHOW_OUTPUT_IN_CONSOLE.getDefault().getPreferenceStore().getBoolean(PHPeclipsePlugin.SHOW_OUTPUT_IN_CONSOLE) == true) {
120
121         try {
122           page.showView(PHPSourceConsole.CONSOLE_ID);
123           if (console == null) { 
124                 console = (PHPSourceConsole) page.findView(PHPSourceConsole.CONSOLE_ID);
125           }
126         } catch (PartInitException e) {
127           QuantumPlugin.getDefault().getLog().log(
128                 new Status(
129                   IStatus.ERROR,
130                   QuantumPlugin.PLUGIN_ID,  
131                   0,
132                   Messages.getString("sqlconsole.viewopeningproblem"),
133                   e));
134         }
135
136         //   }
137         return console;
138   }
139
140   /**
141    * Prints out the string represented by the string buffer
142    */
143   public synchronized void print(String output) {
144         appendOutputText(output);
145   }
146
147   /**
148    * Prints out the string represented by the string buffer
149    */
150   public synchronized void println(String output) {
151         appendOutputText(output+'\n');
152   }
153
154   public synchronized void clear() {
155         setOutputText("");
156   }
157 }