現在、レゴ マインドストーム NXT と対話するためのシンプルな GUI インターフェイスを実装しています。現在の問題は、インターフェイスのペイントの問題にあります。MainUI が読み込まれると、GridPanel を設定する GirdPanel() というメソッドが呼び出されます。JFrame を拡張する MainUI は、このパネルを JFrame の呼び出しに追加します。この問題に関係する MainUI の完全なコードを次に示します。
public MainUI(){
setSize(700, 600);
PathPanel pathPanel = new PathPanel(controller);
add(pathPanel, BorderLayout.WEST);
CurrentPath.getInstance().addPathDataListener(pathPanel);
CurrentPath.getInstance().addPointSelectionListener(pathPanel);
gridPanel();
add(gridPanel, BorderLayout.CENTER);
robotControlBar();
add(robotControls, BorderLayout.NORTH);
setJMenuBar(menuPanel());
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
}
public void gridPanel(){
gridPanel = new JPanel(new BorderLayout());
WGraph graph = new WGraph();
gridPanel.add(graph, BorderLayout.CENTER);
}
WGraph は、JPanel を拡張し、このプログラムのグラフ表示を制御する私のクラスです。
public class WGraph extends JPanel{
public WGraph(){
//WGraph Panel property setup
setLayout(new BorderLayout());
//Variable creation
points = new ArrayList<Dot>();
//Label to display coordinates of selected point
pointDisplay = new JLabel("Selected point at: None Chosen");
//testPoints(); //Comment Out when test dots not needed.
//Create Graph Panel
panel = new JPanel();
panel.setBackground(PANEL_COLOR);
//Mouse Listeners for Panel
MouseEventHandler mouseListener = new MouseEventHandler();
panel.addMouseListener(mouseListener);
panel.addMouseMotionListener(mouseListener);
//Adding components to the WGraph panel
add(pointDisplay, BorderLayout.NORTH);
add(panel, BorderLayout.CENTER);
repaint();
}
public void paintComponent(Graphics g){
// invokes default painting for JFrame; must have this!
super.paintComponent(g);
// paint on the canvas rather than the JFrame
Graphics pg = panel.getGraphics();
System.out.println("*"); //Print out to see when repaint has been called. for testing only
int width = panel.getWidth();
int height = panel.getHeight();
pg.setColor(GRID_COLOR);
for (int i = 50; i < width; i+=50) {
pg.drawLine(i, 0, i, height);
}
for (int i = 50; i < width; i+=50) {
pg.drawLine(0, i, width, i);
}
Dot previousPoint = null;
for (int i = 0; i < points.size(); i++) {
Dot currentPoint = points.get(i);
currentPoint.draw(pg);
if (previousPoint != null) {
pg.setColor(Dot.DESELECTED_COLOR);
pg.drawLine(new Float(previousPoint.getCenter().x).intValue(),
new Float(previousPoint.getCenter().y).intValue(),
new Float(currentPoint.getCenter().x).intValue(),
new Float(currentPoint.getCenter().y).intValue());
}
previousPoint = currentPoint;
}
}
結局のところ、私は自分の問題を説明できます。問題は、グラフ パネルが期待どおりに表示されないことです。その理由を特定しようとしています。現在、プログラムをロードすると、このように表示されます。LINK1単純にグラフがまったく表示されませんが、JComboBoxをドロップダウンすると表示されます。LINK2 また、JComboBox でアイテムが選択されて閉じられたときにも鳴ります。LINK3 しかし、操作しようとするとまた消えてしまいます。コメントのLINK4
JFrame または JPanel の構築で目に見えるエラーが表示される人はいますか? 何が起こっているのかを理解するのに役立つ提案はありますか?
補足: Paint 関数は、フレームが最初に読み込まれるときに 3 回呼び出されます。JComboBox が開いたらもう一度。JComboBox が閉じるときにもう一度。そして最後に、グラフをクリックしてグラフを操作しようとしたときの回数が増えました。