Autopsy  4.10.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
OtherOccurrencesFilesTableCellRenderer.java
Go to the documentation of this file.
1 /*
2  * Central Repository
3  *
4  * Copyright 2015-2019 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.centralrepository.contentviewer;
20 
21 import java.awt.Color;
22 import java.awt.Component;
23 import javax.swing.JComponent;
24 import javax.swing.JTable;
25 import javax.swing.table.DefaultTableCellRenderer;
26 import javax.swing.table.TableCellRenderer;
27 import org.sleuthkit.datamodel.TskData;
28 
32 public class OtherOccurrencesFilesTableCellRenderer implements TableCellRenderer {
33 
34  public static final DefaultTableCellRenderer DEFAULT_RENDERER = new DefaultTableCellRenderer();
35 
36  @Override
38  JTable table,
39  Object value,
40  boolean isSelected,
41  boolean hasFocus,
42  int row,
43  int column) {
44  Component renderer = DEFAULT_RENDERER.getTableCellRendererComponent(
45  table, value, isSelected, hasFocus, row, column);
46  ((JComponent) renderer).setOpaque(true);
47  Color foreground, background;
48  if (isSelected) {
49  foreground = Color.WHITE;
50  background = new Color(51,153,255);
51  } else {
52  String known_status = (String) table.getModel().getValueAt(table.convertRowIndexToModel(row),
53  table.getColumn(OtherOccurrencesFilesTableModel.TableColumns.KNOWN.columnName()).getModelIndex());
54  if (known_status.equals(TskData.FileKnown.BAD.getName())) {
55  foreground = Color.WHITE;
56  background = Color.RED;
57  } else if (known_status.equals(TskData.FileKnown.UNKNOWN.getName())) {
58  foreground = Color.BLACK;
59  background = Color.WHITE;
60  } else {
61  foreground = Color.BLACK;
62  background = Color.WHITE;
63  }
64  }
65  renderer.setForeground(foreground);
66  renderer.setBackground(background);
67  return renderer;
68  }
69 }
Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)

Copyright © 2012-2018 Basis Technology. Generated on: Fri Mar 22 2019
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.