Modifs loulz
This commit is contained in:
parent
e5116b051f
commit
8f86f3798f
@ -3,6 +3,18 @@ import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
||||
public class Tableau {
|
||||
|
||||
private static void changeConstraints(GridBagConstraints g, int gx, int gy, int gw, int gh, int anchor, int fill, double wx, double wy, Insets i) {
|
||||
g.gridx = gx;
|
||||
g.gridy = gy;
|
||||
g.gridwidth = gw;
|
||||
g.gridheight = gh;
|
||||
g.anchor = anchor;
|
||||
g.fill = fill;
|
||||
g.weightx = wx;
|
||||
g.weighty = wy;
|
||||
g.insets = i;
|
||||
}
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
Class.forName("org.mariadb.jdbc.Driver");
|
||||
@ -43,15 +55,7 @@ public class Tableau {
|
||||
if (!moduleName.equals(lastMod) && lastMod != null) {
|
||||
JLabel modLabel = new JLabel(lastMod);
|
||||
modLabel.setBorder(BorderFactory.createLineBorder(Color.BLACK));
|
||||
g.gridx = 1;
|
||||
g.gridy = count - length;
|
||||
g.gridwidth = 1;
|
||||
g.gridheight = length;
|
||||
g.anchor = GridBagConstraints.CENTER;
|
||||
g.fill = GridBagConstraints.BOTH;
|
||||
g.weightx = 1f;
|
||||
g.weighty = 1f;
|
||||
g.insets = new Insets(0, 0, 0, 0);
|
||||
changeConstraints(g, 1, count - length, 1, length, GridBagConstraints.CENTER, GridBagConstraints.BOTH, 1f, 1f, new Insets(0, 0, 0, 0));
|
||||
f.add(modLabel, g);
|
||||
length = 0;
|
||||
lastMod = moduleName;
|
||||
@ -61,16 +65,7 @@ public class Tableau {
|
||||
|
||||
JLabel fieldLabel = new JLabel(fieldName);
|
||||
fieldLabel.setBorder(BorderFactory.createLineBorder(Color.BLACK));
|
||||
|
||||
g.gridx = 2;
|
||||
g.gridy = count;
|
||||
g.gridwidth = 1;
|
||||
g.gridheight = 1;
|
||||
g.anchor = GridBagConstraints.CENTER;
|
||||
g.fill = GridBagConstraints.BOTH;
|
||||
g.weightx = 1f;
|
||||
g.weighty = 1f;
|
||||
g.insets = new Insets(0, 0, 0, 0);
|
||||
changeConstraints(g, 2, count, 1, 1, GridBagConstraints.CENTER, GridBagConstraints.BOTH, 1f, 1f, new Insets(0, 0, 0, 0));
|
||||
f.add(fieldLabel, g);
|
||||
|
||||
length++;
|
||||
|
Loading…
Reference in New Issue
Block a user