diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-07-31 16:37:50 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-07-31 16:37:50 +0000 |
commit | d768477ac4d17279430cd5d53b870981fdb7e267 (patch) | |
tree | 559943a7d0f8e233ed974af037ae8977521e0e31 /client/trunk/src/com/fourisland/instadisc/IDSubscriptionListCellRenderer.java | |
parent | d2b2be4e1aaddc13d435edce83e6c3aab76aa118 (diff) | |
download | instadisc-d768477ac4d17279430cd5d53b870981fdb7e267.tar.gz instadisc-d768477ac4d17279430cd5d53b870981fdb7e267.tar.bz2 instadisc-d768477ac4d17279430cd5d53b870981fdb7e267.zip |
Client: Created Manage Subscriptions form
Diffstat (limited to 'client/trunk/src/com/fourisland/instadisc/IDSubscriptionListCellRenderer.java')
-rw-r--r-- | client/trunk/src/com/fourisland/instadisc/IDSubscriptionListCellRenderer.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/client/trunk/src/com/fourisland/instadisc/IDSubscriptionListCellRenderer.java b/client/trunk/src/com/fourisland/instadisc/IDSubscriptionListCellRenderer.java new file mode 100644 index 0000000..546f3ac --- /dev/null +++ b/client/trunk/src/com/fourisland/instadisc/IDSubscriptionListCellRenderer.java | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | * To change this template, choose Tools | Templates | ||
3 | * and open the template in the editor. | ||
4 | */ | ||
5 | package com.fourisland.instadisc; | ||
6 | |||
7 | import com.fourisland.instadisc.Database.Subscription; | ||
8 | import java.awt.Component; | ||
9 | import javax.swing.JLabel; | ||
10 | import javax.swing.JList; | ||
11 | import javax.swing.ListCellRenderer; | ||
12 | |||
13 | /** | ||
14 | * | ||
15 | * @author hatkirby | ||
16 | */ | ||
17 | class IDSubscriptionListCellRenderer extends JLabel implements ListCellRenderer { | ||
18 | |||
19 | public Component getListCellRendererComponent(JList arg0, Object arg1, int arg2, boolean arg3, boolean arg4) { | ||
20 | this.setText(((Subscription) arg1).getTitle()); | ||
21 | |||
22 | if (arg3) { | ||
23 | this.setForeground(arg0.getSelectionForeground()); | ||
24 | this.setBackground(arg0.getSelectionBackground()); | ||
25 | } else { | ||
26 | this.setForeground(arg0.getForeground()); | ||
27 | this.setBackground(arg0.getBackground()); | ||
28 | } | ||
29 | |||
30 | this.setOpaque(true); | ||
31 | this.setFont(arg0.getFont()); | ||
32 | this.setEnabled(arg0.isEnabled()); | ||
33 | |||
34 | return this; | ||
35 | } | ||
36 | } | ||