Lines Matching refs:gbc

218     GridBagConstraints gbc = new GridBagConstraints();
219 gbc.gridwidth = GridBagConstraints.RELATIVE;
220 gbc.anchor = GridBagConstraints.NORTHWEST;
221 gbc.insets = UIFactory.getCurrentStepPanelInsets();
223 UIFactory.TextStyle.NO_STYLE), gbc);
224 gbc.weightx = 1.0;
225 gbc.fill = GridBagConstraints.BOTH;
226 gbc.gridwidth = GridBagConstraints.REMAINDER;
227 gbc.insets.left = 0;
234 p1.add(textPane, gbc);
239 gbc.gridwidth = GridBagConstraints.RELATIVE;
240 gbc.weightx = 0.0;
241 gbc.insets = UIFactory.getEmptyInsets();
242 gbc.anchor = GridBagConstraints.WEST;
243 gbc.fill = GridBagConstraints.HORIZONTAL;
247 p2.add(lHostName, gbc);
248 gbc.weightx = 1.0;
249 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
250 gbc.gridwidth = GridBagConstraints.REMAINDER;
255 p2.add(tfHostName, gbc);
257 gbc.gridwidth = GridBagConstraints.RELATIVE;
258 gbc.weightx = 0.0;
259 gbc.insets.left = 0;
260 gbc.insets.top = UIFactory.TOP_INSET_PRIMARY_FIELD;
261 gbc.anchor = GridBagConstraints.WEST;
262 gbc.fill = GridBagConstraints.HORIZONTAL;
266 p2.add(lUid, gbc);
267 gbc.weightx = 1.0;
268 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
269 gbc.gridwidth = GridBagConstraints.REMAINDER;
273 p2.add(tfUid, gbc);
275 gbc.gridwidth = GridBagConstraints.RELATIVE;
276 gbc.weightx = 0.0;
277 gbc.insets.left = 0;
281 p2.add(lPwd, gbc);
282 gbc.insets.left = UIFactory.LEFT_INSET_PRIMARY_FIELD;
283 gbc.fill = GridBagConstraints.HORIZONTAL;
284 gbc.gridwidth = GridBagConstraints.REMAINDER;
290 p2.add(p3, gbc);
291 gbc.insets = UIFactory.getEmptyInsets();
292 gbc.gridwidth = GridBagConstraints.RELATIVE;
293 gbc.weightx = 0.0;
294 p3.add(tfPwd, gbc);
295 gbc.gridwidth = GridBagConstraints.REMAINDER;
296 gbc.weightx = 1.0;
297 p3.add(Box.createHorizontalGlue(), gbc);
300 gbc.fill = GridBagConstraints.HORIZONTAL;
301 gbc.insets = UIFactory.getEmptyInsets();
302 gbc.gridwidth = GridBagConstraints.RELATIVE;
303 gbc.weightx = 0.0;
304 gbc.insets.top = 0;
305 p1.add(Box.createHorizontalGlue(), gbc);
306 gbc.weightx = 1.0;
307 gbc.gridwidth = GridBagConstraints.REMAINDER;
308 gbc.insets.right = UIFactory.getCurrentStepPanelInsets().right;
309 p1.add(p2, gbc);
310 gbc.weighty = 1.0;
311 gbc.fill = GridBagConstraints.VERTICAL;
312 gbc.insets.bottom = UIFactory.getCurrentStepPanelInsets().bottom;
313 p1.add(Box.createVerticalGlue(), gbc);
318 gbc.fill = GridBagConstraints.HORIZONTAL;
319 gbc.weightx = 1.0;
320 gbc.insets = UIFactory.getEmptyInsets();
321 gbc.gridwidth = 3;
322 buttonPanel.add(Box.createHorizontalGlue(), gbc);
323 gbc.gridwidth = GridBagConstraints.RELATIVE;
324 gbc.fill = GridBagConstraints.NONE;
325 gbc.weightx = 0.0;
329 buttonPanel.add(okButton, gbc);
339 gbc.gridwidth = GridBagConstraints.REMAINDER;
340 gbc.insets.left = UIFactory.HORIZONTAL_INSET_BETWEEN_BUTTONS;
344 buttonPanel.add(cancelButton, gbc);
356 gbc.insets = UIFactory.getEmptyInsets();
357 gbc.fill = GridBagConstraints.BOTH;
358 gbc.gridwidth = GridBagConstraints.REMAINDER;
359 gbc.weightx = 1.0;
360 gbc.weighty = 1.0;
361 p.add(p1, gbc);
362 gbc.weighty = 0.0;
363 gbc.insets = UIFactory.getButtonsPanelInsets();
364 p.add(buttonPanel, gbc);