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.22 by ajm, Wed Feb 21 23:45:16 2001 UTC vs.
Revision 1.30 by ajm, Thu Mar 22 00:39:52 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 74 | 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} (c) 2001 The i-scream Project (http://www.i-scream.org.uk)");
79  
80          Conient.addMessage("Conient ready.");
81          
82      }
82
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}");
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 98 | 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
103 <        JScrollPane scrollPane = new JScrollPane(data);
104 <        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 125 | Line 136 | public class Conient extends JFrame {
136          getContentPane().add(bottom, "South");
137          
138          // a nice icon for the window
139 <        setIconImage((new ImageIcon("./uk/ac/ukc/iscream/conient/server.gif")).getImage());
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
# Line 226 | Line 237 | public class Conient extends JFrame {
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      /**
# Line 240 | Line 258 | public class Conient extends JFrame {
258              setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
259              JPanel splash = new JPanel();
260              splash.setBackground(Color.black);
261 <            JLabel image = new JLabel((new ImageIcon("./uk/ac/ukc/iscream/conient/i-scream-splash.gif")));
261 >            JLabel image = new JLabel((new ImageIcon("./resources/i-scream-splash.gif")));
262              splash.add(image);
263              setContentPane(splash);
264              Dimension screen = getToolkit().getScreenSize();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines