Searched refs:insets (Results 1 - 25 of 43) sorted by relevance

12

/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/
H A DInsetsConverter.java60 Insets insets = (Insets)obj;
63 s = s + /* NOI18N */"top=" + insets.top + /* NOI18N */";";
65 s = s + /* NOI18N */"left=" + insets.left + /* NOI18N */";";
67 s = s + /* NOI18N */"bottom=" + insets.bottom
70 s = s + /* NOI18N */"right=" + insets.right + /* NOI18N */";";
105 Insets insets = new Insets(0, 0, 0, 0);
122 insets.top = getIntegerFromTable(table,
125 insets.left = getIntegerFromTable(table,
128 insets.bottom = getIntegerFromTable(table,
131 insets
[all...]
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/ui/
H A DProportionalLayout.java105 Insets insets = target.getInsets();
106 dim.width += insets.left + insets.right;
107 dim.height += insets.top + insets.bottom;
120 Insets insets = target.getInsets();
122 int x = insets.left;
123 int y = insets.top;
124 int totalHeight = dim.height - insets.bottom;
125 int totalWidth = dim.width - insets
[all...]
H A DFieldLayout.java147 Insets insets = target.getInsets();
148 dim.width += insets.left + insets.right + hgap*2;
149 dim.height += insets.top + insets.bottom + vgap;
176 Insets insets = target.getInsets();
177 dim.width += insets.left + insets.right + hgap*2;
178 dim.height += insets.top + insets
[all...]
H A DButtonLayout.java116 Insets insets = target.getInsets();
117 dim.width += insets.left + insets.right + hgap*2;
118 dim.height += insets.top + insets.bottom + vgap*2;
141 Insets insets = target.getInsets();
142 dim.width += insets.left + insets.right + hgap*2;
143 dim.height += insets.top + insets
[all...]
H A DVerticalButtonLayout.java117 Insets insets = target.getInsets();
118 dim.width += insets.left + insets.right + hgap*2;
119 dim.height += insets.top + insets.bottom + vgap*2;
142 Insets insets = target.getInsets();
143 dim.width += insets.left + insets.right + hgap*2;
144 dim.height += insets.top + insets
[all...]
H A DListPair.java139 Insets insets = target.getInsets();
141 int x = insets.left;
142 int y = insets.top;
143 int totalHeight = dim.height - insets.bottom;
144 int totalWidth = dim.width - insets.right;
/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/awt/
H A DGBLayout.java138 < dt> <a href = java.awt.GBConstraints.html#insets>insets</a>
331 * Set the window insets. The window insets default to (0,0,0,0).
333 public synchronized static void setWindowInsets(Insets insets) { argument
334 if (insets == null)
337 windowInsets = (Insets)insets.clone();
341 * Get the window insets.
366 if (c.insets == null)
367 c.insets
[all...]
H A DRootDialog.java125 * Make sure the insets aren't screwed up on Windows. The dialog
127 * fix the insets here.
129 public Insets insets() { method in class:RootDialog
130 Insets insets = (Insets)super.insets().clone();
133 if (insets.top < 10)
134 insets.top = 25;
135 if (insets.bottom < 5)
136 insets.bottom = 5;
137 if (insets
[all...]
H A DVJFlowLayout.java165 Insets insets = target.insets();
166 Dimension r = new Dimension(0, vgap + insets.top +
167 insets.bottom);
170 int rowWidth = insets.left + insets.right + hgap;
190 rowWidth = insets.left + insets.right + hgap;
248 Insets insets = target.insets();
[all...]
H A DVJErrorDialog.java75 c.insets = new Insets(2, 2, 2, 2);
81 c.insets = new Insets(0, 0, 0, 0);
87 c.insets = new Insets(2, 2, 2, 2);
H A DVJPanel.java535 public void setBorderInsets(Insets insets) { argument
536 if (insets == null)
539 this.borderInsets = (Insets)insets.clone();
547 public Insets insets() { method in class:VJPanel
550 Insets insets = getAdjustedInsets();
552 return new Insets(h + insets.top,
553 bd + insets.left,
554 bd + insets.bottom,
555 bd + insets.right);
582 Insets insets;
[all...]
H A DScrollPanel.java132 c.insets = scrollAreaInsets;
157 public void setScrollAreaInsets(Insets insets) { argument
158 scrollAreaInsets = insets;
162 c.insets = insets;
223 // take out our insets
224 Insets insets = insets();
229 size.width -= (insets.left + insets
[all...]
H A DRootFrame.java319 * causes the top insets to
322 public Insets insets() { method in class:RootFrame
323 Insets insets = (Insets)super.insets().clone();
325 insets.top < 30)
326 insets.top += 30;
327 return insets;
H A DGBConstraints.java82 // Regular insets and pads will shrink when space gets tight
83 public Insets insets; field in class:GBConstraints
86 // Hard insets and pads never shrink
120 insets = new Insets(0, 0, 0, 0);
148 if (c.insets != null)
149 c.insets = (Insets)c.insets.clone();
196 else if (option.equals(/* NOI18N */"insets.top"))
197 insets.top = convertSymbolicValue(getValueToken(op));
198 else if (option.equals(/* NOI18N */"insets
[all...]
H A DTabbedFolder.java170 public Insets insets() { method in class:TabbedFolder
173 Insets insets = new Insets(0, 0, 0, 0);
174 insets.left = folderInsets.left + bd + comppadx/2;
175 insets.right = folderInsets.right + bd + comppadx/2;
176 insets.top = folderInsets.top + tabH + comppady/2;
177 insets.bottom = folderInsets.bottom + bd + comppady/2;
179 return insets;
/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/shadow/
H A DGBPanelShadow.java123 } else if (key.equals(/* NOI18N */"insets")) {
129 Insets insets = (Insets)value;
130 if (c.insets != insets) {
131 c.insets = insets;
147 c.insets = (Insets)child.get(/* NOI18N */"insets");
H A DCardPanelShadow.java391 c.insets = new Insets(2, 2, 3, 5);
397 c.insets = new Insets(2, 2, 2, 2);
453 c.insets = new Insets(2, 2, 2, 2);
466 c.insets = null;
/opensolaris-onvv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DpmFindFrame.java71 c.insets = new Insets(10, 10, 5, 10);
102 c.insets = new Insets(0, 10, 5, 10);
112 c.insets = new Insets(5, 10, 5, 10);
124 c.insets = new Insets(5, 10, 10, 10);
H A DhelpTest.java83 pc.insets = new Insets(5, 5, 0, 5);
91 pc.insets = new Insets(0, 5, 5, 5);
98 c.insets = new Insets(5, 5, 5, 5);
H A DpmHelpIndexPanel.java68 c.insets = new Insets(5, 5, 5, 5);
82 pc.insets = new Insets(5, 5, 0, 5);
90 pc.insets = new Insets(0, 5, 5, 5);
176 c.insets = new Insets(10, 10, 10, 10);
306 c.insets = new Insets(10, 10, 10, 10);
315 c.insets = new Insets(10, 10, 10, 10);
H A DpmHelpDetailPanel.java88 c.insets = new Insets(5, 5, 5, 5);
99 c.insets = new Insets(5, 5, 0, 5);
109 c.insets = new Insets(0, 5, 5, 5);
426 c.insets = new Insets(5, 10, 5, 10);
448 c.insets = new Insets(5, 10, 5, 10);
449 // c.insets = new Insets(5, 5, 5, 5); // NEW
468 // pc.insets = new Insets(2, 2, 2, 2);
513 c.insets = new Insets(0, 10, 5, 10);
514 // c.insets = new Insets(0, 10, 5, 10);
515 c.insets
[all...]
H A DpmOther.java77 c.insets = new Insets(10, 10, 5, 10);
90 c.insets = new Insets(5, 10, 5, 10);
123 c.insets = new Insets(5, 10, 10, 10);
H A DpmHelpSearchPanel.java68 c.insets = new Insets(5, 5, 5, 5);
80 pc.insets = new Insets(5, 5, 0, 5);
88 pc.insets = new Insets(0, 5, 5, 5);
185 c.insets = new Insets(10, 10, 10, 10);
310 c.insets = new Insets(10, 10, 10, 10);
/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/dataclasses/
H A DDefaults.java492 gbc.insets = new Insets(10, 10, 0, 10);
495 gbc.insets = new Insets(10, 10, 10, 10);
500 gbc.insets = new Insets(0, 10, 10, 10);
505 gbc.insets = new Insets(0, 10, 10, 10);
523 gbc.insets = new Insets(0, 10, 0, 10);
583 gbc.insets = new Insets(7, 0, 7, 0);
644 gbc.insets = new Insets(0, 10, 0, 10);
721 gbc.insets = new Insets(0, 10, 0, 10);
769 gbc.insets = new Insets(10, 10, 10, 10);
771 gbc.insets
[all...]
/opensolaris-onvv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/shadow/java/awt/
H A DWindowShadow.java113 attributes.remove(/* NOI18N */"insets");
295 } else if (key.equals(/* NOI18N */"insets")) {
301 Insets insets = (Insets)value;
302 if (c.insets != insets) {
303 c.insets = insets;
319 c.insets = (Insets)child.get(/* NOI18N */"insets");

Completed in 188 milliseconds

12