Lines Matching refs:gbc

146     GridBagConstraints gbc = new GridBagConstraints();
147 gbc.gridwidth = GridBagConstraints.RELATIVE;
148 gbc.anchor = GridBagConstraints.NORTHWEST;
151 gbc.insets.top = currentStepInsets.top;
152 gbc.insets.left = currentStepInsets.left;
155 UIFactory.TextStyle.NO_STYLE), gbc);
156 gbc.weightx = 1.0;
157 gbc.gridwidth = GridBagConstraints.REMAINDER;
158 gbc.insets.left = UIFactory.LEFT_INSET_SECONDARY_FIELD;
159 gbc.fill = GridBagConstraints.BOTH;
165 p1.add(tf, gbc);
166 gbc.insets.top = UIFactory.TOP_INSET_SECONDARY_FIELD;
167 gbc.insets.left = currentStepInsets.left;
168 gbc.insets.right = currentStepInsets.right;
169 gbc.insets.bottom = currentStepInsets.bottom;
172 gbc.fill = GridBagConstraints.NONE;
173 p1.add(comboAliases, gbc);
175 gbc.insets = UIFactory.getEmptyInsets();
176 gbc.weighty = 1.0;
177 gbc.fill = GridBagConstraints.VERTICAL;
178 p1.add(Box.createVerticalGlue(), gbc);
182 gbc.fill = GridBagConstraints.HORIZONTAL;
183 gbc.weightx = 1.0;
184 gbc.gridwidth = 3;
185 p2.add(Box.createHorizontalGlue(), gbc);
195 gbc.fill = GridBagConstraints.NONE;
196 gbc.weightx = 0.0;
197 gbc.gridwidth = GridBagConstraints.RELATIVE;
198 p2.add(okButton, gbc);
201 gbc.gridwidth = GridBagConstraints.REMAINDER;
202 gbc.insets.left = UIFactory.HORIZONTAL_INSET_BETWEEN_BUTTONS;
203 p2.add(cancelButton, gbc);
214 gbc.insets = UIFactory.getEmptyInsets();
215 gbc.fill = GridBagConstraints.BOTH;
216 gbc.gridwidth = GridBagConstraints.REMAINDER;
217 gbc.weightx = 1.0;
218 gbc.weighty = 1.0;
219 p.add(p1, gbc);
220 gbc.weighty = 0.0;
221 gbc.insets = UIFactory.getButtonsPanelInsets();
222 p.add(p2, gbc);