X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbin%2FJalview.java;h=65b32af72081c953bb03b70097d650c646b023b7;hb=6b942b9c484d359e4198b5d2d151705b7ad02dfc;hp=efaf86d1b8b207ca24f356c3c7bf965b9cfa044d;hpb=2d62dfc20ea72f47f3dfc44dfe78d6f451342716;p=jalview.git diff --git a/src/jalview/bin/Jalview.java b/src/jalview/bin/Jalview.java index efaf86d..65b32af 100755 --- a/src/jalview/bin/Jalview.java +++ b/src/jalview/bin/Jalview.java @@ -17,6 +17,10 @@ */ package jalview.bin; +import java.awt.FlowLayout; +import java.awt.Frame; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; import java.io.BufferedReader; import java.io.File; import java.io.FileOutputStream; @@ -67,6 +71,7 @@ public class Jalview } }); } + protected static boolean proteine; /** * main class for Jalview application @@ -515,8 +520,28 @@ public class Jalview // We'll only open the default file if the desktop is visible. // And the user // //////////////////// + + JFrame Typechooser =new JFrame("choose molecule type"); + FlowLayout fl = new FlowLayout(); + Typechooser.setLayout(fl); + Typechooser.setSize(400,400); + Typechooser.setDefaultCloseOperation(Typechooser.DISPOSE_ON_CLOSE); + JLabel label = new JLabel("What would you open ? "); + JButton rnabutton = new JButton("RNA molecule"); + JButton pbutton = new JButton("Proteine molecule"); + + pbutton.addActionListener(new pbuttonlistener()); + rnabutton.addActionListener(new rnabuttonlistener()); + Typechooser.getContentPane().add(label); + Typechooser.getContentPane().add(rnabutton); + Typechooser.getContentPane().add(pbutton); + Typechooser.setVisible(true); + + + + if (!headless && file == null && vamsasImport == null - && jalview.bin.Cache.getDefault("SHOW_STARTUP_FILE", true)) + && jalview.bin.Cache.getDefault("SHOW_STARTUP_FILE", true) && proteine == true) { file = jalview.bin.Cache.getDefault( "STARTUP_FILE", @@ -589,7 +614,8 @@ public class Jalview desktop.setInBatchMode(false); } } - + + private static void startUsageStats(final Desktop desktop) { /** @@ -901,6 +927,21 @@ public class Jalview * @author Andrew Waterhouse and JBP documented. * */ + +class rnabuttonlistener implements ActionListener{ + public void actionPerformed(ActionEvent arg0) { + System.out.println("Good idea ! "); + + } +} + +class pbuttonlistener implements ActionListener{ + public void actionPerformed(ActionEvent arg0) { + + + } +} + class ArgsParser { Vector vargs = null; @@ -1039,4 +1080,7 @@ class FeatureFetcher { return queued == 0 && running == 0; } + + + };