Autopsy  4.5.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
DataContentViewerOtherCasesTableCellRenderer.java
Go to the documentation of this file.
1 /*
2  * Central Repository
3  *
4  * Copyright 2015-2017 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.JLabel;
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 DataContentViewerOtherCasesTableCellRenderer 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  ((JLabel) renderer).setOpaque(true);
47  Color foreground, background;
48  if (isSelected) {
49  foreground = Color.WHITE;
50  background = Color.BLUE;
51  } else {
52  String known_status = (String) table.getModel().getValueAt(row,
53  table.getColumn(DataContentViewerOtherCasesTableModel.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.YELLOW;
60  background = Color.WHITE;
61  } else {
62  foreground = Color.BLACK;
63  background = Color.WHITE;
64  }
65  }
66  renderer.setForeground(foreground);
67  renderer.setBackground(background);
68  return renderer;
69  }
70 }
Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)

Copyright © 2012-2016 Basis Technology. Generated on: Tue Feb 20 2018
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.