Package org.apache.idaeplugin.frames

Source Code of org.apache.idaeplugin.frames.MainFrameLayout

package org.apache.idaeplugin.frames;

import org.apache.idaeplugin.bean.ArchiveBean;
import org.apache.idaeplugin.bean.ObjectKeeper;

import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowEvent;
import java.awt.event.WindowAdapter;
/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*/

/**
* Author: Deepal Jayasinghe
* Date: Sep 18, 2005
* Time: 11:45:58 AM
*/
public class MainFrame extends JFrame {

    protected ImagePanel topPanel;
    protected BottomPanel bottomPanel ;
    public boolean singleService;
    public boolean generateServiceXML;
    //  protected JPanel firstpanel ;
//    protected SelectPanel slectpanel;
    protected JPanel currentpanle;
    public String fileSeparator = System.getProperty("file.separator");
    public final JFileChooser fc = new JFileChooser();
    Insets insets;
    ArchiveBean bean;

    public MainFrame() {
//        setSize(610,400);
        setBounds(200,200,600,420);
//        getContentPane().setSize(600,400);
        getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
        getContentPane().setLayout(null);
        getContentPane().setBounds(200,200,600,420);
        bean = new ArchiveBean();

        topPanel = new ImagePanel();
        getContentPane().add(topPanel);
        topPanel.setCaptions("Service Type selection","Welcome to Axis2 service archive generation" +
                "select service type");

        currentpanle = new FirstFrame(this);
        getContentPane().add(currentpanle);


        bottomPanel = new BottomPanel(currentpanle,this,bean);
        getContentPane().add(bottomPanel);
        bottomPanel.setEnable(false,true,false,true);

        insets = getInsets();
        topPanel.setBounds(insets.left,insets.top,608,80);
        currentpanle.setBounds(insets.left,insets.top+80,608,260);
        bottomPanel.setBounds(insets.left,insets.top+328,608,60);


//        slectpanel = new SelectPanel(this);
//        getContentPane().add(slectpanel);
//        slectpanel.setPrivious(firstpanel);
//        slectpanel.setVisible(false);
//        ((ObjectKeeper)firstpanel).setNext(slectpanel);

        setSize(getPreferredSize());
        setResizable(false);
    }

    public void setEnable(boolean back, boolean next, boolean finish, boolean cancel) {
        if(currentpanle instanceof FirstFrame){
            bottomPanel.setEnable(false,next,finish,cancel);
        } else{
            bottomPanel.setEnable(true,next,finish,cancel);
        }

    }

    public void Next(JPanel current) {
        currentpanle.setVisible(false);
        try {
            remove(currentpanle);
        } catch (Exception e) {
            System.out.println("");
        }
        getContentPane().add(current);
        current.setBounds(insets.left,insets.top+80,608,260);
        currentpanle = current;
        setEnable(true,false,false,true);
        reShow();
    }

    public void Back(JPanel current) {
        currentpanle.setVisible(false);
        try {
            remove(currentpanle);
        } catch (Exception e) {
            System.out.println("");
        }
        getContentPane().add(current);
        current.setBounds(insets.left,insets.top+80,608,260);
        currentpanle = current;
        currentpanle.setVisible(true);
        setEnable(true,true,false,true);
        reShow();
    }
    public void reShow(){
        ObjectKeeper keeper = (ObjectKeeper)currentpanle;
        topPanel.setCaptions(keeper.getTopLable(),keeper.getLable());
//        this.repaint();
        this.show();
    }

//    public void setButStatus(boolean ){
//
//    }
}

class MainFrameLayout implements LayoutManager {

    public MainFrameLayout() {
    }

    public void addLayoutComponent(String name, Component comp) {
    }

    public void removeLayoutComponent(Component comp) {
    }

    public Dimension preferredLayoutSize(Container parent) {
        Dimension dim = new Dimension(0, 0);

        Insets insets = parent.getInsets();
        dim.width = 608 + insets.left + insets.right;
        dim.height = 400 + insets.top + insets.bottom;

        return dim;
    }

    public Dimension minimumLayoutSize(Container parent) {
        return new Dimension(0, 0);
    }

    public void layoutContainer(Container parent) {
        Insets insets = parent.getInsets();

        Component c;
        c = parent.getComponent(0);
        if (c.isVisible()) {c.setBounds(insets.left,insets.top,608,80);}
        c = parent.getComponent(1);
        if (c.isVisible()) {c.setBounds(insets.left,insets.top+80,608,260);}
        c = parent.getComponent(2);
        if (c.isVisible()) {c.setBounds(insets.left,insets.top+328,608,60);}
//        c = parent.getComponent(3);
//        if (c.isVisible()) {c.setBounds(insets.left+0,insets.top+80,608,260);}
    }
}
TOP

Related Classes of org.apache.idaeplugin.frames.MainFrameLayout

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.