Hello and good morning,
I am requesting help with styling a JTable appropriately. I am very new to Java GUIs and thus am having a hell of a time trying to get this to work appropriately.
My objectives are to try and recreate the Jeopardy scoreboard as closely as possible.
Right now, I am trying to accomplish 3 things:
- Trying to center all data (including headers) in the table
- Trying to change the header font color and background
- Trying to extend the table to fit the full frame of the JPanel it is in
My code is listed below. Any help, feedback, or guidance would be appreciated.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package QuestionBoard;
import java.awt.*;
import javax.swing.table.*;
import javax.swing.*;
/**
*
* @author Kelly
*/
public class WiP_QuestionBoard extends javax.swing.JFrame {
/**
* Creates new form frameQuestionBoard
*/
public WiP_QuestionBoard() {
initComponents();
//Trying to center components
DefaultTableCellRenderer centerRenderer = new DefaultTableCellRenderer();
centerRenderer.setHorizontalAlignment( SwingConstants.CENTER );
tblQuestions.setDefaultRenderer(Integer.class, centerRenderer);
//Trying to change header settings
JTableHeader Theader = tblQuestions.getTableHeader();
Theader.setBackground(Color.BLUE);
// Theader.setFontColor???(Color.YELLOW);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
panelQuestions = new javax.swing.JPanel();
jScrollPane1 = new javax.swing.JScrollPane();
tblQuestions = new javax.swing.JTable();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
tblQuestions.setBackground(new java.awt.Color(51, 102, 255));
tblQuestions.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 0, 0), 2));
tblQuestions.setFont(new java.awt.Font("Tahoma", 1, 13)); // NOI18N
tblQuestions.setForeground(new java.awt.Color(204, 153, 0));
tblQuestions.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
{"200", "200", "200", "200", "200", "200"},
{"400", "400", "400", "400", "400", "400"},
{"600", "600", "600", "600", "600", "600"},
{"800", "800", "800", "800", "800", "800"},
{"1000", "1000", "1000", "1000", "1000", "1000"}
},
new String [] {
"Category 1", "Category 2", "Category 3", "Category 4", "Category 5", "Category 6"
}
));
tblQuestions.setDoubleBuffered(true);
tblQuestions.setGridColor(new java.awt.Color(0, 0, 0));
tblQuestions.setRowMargin(2);
tblQuestions.setSelectionBackground(new java.awt.Color(0, 51, 255));
tblQuestions.setSelectionForeground(new java.awt.Color(204, 204, 0));
tblQuestions.getTableHeader().setReorderingAllowed(false);
jScrollPane1.setViewportView(tblQuestions);
javax.swing.GroupLayout panelQuestionsLayout = new javax.swing.GroupLayout(panelQuestions);
panelQuestions.setLayout(panelQuestionsLayout);
panelQuestionsLayout.setHorizontalGroup(
panelQuestionsLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 675, Short.MAX_VALUE)
);
panelQuestionsLayout.setVerticalGroup(
panelQuestionsLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(panelQuestionsLayout.createSequentialGroup()
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 118, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 313, Short.MAX_VALUE))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(panelQuestions, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(panelQuestions, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
pack();
}// </editor-fold>
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(WiP_QuestionBoard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(WiP_QuestionBoard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(WiP_QuestionBoard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(WiP_QuestionBoard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new WiP_QuestionBoard().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JPanel panelQuestions;
private javax.swing.JTable tblQuestions;
// End of variables declaration
}