You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|
From: <zy...@us...> - 2002-11-26 23:58:58
|
Update of /cvsroot/wett-p2p/org/wettp2p/gui In directory sc8-pr-cvs1:/tmp/cvs-serv28890 Added Files: ChatDisplayWindow.form ChatDisplayWindow.java ChatEntryLine.form ChatEntryLine.java ChatEntryLinePanel.form ChatEntryLinePanel.java ChatPanel.form ChatPanel.java Gui.form Gui.java ChatEntryLine.class Log Message: moving (opps) --- NEW FILE: ChatDisplayWindow.form --- <?xml version="1.0" encoding="UTF-8" ?> <Form version="1.0" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> <SubComponents> <Container class="javax.swing.JScrollPane" name="scrollPane"> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription"> <BorderConstraints direction="Center"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> <SubComponents> <Component class="javax.swing.JTextArea" name="textArea"> </Component> </SubComponents> </Container> </SubComponents> </Form> --- NEW FILE: ChatDisplayWindow.java --- /* * ChatDisplayWindow.java * * Copyright (C) 2002, Ray Benjamin * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * Created on November 1, 2002, 8:31 PM */ package org.wettp2p.gui; /** * * @author Ray Benjamin */ public class ChatDisplayWindow extends javax.swing.JPanel { /** Creates new form ChatDisplayWindow */ public ChatDisplayWindow() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents scrollPane = new javax.swing.JScrollPane(); textArea = new javax.swing.JTextArea(); setLayout(new java.awt.BorderLayout()); scrollPane.setViewportView(textArea); add(scrollPane, java.awt.BorderLayout.CENTER); }//GEN-END:initComponents /* The code that actually does the work... */ // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JScrollPane scrollPane; private javax.swing.JTextArea textArea; // End of variables declaration//GEN-END:variables } --- NEW FILE: ChatEntryLine.form --- <?xml version="1.0" encoding="UTF-8" ?> <Form version="1.0" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> </Form> --- NEW FILE: ChatEntryLine.java --- /* * ChatEntryLine.java * * Created on November 1, 2002, 8:30 PM */ package org.wettp2p.gui; /** * * @author ray */ public class ChatEntryLine extends javax.swing.JPanel { /** Creates new form ChatEntryLine */ public ChatEntryLine() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents setLayout(new java.awt.BorderLayout()); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables // End of variables declaration//GEN-END:variables } --- NEW FILE: ChatEntryLinePanel.form --- <?xml version="1.0" encoding="UTF-8" ?> <Form version="1.0" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> </Form> --- NEW FILE: ChatEntryLinePanel.java --- /* * ChatEntryLinePanel.java * * Created on November 1, 2002, 1:27 PM */ package org.wettp2p.gui; /** * * @author ray */ public class ChatEntryLinePanel extends javax.swing.JPanel { /** Creates new form ChatEntryLinePanel */ public ChatEntryLinePanel() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents setLayout(new java.awt.BorderLayout()); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables // End of variables declaration//GEN-END:variables } --- NEW FILE: ChatPanel.form --- <?xml version="1.0" encoding="UTF-8" ?> <Form version="1.0" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> </Form> --- NEW FILE: ChatPanel.java --- /* * ChatPanel.java * * Created on November 1, 2002, 1:30 PM */ package org.wettp2p.gui; /** * This class provides a panel that holds the ChatDisplayWindow * and the ChatEntryLines for a particular ChatContext. * * @author Ray Benjamin * $Author: zyrca $ * $Date: 2002/11/26 23:58:55 $ * $Name: $ * $Locker: $ * $Revision: 1.1 $ * $State: Exp $ */ public class ChatPanel extends javax.swing.JPanel { /** Creates new form ChatPanel */ public ChatPanel() { initComponents(); } public void addChatEntryLine(ChatEntryLine el) { } public void removeChatEntryLine(ChatEntryLine el) { } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents setLayout(new java.awt.BorderLayout()); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables // End of variables declaration//GEN-END:variables } /* * CVS Log Entries: * * $Log: ChatPanel.java,v $ * Revision 1.1 2002/11/26 23:58:55 zyrca * moving (opps) * * Revision 1.1 2002/11/26 22:57:28 zyrca * Adding the chat manager GUI for Ray. The .form files are for NetBeans. * */ --- NEW FILE: Gui.form --- <?xml version="1.0" encoding="UTF-8" ?> <Form version="1.0" type="org.netbeans.modules.form.forminfo.JFrameFormInfo"> <NonVisualComponents> <Menu class="javax.swing.JMenuBar" name="mainMenuBar"> <SubComponents> <Menu class="javax.swing.JMenu" name="fileMenu"> <Properties> <Property name="text" type="java.lang.String" value="File"/> </Properties> </Menu> </SubComponents> </Menu> </NonVisualComponents> <SyntheticProperties> <SyntheticProperty name="menuBar" type="java.lang.String" value="mainMenuBar"/> <SyntheticProperty name="formSizePolicy" type="int" value="1"/> </SyntheticProperties> <Events> <EventHandler event="windowClosing" listener="java.awt.event.WindowListener" parameters="java.awt.event.WindowEvent" handler="exitForm"/> </Events> <AuxValues> <AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,1,-62,0,0,2,103"/> </AuxValues> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> <SubComponents> <Container class="javax.swing.JTabbedPane" name="dataTabPanel"> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription"> <BorderConstraints direction="West"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> </Container> <Container class="javax.swing.JTabbedPane" name="toolTabPanel"> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription"> <BorderConstraints direction="East"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> </Container> <Container class="javax.swing.JPanel" name="statusPanel"> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription"> <BorderConstraints direction="South"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignFlowLayout"/> </Container> <Container class="javax.swing.JPanel" name="mainCenterPanel"> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription"> <BorderConstraints direction="Center"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/> <SubComponents> <Container class="javax.swing.JSplitPane" name="jSplitPane1"> <Properties> <Property name="orientation" type="int" value="0"/> </Properties> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription"> <BorderConstraints direction="Center"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout"/> <SubComponents> <Container class="javax.swing.JTabbedPane" name="topChatTabPanel"> <Properties> <Property name="tabPlacement" type="int" value="3"/> </Properties> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout$JSplitPaneConstraintsDescription"> <JSplitPaneConstraints position="left"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> </Container> <Container class="javax.swing.JTabbedPane" name="bottomChatTabPanel"> <Properties> <Property name="tabPlacement" type="int" value="3"/> </Properties> <Constraints> <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout$JSplitPaneConstraintsDescription"> <JSplitPaneConstraints position="right"/> </Constraint> </Constraints> <Layout class="org.netbeans.modules.form.compat2.layouts.support.JTabbedPaneSupportLayout"/> </Container> </SubComponents> </Container> </SubComponents> </Container> </SubComponents> </Form> --- NEW FILE: Gui.java --- /* * Gui.java * * Created on October 31, 2002, 8:40 AM */ package org.wettp2p.gui; /** * * @author ray */ public class Gui extends javax.swing.JFrame { /** Creates new form Gui */ public Gui() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ private void initComponents() {//GEN-BEGIN:initComponents dataTabPanel = new javax.swing.JTabbedPane(); toolTabPanel = new javax.swing.JTabbedPane(); statusPanel = new javax.swing.JPanel(); mainCenterPanel = new javax.swing.JPanel(); jSplitPane1 = new javax.swing.JSplitPane(); topChatTabPanel = new javax.swing.JTabbedPane(); bottomChatTabPanel = new javax.swing.JTabbedPane(); mainMenuBar = new javax.swing.JMenuBar(); fileMenu = new javax.swing.JMenu(); addWindowListener(new java.awt.event.WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent evt) { exitForm(evt); } }); getContentPane().add(dataTabPanel, java.awt.BorderLayout.WEST); getContentPane().add(toolTabPanel, java.awt.BorderLayout.EAST); getContentPane().add(statusPanel, java.awt.BorderLayout.SOUTH); mainCenterPanel.setLayout(new java.awt.BorderLayout()); jSplitPane1.setOrientation(javax.swing.JSplitPane.VERTICAL_SPLIT); topChatTabPanel.setTabPlacement(javax.swing.JTabbedPane.BOTTOM); jSplitPane1.setLeftComponent(topChatTabPanel); bottomChatTabPanel.setTabPlacement(javax.swing.JTabbedPane.BOTTOM); jSplitPane1.setRightComponent(bottomChatTabPanel); mainCenterPanel.add(jSplitPane1, java.awt.BorderLayout.CENTER); getContentPane().add(mainCenterPanel, java.awt.BorderLayout.CENTER); fileMenu.setText("File"); mainMenuBar.add(fileMenu); setJMenuBar(mainMenuBar); pack(); }//GEN-END:initComponents /** Exit the Application */ private void exitForm(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_exitForm System.exit(0); }//GEN-LAST:event_exitForm /** * @param args the command line arguments */ public static void main(String args[]) { new Gui().show(); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JTabbedPane dataTabPanel; private javax.swing.JMenu fileMenu; private javax.swing.JPanel mainCenterPanel; private javax.swing.JTabbedPane bottomChatTabPanel; private javax.swing.JSplitPane jSplitPane1; private javax.swing.JMenuBar mainMenuBar; private javax.swing.JPanel statusPanel; private javax.swing.JTabbedPane toolTabPanel; private javax.swing.JTabbedPane topChatTabPanel; // End of variables declaration//GEN-END:variables } --- NEW FILE: ChatEntryLine.class --- (This appears to be a binary file; contents omitted.) |