Searched defs:Actions (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicButtonListener.java56 map.put(new Actions(Actions.PRESS));
57 map.put(new Actions(Actions.RELEASE));
278 * Actions for Buttons. Two types of action are supported:
282 private static class Actions extends UIAction { class in class:BasicButtonListener
286 Actions(String name) { method in class:BasicButtonListener.Actions
H A DBasicMenuBarUI.java67 map.put(new Actions(Actions.TAKE_FOCUS));
215 private static class Actions extends UIAction { class in class:BasicMenuBarUI
218 Actions(String key) { method in class:BasicMenuBarUI.Actions
H A DBasicRootPaneUI.java128 map.put(new Actions(Actions.PRESS));
129 map.put(new Actions(Actions.RELEASE));
130 map.put(new Actions(Actions.POST_POPUP));
172 static class Actions extends UIAction { class in class:BasicRootPaneUI
177 Actions(String name) { method in class:BasicRootPaneUI.Actions
H A DBasicLabelUI.java74 map.put(new Actions(Actions.PRESS));
75 map.put(new Actions(Actions.RELEASE));
428 private static class Actions extends UIAction { class in class:BasicLabelUI
432 Actions(String key) { method in class:BasicLabelUI.Actions
H A DBasicMenuUI.java72 map.put(new Actions(Actions.SELECT, null, true));
212 Timer timer = new Timer(menu.getDelay(), new Actions(
213 Actions.SELECT, menu,false));
225 private static class Actions extends UIAction { class in class:BasicMenuUI
233 Actions(String key, JMenu menu, boolean shouldForce) { method in class:BasicMenuUI.Actions
H A DBasicDesktopPaneUI.java51 private static final Actions SHARED_ACTION = new Actions();
235 map.put(new Actions(Actions.RESTORE));
236 map.put(new Actions(Actions.CLOSE));
237 map.put(new Actions(Actions.MOVE));
238 map.put(new Actions(Actions
311 private static class Actions extends UIAction { class in class:BasicDesktopPaneUI
337 Actions() { method in class:BasicDesktopPaneUI.Actions
341 Actions(String name) { method in class:BasicDesktopPaneUI.Actions
[all...]
H A DBasicMenuItemUI.java96 map.put(new Actions(Actions.CLICK));
792 private static class Actions extends UIAction { class in class:BasicMenuItemUI
795 Actions(String key) { method in class:BasicMenuItemUI.Actions
H A DBasicScrollPaneUI.java88 map.put(new Actions(Actions.SCROLL_UP));
89 map.put(new Actions(Actions.SCROLL_DOWN));
90 map.put(new Actions(Actions.SCROLL_HOME));
91 map.put(new Actions(Actions.SCROLL_END));
92 map.put(new Actions(Actions
709 private static class Actions extends UIAction { class in class:BasicScrollPaneUI
722 Actions(String key) { method in class:BasicScrollPaneUI.Actions
[all...]
H A DBasicTableHeaderUI.java400 map.put(new Actions(Actions.TOGGLE_SORT_ORDER));
401 map.put(new Actions(Actions.SELECT_COLUMN_TO_LEFT));
402 map.put(new Actions(Actions.SELECT_COLUMN_TO_RIGHT));
403 map.put(new Actions(Actions.MOVE_COLUMN_LEFT));
404 map.put(new Actions(Actions
813 private static class Actions extends UIAction { class in class:BasicTableHeaderUI
831 public Actions(String name) { method in class:BasicTableHeaderUI.Actions
[all...]
H A DBasicComboBoxUI.java223 map.put(new Actions(Actions.HIDE));
224 map.put(new Actions(Actions.PAGE_DOWN));
225 map.put(new Actions(Actions.PAGE_UP));
226 map.put(new Actions(Actions.HOME));
227 map.put(new Actions(Actions
1466 private static class Actions extends UIAction { class in class:BasicComboBoxUI
1480 Actions(String name) { method in class:BasicComboBoxUI.Actions
[all...]
H A DBasicOptionPaneUI.java120 map.put(new Actions(Actions.CLOSE));
1383 private static class Actions extends UIAction { class in class:BasicOptionPaneUI
1386 Actions(String key) { method in class:BasicOptionPaneUI.Actions
H A DBasicPopupMenuUI.java167 map.put(new Actions(Actions.CANCEL));
168 map.put(new Actions(Actions.SELECT_NEXT));
169 map.put(new Actions(Actions.SELECT_PREVIOUS));
170 map.put(new Actions(Actions.SELECT_PARENT));
171 map.put(new Actions(Actions
389 private static class Actions extends UIAction { class in class:BasicPopupMenuUI
407 Actions(String key) { method in class:BasicPopupMenuUI.Actions
[all...]
H A DBasicScrollBarUI.java137 map.put(new Actions(Actions.POSITIVE_UNIT_INCREMENT));
138 map.put(new Actions(Actions.POSITIVE_BLOCK_INCREMENT));
139 map.put(new Actions(Actions.NEGATIVE_UNIT_INCREMENT));
140 map.put(new Actions(Actions.NEGATIVE_BLOCK_INCREMENT));
141 map.put(new Actions(Actions
1506 private static class Actions extends UIAction { class in class:BasicScrollBarUI
1518 Actions(String name) { method in class:BasicScrollBarUI.Actions
[all...]
H A DBasicToolBarUI.java340 map.put(new Actions(Actions.NAVIGATE_RIGHT));
341 map.put(new Actions(Actions.NAVIGATE_LEFT));
342 map.put(new Actions(Actions.NAVIGATE_UP));
343 map.put(new Actions(Actions.NAVIGATE_DOWN));
1085 private static class Actions extends UIAction { class in class:BasicToolBarUI
1091 public Actions(Strin method in class:BasicToolBarUI.Actions
[all...]
H A DBasicListUI.java149 map.put(new Actions(Actions.SELECT_PREVIOUS_COLUMN));
150 map.put(new Actions(Actions.SELECT_PREVIOUS_COLUMN_EXTEND));
151 map.put(new Actions(Actions.SELECT_PREVIOUS_COLUMN_CHANGE_LEAD));
152 map.put(new Actions(Actions.SELECT_NEXT_COLUMN));
153 map.put(new Actions(Actions
1775 private static class Actions extends UIAction { class in class:BasicListUI
1832 Actions(String name) { method in class:BasicListUI.Actions
[all...]
H A DBasicSliderUI.java48 private static final Actions SHARED_ACTION = new Actions();
297 map.put(new Actions(Actions.POSITIVE_UNIT_INCREMENT));
298 map.put(new Actions(Actions.POSITIVE_BLOCK_INCREMENT));
299 map.put(new Actions(Actions.NEGATIVE_UNIT_INCREMENT));
300 map.put(new Actions(Actions
1954 private static class Actions extends UIAction { class in class:BasicSliderUI
1967 Actions() { method in class:BasicSliderUI.Actions
1971 public Actions(String name) { method in class:BasicSliderUI.Actions
[all...]
H A DBasicSplitPaneUI.java296 map.put(new Actions(Actions.NEGATIVE_INCREMENT));
297 map.put(new Actions(Actions.POSITIVE_INCREMENT));
298 map.put(new Actions(Actions.SELECT_MIN));
299 map.put(new Actions(Actions.SELECT_MAX));
300 map.put(new Actions(Actions
2083 private static class Actions extends UIAction { class in class:BasicSplitPaneUI
2093 Actions(String key) { method in class:BasicSplitPaneUI.Actions
[all...]
H A DBasicTableUI.java86 private static class Actions extends UIAction { class in class:BasicTableUI
184 Actions(String name) { method in class:BasicTableUI.Actions
188 Actions(String name, int dx, int dy, boolean extend, method in class:BasicTableUI.Actions
192 // Actions spcifying true for "inSelection" are
214 Actions(String name, boolean extend, boolean forwards, method in class:BasicTableUI.Actions
250 // Note: The Actions constructor ensures that only one of
393 if (key == SCROLL_LEFT_CHANGE_SELECTION || // Paging Actions
468 if (key == NEXT_ROW || // Navigate Actions
484 // Paging Actions.
1510 // passed to the Actions constructo
[all...]
H A DBasicTabbedPaneUI.java198 map.put(new Actions(Actions.NEXT));
199 map.put(new Actions(Actions.PREVIOUS));
200 map.put(new Actions(Actions.RIGHT));
201 map.put(new Actions(Actions.LEFT));
202 map.put(new Actions(Actions
2164 private static class Actions extends UIAction { class in class:BasicTabbedPaneUI
2181 Actions(String key) { method in class:BasicTabbedPaneUI.Actions
[all...]
H A DBasicTreeUI.java64 static private final Actions SHARED_ACTION = new Actions();
219 map.put(new Actions(Actions.SELECT_PREVIOUS));
220 map.put(new Actions(Actions.SELECT_PREVIOUS_CHANGE_LEAD));
221 map.put(new Actions(Actions.SELECT_PREVIOUS_EXTEND_SELECTION));
223 map.put(new Actions(Actions
3937 private static class Actions extends UIAction { class in class:BasicTreeUI
4008 Actions() { method in class:BasicTreeUI.Actions
4012 Actions(String key) { method in class:BasicTreeUI.Actions
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java196 map.put(new Actions(Actions.NEXT));
197 map.put(new Actions(Actions.PREVIOUS));
198 map.put(new Actions(Actions.RIGHT));
199 map.put(new Actions(Actions.LEFT));
200 map.put(new Actions(Actions
2010 private static class Actions extends UIAction { class in class:AquaTabbedPaneCopyFromBasicUI
2026 Actions(final String key) { method in class:AquaTabbedPaneCopyFromBasicUI.Actions
[all...]

Completed in 6108 milliseconds