Lines Matching refs:gbc

141     GridBagConstraints gbc = new GridBagConstraints();
142 gbc.weightx = 1.0;
143 gbc.gridwidth = 2;
144 gbc.gridx = 0;
145 gbc.gridy = 0;
146 gbc.anchor = GridBagConstraints.NORTHWEST;
147 gbc.fill = GridBagConstraints.HORIZONTAL;
151 panel.add(expander, gbc);
153 gbc.gridy ++;
156 gbc.insets.left = labelInsetLeft;
157 gbc.anchor = GridBagConstraints.NORTHWEST;
158 gbc.insets.top = 10;
159 gbc.gridwidth = 1;
160 gbc.weightx = 0.0;
161 panel.add(lDnsToInclude, gbc);
163 gbc.gridx = 1;
164 gbc.weightx = 1.0;
165 gbc.insets.left = 10;
168 panel.add(scrollDns, gbc);
171 gbc.insets.top = 2;
172 gbc.gridy ++;
175 panel.add(lDnsExplanation, gbc);
177 gbc.gridy ++;
178 gbc.gridx = 0;
179 gbc.weightx = 0.0;
182 gbc.insets.left = labelInsetLeft;
183 gbc.anchor = GridBagConstraints.NORTHWEST;
184 gbc.insets.top = 10;
185 gbc.gridwidth = 1;
186 panel.add(lAttributesToInclude, gbc);
188 gbc.gridx = 1;
189 gbc.weightx = 1.0;
190 gbc.insets.left = 10;
191 gbc.weightx = 1.0;
193 panel.add(attributesToInclude, gbc);
196 gbc.insets.top = 2;
197 gbc.gridy ++;
200 panel.add(lAttributesExplanation, gbc);
202 gbc.gridy ++;
203 gbc.gridx = 0;
206 gbc.insets.left = labelInsetLeft;
207 gbc.anchor = GridBagConstraints.NORTHWEST;
208 gbc.insets.top = 10;
209 gbc.gridwidth = 1;
210 gbc.weightx = 0.0;
211 panel.add(lInclusionFilter, gbc);
213 gbc.gridx = 1;
214 gbc.weightx = 1.0;
215 gbc.insets.left = 10;
217 panel.add(inclusionFilter, gbc);
220 addExtraComponents(panel, extraComponentLabels, extraComponents, gbc,
258 GridBagConstraints gbc = new GridBagConstraints();
259 gbc.weightx = 1.0;
260 gbc.gridwidth = 2;
261 gbc.gridx = 0;
262 gbc.gridy = 0;
263 gbc.anchor = GridBagConstraints.NORTHWEST;
264 gbc.fill = GridBagConstraints.HORIZONTAL;
268 panel.add(expander, gbc);
270 gbc.gridy ++;
273 gbc.insets.left = labelInsetLeft;
274 gbc.anchor = GridBagConstraints.NORTHWEST;
275 gbc.insets.top = 10;
276 gbc.gridwidth = 1;
277 gbc.weightx = 0.0;
278 panel.add(lDnsToExclude, gbc);
280 gbc.gridx = 1;
281 gbc.weightx = 1.0;
282 gbc.insets.left = 10;
286 panel.add(scrollDns, gbc);
288 gbc.insets.top = 2;
289 gbc.gridy ++;
292 panel.add(lDnsExplanation, gbc);
294 gbc.gridy ++;
295 gbc.gridx = 0;
296 gbc.weightx = 0.0;
299 gbc.insets.left = labelInsetLeft;
300 gbc.anchor = GridBagConstraints.NORTHWEST;
301 gbc.insets.top = 10;
302 gbc.gridwidth = 1;
303 panel.add(lAttributesToExclude, gbc);
305 gbc.gridx = 1;
306 gbc.weightx = 1.0;
307 gbc.insets.left = 10;
308 gbc.weightx = 1.0;
310 panel.add(attributesToExclude, gbc);
313 gbc.insets.top = 2;
314 gbc.gridy ++;
317 panel.add(lAttributesExplanation, gbc);
320 gbc.gridy ++;
321 gbc.gridx = 0;
324 gbc.insets.left = labelInsetLeft;
325 gbc.anchor = GridBagConstraints.NORTHWEST;
326 gbc.insets.top = 10;
327 gbc.gridwidth = 1;
328 gbc.weightx = 0.0;
329 panel.add(lExclusionFilter, gbc);
331 gbc.gridx = 1;
332 gbc.weightx = 1.0;
333 gbc.insets.left = 10;
335 panel.add(exclusionFilter, gbc);
338 addExtraComponents(panel, extraComponentLabels, extraComponents, gbc,
365 Component[] extraComponents, GridBagConstraints gbc, int labelInsetLeft)
369 gbc.gridy ++;
370 gbc.gridx = 0;
371 gbc.insets.left = labelInsetLeft;
372 gbc.anchor = GridBagConstraints.NORTHWEST;
373 gbc.insets.top = 10;
377 gbc.gridwidth = 2;
378 gbc.weightx = 1.0;
379 panel.add(extraComponents[i], gbc);
383 gbc.gridwidth = 1;
384 gbc.weightx = 0.0;
385 panel.add(extraComponentLabels[i], gbc);
387 gbc.gridx = 1;
388 gbc.weightx = 1.0;
389 gbc.insets.left = 10;
390 panel.add(extraComponents[i], gbc);