Statistics
| Revision:

gvsig-desktop-customize / trunk / org.gvsig.customize.app / org.gvsig.customize.app.mainplugin / src / main / java / org / gvsig / customize / InstallPackagesPanelLayout.java @ 1

History | View | Annotate | Download (4.67 KB)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.customize;
7

    
8
/**
9
 *
10
 * @author jjdelcerro
11
 */
12
public class InstallPackagesPanelLayout extends javax.swing.JPanel {
13

    
14
    /**
15
     * Creates new form InstallPackagesPanelLayout
16
     */
17
    public InstallPackagesPanelLayout() {
18
        initComponents();
19
    }
20

    
21
    /**
22
     * This method is called from within the constructor to initialize the form.
23
     * WARNING: Do NOT modify this code. The content of this method is always
24
     * regenerated by the Form Editor.
25
     */
26
    @SuppressWarnings("unchecked")
27
    // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
28
    private void initComponents() {
29
        java.awt.GridBagConstraints gridBagConstraints;
30

    
31
        lblTitle = new javax.swing.JLabel();
32
        filler1 = new javax.swing.Box.Filler(new java.awt.Dimension(4, 4), new java.awt.Dimension(4, 4), new java.awt.Dimension(4, 4));
33
        filler2 = new javax.swing.Box.Filler(new java.awt.Dimension(4, 4), new java.awt.Dimension(4, 4), new java.awt.Dimension(4, 4));
34
        pnlProgress = new javax.swing.JPanel();
35
        butClose = new javax.swing.JButton();
36
        filler3 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 32767));
37
        lblMessage = new javax.swing.JLabel();
38

    
39
        java.awt.GridBagLayout layout = new java.awt.GridBagLayout();
40
        layout.columnWidths = new int[] {0, 5, 0, 5, 0};
41
        layout.rowHeights = new int[] {0, 5, 0, 5, 0, 5, 0, 5, 0, 5, 0};
42
        setLayout(layout);
43

    
44
        lblTitle.setText("Configuring installation");
45
        gridBagConstraints = new java.awt.GridBagConstraints();
46
        gridBagConstraints.gridx = 2;
47
        gridBagConstraints.gridy = 2;
48
        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
49
        gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START;
50
        gridBagConstraints.weightx = 0.3;
51
        add(lblTitle, gridBagConstraints);
52
        gridBagConstraints = new java.awt.GridBagConstraints();
53
        gridBagConstraints.gridx = 4;
54
        gridBagConstraints.gridy = 0;
55
        add(filler1, gridBagConstraints);
56
        gridBagConstraints = new java.awt.GridBagConstraints();
57
        gridBagConstraints.gridx = 0;
58
        gridBagConstraints.gridy = 0;
59
        add(filler2, gridBagConstraints);
60

    
61
        pnlProgress.setPreferredSize(new java.awt.Dimension(20, 80));
62

    
63
        javax.swing.GroupLayout pnlProgressLayout = new javax.swing.GroupLayout(pnlProgress);
64
        pnlProgress.setLayout(pnlProgressLayout);
65
        pnlProgressLayout.setHorizontalGroup(
66
            pnlProgressLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
67
            .addGap(0, 382, Short.MAX_VALUE)
68
        );
69
        pnlProgressLayout.setVerticalGroup(
70
            pnlProgressLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
71
            .addGap(0, 80, Short.MAX_VALUE)
72
        );
73

    
74
        gridBagConstraints = new java.awt.GridBagConstraints();
75
        gridBagConstraints.gridx = 2;
76
        gridBagConstraints.gridy = 4;
77
        gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
78
        add(pnlProgress, gridBagConstraints);
79

    
80
        butClose.setText("Close");
81
        gridBagConstraints = new java.awt.GridBagConstraints();
82
        gridBagConstraints.gridx = 2;
83
        gridBagConstraints.gridy = 8;
84
        gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_END;
85
        add(butClose, gridBagConstraints);
86
        gridBagConstraints = new java.awt.GridBagConstraints();
87
        gridBagConstraints.gridx = 4;
88
        gridBagConstraints.gridy = 10;
89
        gridBagConstraints.fill = java.awt.GridBagConstraints.VERTICAL;
90
        gridBagConstraints.weighty = 0.1;
91
        add(filler3, gridBagConstraints);
92
        gridBagConstraints = new java.awt.GridBagConstraints();
93
        gridBagConstraints.gridx = 2;
94
        gridBagConstraints.gridy = 6;
95
        gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
96
        gridBagConstraints.anchor = java.awt.GridBagConstraints.LINE_START;
97
        add(lblMessage, gridBagConstraints);
98
    }// </editor-fold>//GEN-END:initComponents
99

    
100

    
101
    // Variables declaration - do not modify//GEN-BEGIN:variables
102
    protected javax.swing.JButton butClose;
103
    protected javax.swing.Box.Filler filler1;
104
    protected javax.swing.Box.Filler filler2;
105
    protected javax.swing.Box.Filler filler3;
106
    protected javax.swing.JLabel lblMessage;
107
    protected javax.swing.JLabel lblTitle;
108
    protected javax.swing.JPanel pnlProgress;
109
    // End of variables declaration//GEN-END:variables
110
}