File: SimpleViewer.java

package info (click to toggle)
openoffice.org-sdk 1.1.0-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 83,048 kB
  • ctags: 39,899
  • sloc: ansic: 46,063; java: 26,223; cpp: 5,050; makefile: 3,376; xml: 1,836; pascal: 407; perl: 316; sh: 60
file content (311 lines) | stat: -rw-r--r-- 9,718 bytes parent folder | download | duplicates (2)
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
/*************************************************************************
 *
 *  $RCSfile: SimpleViewer.java,v $
 *
 *  $Revision: 1.3 $
 *
 *  last change: $Author: hr $ $Date: 2003/06/30 15:31:31 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  the BSD license.
 *  
 *  Copyright (c) 2003 by Sun Microsystems, Inc.
 *  All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions
 *  are met:
 *  1. Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *  2. Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *  3. Neither the name of Sun Microsystems, Inc. nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
 *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *     
 *************************************************************************/

import javax.swing.filechooser.*;
import javax.swing.*;
import java.io.*;
import java.awt.*;
import java.awt.event.*;

import com.sun.star.beans.LocalOfficeConnection;

/** A simple Applet that contains the SimpleBean.
 *
 * This applet is a sample implementation of the 
 * OpenOffice.org bean. 
 * When initally loaded the applet has two buttons
 * one for opening an existant file and one to open 
 * a blank document of a given type supported by
 * OpenOffice.org eg. Writer, Calc, Impress, .....
 *
 */
 
public class SimpleViewer extends java.applet.Applet
{
   
   /**
    * Private variables declaration - GUI components
    */
   private Panel buttonPanel;
   private JButton newDocumentButton;
   private JPopupMenu documentTypePopUp;
   private JButton openDocumentButton;
   private JTextField documentURLTextField;
   private JMenuItem item;
   private JFileChooser fileChooser;

   /**
    * Private variables declaration - SimpleBean variables
    */
   private SimpleBean simpleBean;
   

   /**
    * Initialize the Appplet
    */
   public void init()
   {
        //Initialize GUI components
        buttonPanel = new Panel();
        newDocumentButton = new JButton("New document...");
        documentTypePopUp = new JPopupMenu();
        openDocumentButton = new JButton("Open file...");
        documentURLTextField = new JTextField();
      
		//The simpleBean needs to be initialized to add it to the applet
		simpleBean = new SimpleBean();
		//Setup the connection to a local Office process
		simpleBean.setOfficeConnection(new LocalOfficeConnection());
                
       
        //Set up the Popup Menu to create a blank document
        documentTypePopUp.setToolTipText("Create an empty document");
        
        item = documentTypePopUp.add("Text Document");
        item.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent evt)
            {
                createBlankDoc("private:factory/swriter", 
                    "New text document");
            }
        });

        item = documentTypePopUp.add("Presentation Document");
        item.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent evt)
            {
                createBlankDoc("private:factory/simpress", 
                    "New presentation document");
            }
        });

        item = documentTypePopUp.add("Drawing Document");
        item.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent evt)
            {
                createBlankDoc("private:factory/sdraw", 
                    "New drawing document");
            }
        });

        item = documentTypePopUp.add("Formula Document");
        item.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent evt)
            {
                createBlankDoc("private:factory/smath", 
                    "New formula document");
            }
        });

        item = documentTypePopUp.add("Spreadsheet Document");
        item.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent evt)
            {
                createBlankDoc("private:factory/scalc", 
                    "New spreadsheet document");
            }
        });

        openDocumentButton.addActionListener(new ActionListener()
        {
            public void actionPerformed(ActionEvent evt)
            {
                openDocument(evt);
            }
       });

       newDocumentButton.addActionListener(new ActionListener()
       {
            public void actionPerformed(ActionEvent evt)
            {
                documentTypePopUp.show((Component)evt.getSource(), 0,0);
            }
       });

       documentURLTextField.setEditable(false);
       documentURLTextField.setPreferredSize(new Dimension(200, 30));

       buttonPanel.add(newDocumentButton);
       buttonPanel.add(openDocumentButton);
       buttonPanel.add(documentURLTextField);

       setLayout(new BorderLayout());

       add(buttonPanel, BorderLayout.SOUTH);
       add(simpleBean, BorderLayout.CENTER);
       simpleBean.setMenuBarVisible(false);
   }

   /**
    * Create a blank document of type <code>desc</code>
    *
    * @param url The private internal URL of the OpenOffice.org
    *            document describing the document
    * @param desc A description of the document to be created
    */
   private void createBlankDoc(String url, String desc)
   {
       //Create a blank document
       try
       {
            documentURLTextField.setText(desc);
            //Get the office process to load the URL
            simpleBean.load(url);
       }
       catch (IOException ioe)
       {
            ioe.printStackTrace();
            //return;
       }
       simpleBean.setMenuBarVisible(true);
       return;
    }

   /**
    * Opens an existing document using the fileChooser
    *
    * @param evt A button action event
    */
   private void openDocument(ActionEvent evt)
   {
        int fileChoserRetVal = 0;
        
        //Show the fileChooser
        fileChoserRetVal = getFileChooser().showOpenDialog(this);

        if(fileChoserRetVal == JFileChooser.APPROVE_OPTION)
        {
            //Get the file selected in the fileChooser
            File file = getFileChooser().getSelectedFile();
            
            //If the file exists, get the Office process to load it
            if(file.exists())
            {
                try
                {
                    documentURLTextField.setText(file.getName());
                    simpleBean.load(file.toURL().toString());
                }
                catch (IOException ioe)
                {
                    ioe.printStackTrace();
                    return;
                }
           }
           else
           {
                //If the file does not exist create a blank writer document
                try
                {
                    documentURLTextField.setText("New text document");
                    simpleBean.load("private:factory/swriter");
                }
                catch (IOException ioe)
                {
                    ioe.printStackTrace();
                    return;
                }
           }
           simpleBean.setMenuBarVisible(true);
       }
   }
   
   /**
    * A file chooser factory.
    */
   private JFileChooser getFileChooser()
   {
        if(fileChooser == null)
        {
            fileChooser = new JFileChooser();
        }
        return fileChooser;
   }

   /**
    * An ExitListener listening for windowClosing events
    */
   private class ExitListener extends WindowAdapter
   {
        /**
         * windowClosed
         * 
         * @param e A WindowEvent for a closed Window event
         */
        public void windowClosed(WindowEvent e)
        {
            simpleBean.closeConnection();
            stop();
            System.exit(0);
        }

        /**
         * windowClosing for a closing window event
         *
         * @param e A WindowEvent for a closing window event
         */
        public void windowClosing(WindowEvent e)
        {
            ((Window)e.getSource()).dispose();
        }
   }

   public static void main(String args[])
   {
       Frame frame = new Frame("OpenOffice.org Demo");
       SimpleViewer SimpleViewer = new SimpleViewer();

       frame.setLayout(new BorderLayout());

       frame.addWindowListener(SimpleViewer.new ExitListener());

       SimpleViewer.init();
       SimpleViewer.start();

       frame.add(SimpleViewer);
       frame.setSize(640,480);
       frame.show();
   }
}