1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
package cppcheckplus.outlookpanel;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Insets;
import java.awt.TexturePaint;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.BorderFactory;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.border.Border;
import cppcheckplus.control.MyContorlUtil;
public class MyOutlookBar extends JPanel
{
private Image backgroundSelectedLeft;
private Image backgroundSelectedRight;
private Image backgroundImage;
private ImageIcon handlerIcon;
private ImageIcon handlerSelectedIcon;
private TexturePaint paint;
private TexturePaint selectedPaint;
private JLabel lbHandler;
private Border handlerBorder;
private Border handlerShrinkedBorder;
private JLabel lbIcon;
private JLabel lbTitle;
private boolean selected;
private Color titleColor;
private Color selectedTitleColor;
private MouseListener mouseListener;
private Icon icon = null;
private Icon selectedIcon = null;
private MyOutlookPanel outlookPanel;
private MyOutlookListPanel outlookListPanel;
public MyOutlookBar(MyOutlookPanel panel)
{
super();
backgroundSelectedLeft = MyContorlUtil.getImage("control/images/outlook_bar_background_selected_left.png");
backgroundSelectedRight = MyContorlUtil.getImage("control/images/outlook_bar_background_selected_right.png");
backgroundImage = MyContorlUtil.getImage("control/images/outlook_bar_background.png");
handlerIcon = MyContorlUtil.getImageIcon("control/images/outlook_bar_handler.png");
handlerSelectedIcon = MyContorlUtil.getImageIcon("control/images/outlook_bar_handler_selected.png");
paint = MyContorlUtil.createTexturePaint("control/images/outlook_bar_background.png");
selectedPaint = MyContorlUtil.createTexturePaint("control/images/outlook_bar_background_selected.png");
lbHandler = new JLabel();
handlerBorder = BorderFactory.createEmptyBorder(0, 0, 0, 16);
handlerShrinkedBorder = BorderFactory.createEmptyBorder(0, 0, 0, 22);
lbIcon = new JLabel();
lbTitle = new JLabel();
selected = false;
titleColor = MyContorlUtil.OUTLOOK_TEXT_COLOR;
selectedTitleColor = Color.white;
mouseListener = new MouseAdapter()
{
public void mouseReleased(MouseEvent e)
{
if (((JComponent) e.getSource()).contains(e.getPoint()))
changeStatus();
}
};
this.outlookPanel = panel;
init();
}
public void setOutlookListPanel(MyOutlookListPanel listPanel)
{
this.outlookListPanel=listPanel;
}
private void init()
{
setLayout(new BorderLayout());
lbHandler.setVerticalAlignment(0);
lbHandler.setIcon(handlerIcon);
lbHandler.setBorder(handlerBorder);
add(lbHandler, "East");
lbIcon.setVerticalAlignment(0);
lbIcon.setBorder(BorderFactory.createEmptyBorder(0, 16, 0, 0));
add(lbIcon, "West");
lbTitle.setVerticalAlignment(0);
lbTitle.setBorder(BorderFactory.createEmptyBorder(0, 8, 0, 0));
lbTitle.setFont(MyContorlUtil.FONT_14_BOLD);
lbTitle.setForeground(titleColor);
add(lbTitle, "Center");
lbHandler.addMouseListener(mouseListener);
lbTitle.addMouseListener(mouseListener);
lbIcon.addMouseListener(mouseListener);
}
protected void paintComponent(Graphics g)
{
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g;
if (isSelected())
{
g2d.setPaint(selectedPaint);
if (getSelectedIcon() != null)
lbIcon.setIcon(getSelectedIcon());
else
lbIcon.setIcon(getIcon());
}
else
{
g2d.setPaint(paint);
lbIcon.setIcon(getIcon());
}
g2d.fillRect(0, 0, getWidth(), getHeight());
if (isSelected())
{
g2d.drawImage(backgroundSelectedLeft, 0, 0, null);
g2d.drawImage(backgroundSelectedRight, getWidth()
- backgroundSelectedRight.getWidth(null), 0, null);
}
}
public Dimension getPreferredSize()
{
return new Dimension(super.getPreferredSize().width, backgroundImage
.getHeight(null));
}
public void setSelected(boolean selected)
{
if (selected != this.selected)
{
if (!isSelected())
outlookPanel.closeAllBars();
this.selected = selected;
if (selected)
{
lbHandler.setIcon(handlerSelectedIcon);
lbTitle.setForeground(selectedTitleColor);
}
else
{
lbHandler.setIcon(handlerIcon);
lbTitle.setForeground(titleColor);
}
outlookPanel.updateLayoutConstraint(getContentComponent(), selected);
outlookPanel.setAdditionalPaneVisible(!selected);
outlookPanel.revalidate();
}
}
public void changeStatus()
{
setSelected(!isSelected());
}
public boolean isSelected()
{
return selected;
}
public Icon getIcon()
{
return icon;
}
public void setIcon(Icon icon)
{
this.icon = icon;
updateIcon();
}
public Icon getSelectedIcon()
{
return selectedIcon;
}
public void setSelectedIcon(Icon selectedIcon)
{
this.selectedIcon = selectedIcon;
updateIcon();
}
private void updateIcon()
{
if (selected)
lbIcon.setIcon(selectedIcon);
else
lbIcon.setIcon(icon);
}
public void setTitle(String title)
{
lbTitle.setText(title);
lbTitle.setToolTipText(title);
lbHandler.setToolTipText(title);
lbIcon.setToolTipText(title);
}
public String getTitle()
{
return lbTitle.getText();
}
public MyOutlookListPanel getContentComponent()
{
return outlookListPanel;
}
public MyOutlookList getList()
{
return this.outlookListPanel.getOutlookList();
}
public MyOutlookPanel getOutlookPanel()
{
return this.outlookPanel;
}
public void headerShrinkChanged(boolean headShrinked)
{
if (headShrinked)
lbHandler.setBorder(handlerShrinkedBorder);
else
lbHandler.setBorder(handlerBorder);
}
}
|