mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/GP-4275_naming_components_for_accessibility--SQUASHED'
This commit is contained in:
commit
c8c4c43794
62 changed files with 565 additions and 202 deletions
|
@ -88,7 +88,8 @@ public class ByteViewerComponent extends FieldPanel implements FieldMouseListene
|
|||
this.fm = fm;
|
||||
this.layoutModel = layoutModel;
|
||||
|
||||
setName(model.getName());
|
||||
setName("Byte Viewer");
|
||||
getAccessibleContext().setAccessibleName("ByteViewer");
|
||||
initialize();
|
||||
|
||||
// specialized line coloring
|
||||
|
|
|
@ -37,8 +37,7 @@ public class InteractivePanelManager {
|
|||
|
||||
public InteractivePanelManager() {
|
||||
JTable table = new JTable();
|
||||
header = new JTableHeader();
|
||||
table.setTableHeader(header);
|
||||
header = table.getTableHeader();
|
||||
columnModel = header.getColumnModel();
|
||||
separatorWidth = (new JSeparator(SwingConstants.VERTICAL)).getPreferredSize().width;
|
||||
mainPanel = new JPanel(new HeaderLayoutManager());
|
||||
|
@ -296,6 +295,7 @@ public class InteractivePanelManager {
|
|||
}
|
||||
|
||||
record ComponentData(String name, JComponent component) {
|
||||
@Override
|
||||
public String toString() {
|
||||
return name;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue