Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.netbeans.modules.notifications.center.NotificationTable Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.notifications.center;
import java.awt.Component;
import java.awt.Font;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import javax.swing.JPopupMenu;
import javax.swing.JTable;
import javax.swing.KeyStroke;
import javax.swing.ListSelectionModel;
import javax.swing.SwingUtilities;
import javax.swing.table.DefaultTableCellRenderer;
import org.netbeans.modules.notifications.NotificationImpl;
import org.netbeans.modules.notifications.Utils;
import org.netbeans.swing.etable.ETable;
import org.netbeans.swing.etable.ETableColumn;
import org.netbeans.swing.etable.ETableColumnModel;
import org.openide.awt.NotificationDisplayer;
import org.openide.util.NbBundle;
import org.openide.util.Utilities;
/**
*
* @author jpeska
*/
public class NotificationTable extends ETable {
private final List keyListeners = new ArrayList();
NotificationTable() {
super(new NotificationTableModel());
init();
}
private void init() {
setRowSelectionAllowed(true);
setColumnSelectionAllowed(false);
getTableHeader().setResizingAllowed(true);
setAutoResizeMode(JTable.AUTO_RESIZE_NEXT_COLUMN);
setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
setFillsViewportHeight(true);
ETableColumnModel colModel = (ETableColumnModel) getColumnModel();
ETableColumn ecol;
ecol = (ETableColumn) colModel.getColumn(NotificationTableModel.PRIORITY_COLUMN);
ecol.setHeaderValue(NbBundle.getMessage(NotificationTable.class, "LBL_NotificationPriority"));
ecol.setCellRenderer(new NotificationPriorityRenderer());
ecol = (ETableColumn) colModel.getColumn(NotificationTableModel.TIMESTAMP_COLUMN);
ecol.setHeaderValue(NbBundle.getMessage(NotificationTable.class, "LBL_NotificationTimestamp"));
ecol.setCellRenderer(new NotificationDateRenderer());
colModel.setColumnSorted(ecol, false, 1);
ecol = (ETableColumn) colModel.getColumn(NotificationTableModel.CATEGORY_COLUMN);
ecol.setHeaderValue(NbBundle.getMessage(NotificationTable.class, "LBL_NotificationCategory"));
ecol.setCellRenderer(new NotificationCategoryRenderer());
ecol = (ETableColumn) colModel.getColumn(NotificationTableModel.MESSAGE_COLUMN);
ecol.setHeaderValue(NbBundle.getMessage(NotificationTable.class, "LBL_NotificationMessage"));
ecol.setCellRenderer(new NotificationRenderer());
addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
if (SwingUtilities.isRightMouseButton(e)) {
NotificationTable table = NotificationTable.this;
int r = table.rowAtPoint(e.getPoint());
if (r >= 0 && r < table.getRowCount()) {
table.setRowSelectionInterval(r, r);
} else {
table.clearSelection();
}
int modelIndex = table.convertRowIndexToModel(table.getSelectedRow());
JPopupMenu popup;
if (modelIndex < 0) {
popup = Utilities.actionsToPopup(Utils.getGlobalNotificationActions(), (NotificationTable) e.getSource());
} else {
NotificationTableModel model = (NotificationTableModel) getModel();
final NotificationImpl notification = model.getEntry(modelIndex);
popup = Utilities.actionsToPopup(Utils.getNotificationActions(notification), (NotificationTable) e.getSource());
}
popup.show(e.getComponent(), e.getX(), e.getY());
}
}
});
getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_DELETE, 0), "delete"); // NOI18N
}
@Override
protected void processKeyEvent(KeyEvent e) {
fireProcessKeyEvent(e);
if (!e.isConsumed()) {
super.processKeyEvent(e);
}
}
void addProcessKeyEventListener(ProcessKeyEventListener listener) {
keyListeners.add(listener);
}
void removeProcessKeyEventListener(ProcessKeyEventListener listener) {
keyListeners.remove(listener);
}
private void fireProcessKeyEvent(KeyEvent e) {
for (ProcessKeyEventListener l : keyListeners) {
l.processKeyEvent(e);
}
}
void showNextSelection(boolean forward) {
int selectedRow = this.getSelectedRow();
int lastRowIndex = this.getRowCount() - 1;
ListSelectionModel selection = this.getSelectionModel();
int toSelect;
if (forward) {
toSelect = selectedRow + 1;
} else {
toSelect = selectedRow - 1;
}
if (toSelect < 0) {
toSelect = lastRowIndex;
} else if (toSelect > lastRowIndex) {
toSelect = 0;
}
selection.setSelectionInterval(toSelect, toSelect);
}
void showDefaultSelection() {
int selectedRow = this.getSelectedRow();
if (selectedRow == -1) {
this.getSelectionModel().setSelectionInterval(0, 0);
}
}
private class NotificationPriorityRenderer extends NotificationRenderer {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if (value != null) {
setIcon(((NotificationDisplayer.Priority) value).getIcon());
setText("");
setToolTipText(((NotificationDisplayer.Priority) value).name());
}
return this;
}
}
private class NotificationDateRenderer extends NotificationRenderer {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
setText(Utils.getFormatedDate((Calendar) value));
setToolTipText(Utils.getFullFormatedDate((Calendar) value));
return this;
}
}
private class NotificationCategoryRenderer extends NotificationRenderer {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
setToolTipText(getNotification(table, row).getCategory().getDescription());
return this;
}
}
private class NotificationRenderer extends DefaultTableCellRenderer {
@Override
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
NotificationImpl notification = getNotification(table, row);
if (!notification.isRead()) {
setFont(getFont().deriveFont(Font.BOLD));
}
return this;
}
NotificationImpl getNotification(JTable table, int row) {
NotificationTableModel model = (NotificationTableModel) table.getModel();
NotificationImpl notification = model.getEntry(table.convertRowIndexToModel(row));
return notification;
}
}
interface ProcessKeyEventListener {
public void processKeyEvent(KeyEvent e);
}
}