Available Methods
- setVisible ( )
- dispose ( )
- setSize ( )
- getPeer ( )
- getLocationOnScreen ( )
- getSize ( )
- setBounds ( )
- getWindows ( )
- isActive ( )
- setLocation ( )
- setLocationRelativeTo ( )
- isVisible ( )
- setBackground ( )
- addWindowListener ( )
- getBounds ( )
- getWidth ( )
- addComponentListener ( )
- pack ( )
- getHeight ( )
- isShowing ( )
- add ( )
- getGraphicsConfiguration ( )
- isFocused ( )
- getOwner ( )
- removeWindowListener ( )
- setLocationByPlatform ( )
- getInsets ( )
- getName ( )
- getOwnedWindows ( )
- setAlwaysOnTop ( )
- getFocusOwner ( )
- toFront ( )
- getMinimumSize ( )
- getFocusTraversalPolicy ( )
- getCursor ( )
- paint ( )
- validate ( )
- setLayout ( )
- getLocation ( )
- getBackground ( )
Related Classes
- java.io.File
- java.lang.ref.WeakReference
- java.awt.Color
- com.google.common.base.Preconditions
- java.awt.event.ActionEvent
- java.awt.event.ActionListener
- javax.swing.JPanel
- java.awt.Dimension
- javax.swing.JFrame
- java.awt.event.MouseEvent
- javax.swing.JLabel
- java.awt.Graphics
- javax.swing.JButton
- java.awt.event.KeyEvent
- java.awt.BorderLayout
- javax.swing.JOptionPane
- java.awt.Component
- javax.swing.JScrollPane
- java.awt.event.WindowEvent
- java.awt.Rectangle
- java.awt.Toolkit
- javax.swing.JTextField
- javax.swing.SwingUtilities
- java.awt.Image
- javax.swing.JFileChooser
Java Code Examples for java.awt.Window#getCursor()
The following examples show how to use
java.awt.Window#getCursor() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SeaGlassRootPaneUI.java From seaglass with Apache License 2.0 | 5 votes |
/** * @see java.awt.event.MouseListener#mouseEntered(java.awt.event.MouseEvent) */ public void mouseEntered(MouseEvent ev) { Window w = (Window) ev.getSource(); lastCursor = w.getCursor(); mouseMoved(ev); }
Example 2
Source File: BERootPaneUI.java From beautyeye with Apache License 2.0 | 4 votes |
public void mouseEntered(MouseEvent ev) { Window w = (Window) ev.getSource(); lastCursor = w.getCursor(); mouseMoved(ev); }