JAL-842, Further creation of VARNA classes (probably to much), filled
[jalview.git] / src / jalview / gui / AppVarna.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6)
3  * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * 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  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.gui;
19
20 import java.util.*;
21 import java.awt.*;
22 import javax.swing.*;
23 import javax.swing.event.*;
24
25 import java.awt.event.*;
26 import java.io.*;
27
28 import jalview.api.SequenceStructureBinding;
29 import jalview.bin.Cache;
30 import jalview.datamodel.*;
31 import jalview.gui.ViewSelectionMenu.ViewSetProvider;
32 import jalview.structure.*;
33 import jalview.io.*;
34 import jalview.schemes.*;
35
36 public class AppVarna extends JInternalFrame // implements Runnable,SequenceStructureBinding, ViewSetProvider
37
38 {
39   AppVarnaBinding vab;
40
41   JPanel scriptWindow;
42
43   JSplitPane splitPane;
44
45   //RenderPanel renderPanel;
46
47   AlignmentPanel ap;
48
49   Vector atomsPicked = new Vector();
50   
51   void initVarna(){
52           //vab.setFinishedInit(false);
53           //renderPanel = new RenderPanel();
54           // TODO: consider waiting until the structure/view is fully loaded before
55           // displaying
56           //this.getContentPane().add(renderPanel, java.awt.BorderLayout.CENTER);
57           jalview.gui.Desktop.addInternalFrame(this,"test",300,300);
58   }
59   
60   private boolean _started = false;
61
62   public void run(){
63           _started = true;
64           
65           try
66       {
67         initVarna();
68       } catch (OutOfMemoryError oomerror)
69       {
70         new OOMWarning("When trying to open the Varna viewer!", oomerror);
71       } catch (Exception ex)
72       {
73         Cache.log.error("Couldn't open Varna viewer!", ex);
74       }
75   }
76   
77
78 }