Lines Matching refs:gbc

110     GridBagConstraints gbc = new GridBagConstraints();
111 gbc.gridwidth = 4;
112 gbc.fill = GridBagConstraints.HORIZONTAL;
113 gbc.anchor = GridBagConstraints.NORTHWEST;
114 gbc.gridx = 0;
115 gbc.gridy = 0;
116 gbc.insets.top = UIFactory.TOP_INSET_PRIMARY_FIELD;
117 gbc.insets.bottom = UIFactory.TOP_INSET_PRIMARY_FIELD;
118 gbc.weightx = 1.0;
119 panel.add(warning, gbc);
122 gbc.gridy ++;
123 gbc.gridwidth = 1;
124 gbc.weightx = 0.0;
125 gbc.insets.bottom = 0;
131 gbc.insets.top = Math.abs(
134 panel.add(l, gbc);
135 gbc.gridx ++;
136 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
137 gbc.weightx = 0.5;
138 panel.add(lServer, gbc);
139 gbc.gridx ++;
140 gbc.insets.top = 0;
141 gbc.weightx = 0.0;
142 panel.add(bServer, gbc);
143 gbc.gridx ++;
144 gbc.weightx = 1.0;
145 gbc.insets.left = 0;
146 panel.add(Box.createHorizontalGlue(), gbc);
148 gbc.gridy++;
149 gbc.gridx = 0;
150 gbc.weightx = 0.0;
158 gbc.insets.top = importInsetsTop + UIFactory.TOP_INSET_SECONDARY_FIELD;
159 panel.add(l, gbc);
160 gbc.gridx ++;
161 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
162 gbc.weightx = 0.5;
163 panel.add(lImport, gbc);
164 gbc.gridx ++;
165 gbc.insets.top = UIFactory.TOP_INSET_SECONDARY_FIELD;
166 gbc.weightx = 0.0;
167 panel.add(bImport, gbc);
168 gbc.gridx ++;
169 gbc.weightx = 1.0;
170 gbc.insets.left = 0;
171 panel.add(Box.createHorizontalGlue(), gbc);
173 gbc.gridx = 0;
174 gbc.gridwidth = 4;
175 gbc.gridy ++;
176 gbc.insets = UIFactory.getEmptyInsets();
177 gbc.weightx = 1.0;
178 gbc.weighty = 1.0;
179 gbc.fill = GridBagConstraints.VERTICAL;
180 panel.add(Box.createVerticalGlue(), gbc);