krysalis-jplugin/src/java/org/krysalis/swingx/swing JOutlookBar.java,1.1.1.1,1.2 JCloseableRadioButton.java,1.1.1.1,1.2 TabButton.java,1.1.1.1,1.2 JButtonList.java,1.1.1.1,1.2 StoreEntitySelector.java,1.1.1.1,1.2 WindowUtils.java,1.1.1.1,1.2 JSwitcherToolBar.java,1.1.1.1,1.2 AntiAliasedJTree.java,1.1.1.1,NONE AntiAliasedJTextArea.java,1.1.1.1,NONE AntiAliasedJButton.java,1.1.1.1,NONE AntiAliasedJPanel.java,1.1.1.1,NONE AntiAliasedJToolBar.java,1.1.1.1,NONE AntiAliasedJRadioButton.java,1.1.1.1,NONE

[email protected]
Newsgroups gmane.comp.krysalis.metamorphosis.cvs
Message-ID <[email protected]>
Update of /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing
In directory sc8-pr-cvs1:/tmp/cvs-serv2674/src/java/org/krysalis/swingx/swing

Modified Files:
	JOutlookBar.java JCloseableRadioButton.java TabButton.java 
	JButtonList.java StoreEntitySelector.java WindowUtils.java 
	JSwitcherToolBar.java 
Removed Files:
	AntiAliasedJTree.java AntiAliasedJTextArea.java 
	AntiAliasedJButton.java AntiAliasedJPanel.java 
	AntiAliasedJToolBar.java AntiAliasedJRadioButton.java 
Log Message:
Remove the AntiAliased-* classes

Index: JOutlookBar.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/JOutlookBar.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** JOutlookBar.java	15 Apr 2003 21:10:36 -0000	1.1.1.1
--- JOutlookBar.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 17,20 ****
--- 17,21 ----
  import javax.swing.BorderFactory;
  import javax.swing.ImageIcon;
+ import javax.swing.JButton;
  import javax.swing.JComponent;
  import javax.swing.JPanel;
***************
*** 146,150 ****
       *@param  button  Description of Parameter
       */
