ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/uk/org/iscream/cms/conient/Conient.java
(Generate patch)

Comparing projects/cms/source/conient/uk/org/iscream/cms/conient/Conient.java (file contents):
Revision 1.16 by ajm, Wed Jan 24 03:21:26 2001 UTC vs.
Revision 1.28 by ajm, Mon Mar 19 00:23:50 2001 UTC

# Line 1 | Line 1
1   //---PACKAGE DECLARATION---
2 < package uk.ac.ukc.iscream.conient;
2 > package uk.org.iscream.conient;
3  
4   //---IMPORTS---
5   import javax.swing.*;
# Line 28 | Line 28 | public class Conient extends JFrame {
28      /**
29       * The initial width of the window
30       */        
31 <    private final int DEFAULT_WIDTH = 600;
31 >    private final int DEFAULT_WIDTH = 700;
32      
33      /**
34       * The initial height of the window
# Line 36 | Line 36 | public class Conient extends JFrame {
36      private final int DEFAULT_HEIGHT = 600;
37      
38      /**
39 <     * The i-scream server port
39 >     * The default configuration fle
40 >     * This can be specified on the command line
41       */
42 <    public static final int PORT = 4510;
42 >    public static final String DEFAULT_CONFIG_FILE = "./etc/default.conf";
43      
44 +    /**
45 +     * The time in seconds to display the splash
46 +     * screen for
47 +     */
48 +    public static final int DISPLAY_SPLASH_TIME_SECONDS = 3;
49 +    
50   //---STATIC METHODS---
51  
52      /**
# Line 51 | Line 58 | public class Conient extends JFrame {
58      public static void main(String[] args) {
59          // get the host from the command line if they gave it
60          String host = null;
61 +        String configFile = DEFAULT_CONFIG_FILE;
62          if (args.length == 1) {
63 <            host = args[0];
63 >            configFile = args[0];
64          }
65 +
66 +        // start the configuration system
67 +        Configuration.initialise(configFile);
68  
69          // the data display panel
70          DataPanel data = new DataPanel();
# Line 63 | Line 74 | public class Conient extends JFrame {
74          
75          // the main frame (passed the two panels)
76          Conient client = new Conient(data, control);
77 <        Conient.addMessage("Conient {an I-scream Client} © 2001 University of Kent & Project I-Scream");
77 >        conientFrame = (Frame) client;
78 >        Conient.addMessage("Conient {an i-scream Client} © 2001 University of Kent & Project i-scream");
79 >
80          Conient.addMessage("Conient ready.");
81 +        
82      }
69
83      
84 +    /**
85 +     * A static accessor, allowing components of the system
86 +     * to get hold of the root frame of the system.
87 +     *
88 +     * see conientFrame attribute for details.
89 +     *
90 +     * @return the root Conient frame
91 +     */
92 +    public static Frame getFrame() {
93 +        return conientFrame;
94 +    }
95 +    
96   //---CONSTRUCTORS---
97  
98      /**
99       * Creates a new Swing Client Frame
100       */
101 <    private Conient(JPanel data, JPanel control) {
101 >    private Conient(JSplitPane data, ControlPanel control) {
102          // set up the Frame
103 <        super("Conient {an I-scream Client}");
103 >        super("Conient {an i-scream Client}");
104          setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
105 <
105 >        setJMenuBar(control.getMenuBar());
106 >        
107          // set what happens when the X in the corner is clicked        
108          addWindowListener(new WindowAdapter() {
109              public void windowClosing(WindowEvent e) {System.exit(0);}
# Line 85 | Line 111 | public class Conient extends JFrame {
111  
112          // add the control pane to the top border
113          getContentPane().add(control, "North");
114 <        
115 <        // create a scrollable pane for the data in the centre
90 <        JScrollPane scrollPane = new JScrollPane(data);
91 <        getContentPane().add(scrollPane, "Center");
114 >        // add the data pane to the centre        
115 >        getContentPane().add(data);
116  
117          // setup the status panel        
118          JPanel bottom = new JPanel();
# Line 100 | Line 124 | public class Conient extends JFrame {
124          bottom.add(messagesPane, "Center");
125          JPanel statusPanel = new JPanel();
126          JPanel linkPanel = new JPanel();
127 <        linkPanel.setLayout(new GridLayout(2,1));
127 >        linkPanel.setLayout(new GridLayout(1,2));
128          linkPanel.add(_controlStatus);
129          linkPanel.add(_dataStatus);
130 <        statusPanel.setLayout(new GridLayout(1,3));
130 >        statusPanel.setLayout(new GridLayout(2,1));
131          statusPanel.add(linkPanel);
132          statusPanel.add(_queueStatus);
133          bottom.add(statusPanel, "South");
# Line 111 | Line 135 | public class Conient extends JFrame {
135          // add the status panel to the bottom border
136          getContentPane().add(bottom, "South");
137          
138 <        // show the window
138 >        // a nice icon for the window
139 >        setIconImage((new ImageIcon("./resources/server.gif")).getImage());
140 >
141 >        // and just because we can, a silly splash screen
142 >        // of the dudes that did this funky gibble
143 >        Splash splash = new Splash();
144 >        splash.show();
145 >        // wait
146 >        try {
147 >            Thread.sleep(DISPLAY_SPLASH_TIME_SECONDS * 1000);
148 >        } catch (InterruptedException e) {
149 >            // don't do anything, we don't care
150 >        }
151 >        //loose the window
152 >        splash.dispose();
153 >        splash = null;        
154 >        // show the main window
155          show();
156      }
157  
# Line 193 | Line 233 | public class Conient extends JFrame {
233       * The place where system messages are written.
234       */
235      static JTextArea _messages = new JTextArea();
236 +    {
237 +        _messages.setLineWrap(true);
238 +    }
239 +    
240 +    /**
241 +     * Holds a reference to the root frame for Conient
242 +     * This is only used by dialogs (specifically the configurationn
243 +     * dialog) so that it can be modal, please use the accessor.
244 +     */
245 +    private static Frame conientFrame;
246 +    
247 + //---INNER CLASSES----
248 +
249 +    /**
250 +     * An inner class to display a splash screen
251 +     */
252 +    private class Splash extends JWindow {
253 +        
254 +        /**
255 +         * Constructs a new splash screen
256 +         */
257 +        public Splash() {
258 +            setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
259 +            JPanel splash = new JPanel();
260 +            splash.setBackground(Color.black);
261 +            JLabel image = new JLabel((new ImageIcon("./resources/i-scream-splash.gif")));
262 +            splash.add(image);
263 +            setContentPane(splash);
264 +            Dimension screen = getToolkit().getScreenSize();
265 +            pack();
266 +            setLocation((screen.width - getSize().width) / 2,
267 +                        (screen.height - getSize().height) / 2);
268 +            
269 +            
270 +        }
271 +    }
272   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines