HomeSort by relevance Sort by last modified time
    Searched refs:hotSpot (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/rendering/style/
CursorData.h 42 return hotSpot == o.hotSpot && cursorImage == o.cursorImage;
50 IntPoint hotSpot; // for CSS3 support
RenderStyle.cpp 539 void RenderStyle::addCursor(CachedImage* image, const IntPoint& hotSpot)
543 data.hotSpot = hotSpot;
    [all...]
  /external/webkit/WebKit/chromium/src/
WebCursorInfo.cpp 43 hotSpot = cursor.impl().hotSpot();
  /external/webkit/WebCore/platform/chromium/
PlatformCursor.h 92 PlatformCursor(Image* image, const IntPoint& hotSpot)
94 , m_hotSpot(hotSpot)
98 const IntPoint& hotSpot() const { return m_hotSpot; }
CursorChromium.cpp 41 Cursor::Cursor(Image* image, const IntPoint& hotSpot)
42 : m_impl(image, hotSpot)
  /external/webkit/WebKit/chromium/public/
WebCursorInfo.h 95 WebPoint hotSpot;
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macmouse.c 82 cursor->curs.hotSpot.h = hot_x;
83 cursor->curs.hotSpot.v = hot_y;
  /frameworks/base/awt/java/awt/
Cursor.java 175 private Point hotSpot;
213 * @param hotSpot
216 Cursor(String name, Image img, Point hotSpot) {
219 this.hotSpot = hotSpot;
329 // awt.141=failed to parse hotspot property for cursor:
333 String hotSpotStr = cursorProps.getProperty(nm + ".HotSpot"); //$NON-NLS-1$
413 nativeCursor = toolkit.createCustomNativeCursor(image, hotSpot, name);
Toolkit.java 724 * @param hotSpot
736 public Cursor createCustomCursor(Image img, Point hotSpot, String name)
740 int w = img.getWidth(null), x = hotSpot.x;
741 int h = img.getHeight(null), y = hotSpot.y;
743 // awt.7E=invalid hotSpot
746 return new Cursor(name, img, hotSpot);
    [all...]
  /external/webkit/WebCore/platform/gtk/
CursorGtk.cpp 66 Cursor::Cursor(Image* image, const IntPoint& hotSpot)
69 m_impl = gdk_cursor_new_from_pixbuf(gdk_display_get_default(), pixbuf, hotSpot.x(), hotSpot.y());
  /external/webkit/WebCore/platform/mac/
CursorMac.mm 46 static NSCursor* createCustomCursor(Image* image, const IntPoint& hotspot)
53 return [[NSCursor alloc] initWithImage:img hotSpot:hotspot];
71 cursor = [[NSCursor alloc] initWithImage:cursorImage hotSpot:hotSpotPoint];
79 Cursor::Cursor(Image* image, const IntPoint& hotspot)
80 : m_impl(HardRetainWithNSRelease(createCustomCursor(image, hotspot)))
  /external/webkit/WebCore/platform/win/
CursorWin.cpp 55 Cursor::Cursor(Image* img, const IntPoint& hotspot)
77 ii.xHotspot = hotspot.x();
78 ii.yHotspot = hotspot.y();
113 icon.xHotspot = hotspot.x();
114 icon.yHotspot = hotspot.y();
143 IntPoint hotSpot(x, y);
147 c = Cursor(cursorImage.get(), hotSpot);
  /external/webkit/WebCore/page/
EventHandler.cpp     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 76 cursor->nscursor = [ [ NSCursor alloc ] initWithImage: img hotSpot: NSMakePoint(hot_x, hot_y) ];

Completed in 246 milliseconds