Lines Matching refs:gbc

185     GridBagConstraints gbc = new GridBagConstraints();
186 gbc.anchor = GridBagConstraints.NORTHWEST;
187 gbc.fill = GridBagConstraints.HORIZONTAL;
188 gbc.weightx = 0.0;
189 gbc.gridwidth = GridBagConstraints.RELATIVE;
197 titlePanel.add(l, gbc);
199 gbc.weightx = 1.0;
200 gbc.gridwidth = GridBagConstraints.REMAINDER;
201 titlePanel.add(Box.createHorizontalGlue(), gbc);
206 gbc.insets = UIFactory.getEmptyInsets();
207 gbc.anchor = GridBagConstraints.NORTHWEST;
208 gbc.gridwidth = GridBagConstraints.REMAINDER;
209 gbc.weightx = 1.0;
210 gbc.fill = GridBagConstraints.HORIZONTAL;
211 mainPanel.add(titlePanel, gbc);
213 gbc.insets.top = UIFactory.TOP_INSET_INSTRUCTIONS_SUBPANEL;
219 mainPanel.add(progressBarLabel, gbc);
221 gbc.insets.top = UIFactory.TOP_INSET_PROGRESS_BAR;
222 gbc.insets.bottom = UIFactory.BOTTOM_INSET_PROGRESS_BAR;
223 mainPanel.add(createProgressBarPanel(), gbc);
231 gbc.insets = UIFactory.getEmptyInsets();
232 mainPanel.add(l, gbc);
257 gbc.insets.top = UIFactory.TOP_INSET_PROGRESS_TEXTAREA;
258 gbc.fill = GridBagConstraints.BOTH;
259 gbc.weighty = 1.0;
260 mainPanel.add(scroll, gbc);
265 gbc.fill = GridBagConstraints.HORIZONTAL;
266 gbc.weightx = 1.0;
267 gbc.insets = UIFactory.getEmptyInsets();
268 gbc.gridwidth = GridBagConstraints.RELATIVE;
269 buttonsPanel.add(Box.createHorizontalGlue(), gbc);
273 gbc.fill = GridBagConstraints.NONE;
274 gbc.weightx = 0.0;
275 gbc.gridwidth = GridBagConstraints.REMAINDER;
276 buttonsPanel.add(closeButton, gbc);
287 gbc.insets = UIFactory.getEmptyInsets();
288 gbc.fill = GridBagConstraints.BOTH;
289 gbc.gridwidth = GridBagConstraints.REMAINDER;
290 gbc.weightx = 1.0;
291 gbc.weighty = 1.0;
292 gbc.insets = UIFactory.getEmptyInsets();
296 gbc.insets = UIFactory.getCurrentStepPanelInsets();
297 p1.add(mainPanel, gbc);
298 gbc.insets = UIFactory.getEmptyInsets();
299 p.add(p1, gbc);
300 gbc.weighty = 0.0;
301 gbc.insets = UIFactory.getButtonsPanelInsets();
302 p.add(buttonsPanel, gbc);
315 GridBagConstraints gbc = new GridBagConstraints();
316 gbc.insets = UIFactory.getEmptyInsets();
317 gbc.fill = GridBagConstraints.HORIZONTAL;
324 gbc.gridwidth = GridBagConstraints.RELATIVE;
325 gbc.weightx = 0.0;
326 panel.add(Box.createHorizontalStrut(UIFactory.PROGRESS_BAR_SIZE), gbc);
327 gbc.gridwidth = GridBagConstraints.REMAINDER;
328 gbc.weightx = 1.0;
329 panel.add(Box.createHorizontalGlue(), gbc);
331 gbc.gridwidth = GridBagConstraints.RELATIVE;
332 gbc.weightx = 0.0;
333 //panel.add(progressBar, gbc);
334 gbc.gridwidth = GridBagConstraints.REMAINDER;
335 gbc.weightx = 1.0;
336 panel.add(Box.createHorizontalGlue(), gbc);