java의 스윙 cardlayout에 대해서 문의 입니다
public class DrawingTool extends JFrame{
MainView mainview;
Persona persona;
SketchBook sketchbook;
Result result;
ButtonHandler handler;
JPanel cards;
public DrawingTool(){
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
mainview = new MainView();
persona = new Persona();
sketchbook = new SketchBook();
result = new Result();
cards = new JPanel(new CardLayout());
handler = new ButtonHandler(cards);
mainview.addMouseListener(handler);
persona.button1.addMouseListener(handler);
sketchbook.cp.next.addMouseListener(handler);
cards.add(mainview,"1");
cards.add(persona,"2");
cards.add(sketchbook,"3");
// cards.add(result,"4");
add(cards);
setSize((int)dim.getWidth(),(int)dim.getHeight());
setDefaultCloseOperation(EXIT_ON_CLOSE);
// setAlwaysOnTop(true);
// setUndecorated(true);
setVisible(true);
}
class ButtonHandler extends MouseAdapter{
public final String scCard_NM[] = {"1","2","3","4"};
public final int iCARD_LEN = scCard_NM.length;
public JPanel mcards = null;
public int iCardldx=1;
public ButtonHandler(JPanel cardln){
mcards=cardln;
iCardldx=1;
}
public void mousePressed(MouseEvent e){
if(e.getModifiers()==e.BUTTON1_MASK){
if(mcards.getComponent(iCardldx-1).getName()=="three"){
//마지막 카드를 완료시
if(sketchbook.cp.m_count == 8){
((CardLayout)mcards.getLayout()).show(mcards, scCard_NM[iCardldx]);
if(++iCardldx >= iCARD_LEN){iCardldx=0;}
}
}
else{
((CardLayout)mcards.getLayout()).show(mcards, scCard_NM[iCardldx]);
if(++iCardldx >= iCARD_LEN){iCardldx=0;}
}
}
}
}
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
new DrawingTool();
}
}
JFrame에서 4개의 JPanel를 상속받은 객체를 생성 합니다.
위에처럼 생성하여 첫번째 jpanel에서 버튼을 클릭하면 다음 jpanel로 화면이 넘어가고 이렇게 4개의 패널이있습닏.
그런데 마지막패널 result객체에서 첫번재와 두번째 세번째때 안에서 처리한 결과값이 result에서 값이 나와야합니다.
하지만 프로그램 시작과 동시에 첫번째부터 네번째 까지 다 처리해 버려서 정작 result객체에 가서는 결과 값이 0을 나와버립니다.. 프로그램시작햇을때 최초의 값이 나오는 겁니다.
값을 살려서 마지막 result 객체에 넣는 방법이 없을까요?
댓글 달기