!     public void removeTab(AntiAliasedJButton button) {
          button.removeActionListener(this);
          buttons.removeElement(button);
--- 147,151 ----
       *@param  button  Description of Parameter
       */
!     public void removeTab(JButton button) {
          button.removeActionListener(this);
          buttons.removeElement(button);
***************
*** 161,165 ****
          if (components.contains(component)) {
              int indexToRemove = components.indexOf(component);
!             AntiAliasedJButton currentButton = (AntiAliasedJButton) buttons.get(indexToRemove);
              buttons.remove(indexToRemove);
              names.remove(indexToRemove);
--- 162,166 ----
          if (components.contains(component)) {
              int indexToRemove = components.indexOf(component);
!             JButton currentButton = (JButton) buttons.get(indexToRemove);
              buttons.remove(indexToRemove);
              names.remove(indexToRemove);
***************
*** 208,212 ****
       */
      private void addTab(String name, Component comp) {
!         AntiAliasedJButton button = new TabButton(name);
          add(button, comp);
          buttons.addElement(button);
--- 209,213 ----
       */
      private void addTab(String name, Component comp) {
!         JButton button = new TabButton(name);
          add(button, comp);
          buttons.addElement(button);
***************
*** 223,227 ****
       */
      private void addTab(String name, ImageIcon icon, Component comp) {
!         AntiAliasedJButton button = new TabButton(name, icon);
          add(button, comp);
          buttons.addElement(button);
--- 224,228 ----
       */
      private void addTab(String name, ImageIcon icon, Component comp) {
!         JButton button = (JButton)new TabButton(name, icon);
          add(button, comp);
          buttons.addElement(button);

Index: JCloseableRadioButton.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/JCloseableRadioButton.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** JCloseableRadioButton.java	15 Apr 2003 21:10:36 -0000	1.1.1.1
--- JCloseableRadioButton.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 15,20 ****
  import javax.swing.JButton;
  
- import javax.swing.border.Border;
- 
  /**
   *@author     <a href="mailto:[email protected]">Nicola Ken Barozzi</a>
--- 15,18 ----
***************
*** 22,26 ****
   *@version    1.0
   */
! public class JCloseableRadioButton extends AntiAliasedJButton {
  
      private JButton innerJButton;
--- 20,24 ----
   *@version    1.0
   */
! public class JCloseableRadioButton extends JButton {
  
      private JButton innerJButton;

Index: TabButton.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/TabButton.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** TabButton.java	15 Apr 2003 21:10:38 -0000	1.1.1.1
--- TabButton.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 14,17 ****
--- 14,19 ----
  import javax.swing.Icon;
  import javax.swing.ImageIcon;
+ import javax.swing.JButton;
+ 
  import org.krysalis.swingx.concerns.*;
  
***************
*** 24,28 ****
   */
  
! public class TabButton extends AntiAliasedJButton {
      /**
       *  Constructor for the TabButton object
--- 26,30 ----
   */
  
! public class TabButton extends JButton {
      /**
       *  Constructor for the TabButton object

Index: JButtonList.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/JButtonList.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** JButtonList.java	15 Apr 2003 21:10:38 -0000	1.1.1.1
--- JButtonList.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 13,16 ****
--- 13,17 ----
  
  import javax.swing.Box;
+ import javax.swing.JButton;
  import javax.swing.JPanel;
  import javax.swing.JScrollPane;
***************
*** 49,53 ****
      public void addItem(Object item) {
          elements.add(item);
!         box.add(new AntiAliasedJButton(item.toString()), null);
      }
  
--- 50,54 ----
      public void addItem(Object item) {
          elements.add(item);
!         box.add(new JButton(item.toString()), null);
      }
  

Index: StoreEntitySelector.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/StoreEntitySelector.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** StoreEntitySelector.java	15 Apr 2003 21:10:38 -0000	1.1.1.1
--- StoreEntitySelector.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 18,21 ****
--- 18,22 ----
  
  import javax.swing.BorderFactory;
+ import javax.swing.JButton;
  import javax.swing.JCheckBox;
  import javax.swing.JDialog;
***************
*** 78,83 ****
      JLabel jLabel2 = new JLabel();
      JPanel jPanel4 = new JPanel();
!     AntiAliasedJButton jSelectButton = new AntiAliasedJButton();
!     AntiAliasedJButton jCancelButton = new AntiAliasedJButton();
      BorderLayout borderLayout3 = new BorderLayout();
      JPanel jPreviewPanel = new JPanel();
--- 79,84 ----
      JLabel jLabel2 = new JLabel();
      JPanel jPanel4 = new JPanel();
!     JButton jSelectButton = new JButton();
!     JButton jCancelButton = new JButton();
      BorderLayout borderLayout3 = new BorderLayout();
      JPanel jPreviewPanel = new JPanel();

Index: WindowUtils.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/WindowUtils.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** WindowUtils.java	15 Apr 2003 21:10:36 -0000	1.1.1.1
--- WindowUtils.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 172,176 ****
              Skin skin = SkinLookAndFeel.loadThemePack(skinlfThemepackUrl);
              SkinLookAndFeel laf = new SkinLookAndFeel();
!             laf.setSkin(skin);
              UIManager.setLookAndFeel(laf);
  
--- 172,176 ----
              Skin skin = SkinLookAndFeel.loadThemePack(skinlfThemepackUrl);
              SkinLookAndFeel laf = new SkinLookAndFeel();
!             SkinLookAndFeel.setSkin(skin);
              UIManager.setLookAndFeel(laf);
  

Index: JSwitcherToolBar.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-jplugin/src/java/org/krysalis/swingx/swing/JSwitcherToolBar.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** JSwitcherToolBar.java	15 Apr 2003 21:10:37 -0000	1.1.1.1
--- JSwitcherToolBar.java	29 Sep 2003 13:20:18 -0000	1.2
***************
*** 14,17 ****
--- 14,18 ----
  import javax.swing.ImageIcon;
  import javax.swing.JComponent;
+ import javax.swing.JToolBar;
  
  import javax.swing.border.Border;
***************
*** 32,36 ****
   *@version    1.0
   */
! public class JSwitcherToolBar extends AntiAliasedJToolBar implements Component, Composable,
          Initializable {
      ButtonGroup buttonGroup = new ButtonGroup();
--- 33,37 ----
   *@version    1.0
   */
! public class JSwitcherToolBar extends JToolBar implements Component, Composable,
          Initializable {
      ButtonGroup buttonGroup = new ButtonGroup();

--- AntiAliasedJTree.java DELETED ---

--- AntiAliasedJTextArea.java DELETED ---

--- AntiAliasedJButton.java DELETED ---

--- AntiAliasedJPanel.java DELETED ---

--- AntiAliasedJToolBar.java DELETED ---

--- AntiAliasedJRadioButton.java DELETED ---




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.