| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #ifndef DragImage_h | 26 #ifndef DragImage_h |
| 27 #define DragImage_h | 27 #define DragImage_h |
| 28 | 28 |
| 29 #include "DragImageRef.h" | 29 #include "DragImageRef.h" |
| 30 #include "ImageOrientation.h" | 30 #include "ImageOrientation.h" |
| 31 #include "IntSize.h" | 31 #include "IntSize.h" |
| 32 #include "FloatSize.h" | 32 #include "FloatSize.h" |
| 33 #include <wtf/Forward.h> | 33 #include <wtf/Forward.h> |
| 34 | 34 |
| 35 | |
| 36 //We need to #define YOffset as it needs to be shared with WebKit | 35 //We need to #define YOffset as it needs to be shared with WebKit |
| 37 #define DragLabelBorderYOffset 2 | 36 #define DragLabelBorderYOffset 2 |
| 38 | 37 |
| 39 namespace WebCore { | 38 namespace WebCore { |
| 40 | 39 |
| 41 class CachedImage; | 40 class CachedImage; |
| 42 class Frame; | 41 class Frame; |
| 43 class Image; | 42 class Image; |
| 44 class KURL; | 43 class KURL; |
| 45 class Range; | 44 class Range; |
| 46 | 45 |
| 47 IntSize dragImageSize(DragImageRef); | 46 IntSize dragImageSize(DragImageRef); |
| 48 | 47 |
| 49 //These functions should be memory neutral, eg. if they return a newly alloc
ated image, | 48 //These functions should be memory neutral, eg. if they return a newly alloc
ated image, |
| 50 //they should release the input image. As a corollary these methods don't g
uarantee | 49 //they should release the input image. As a corollary these methods don't g
uarantee |
| 51 //the input image ref will still be valid after they have been called | 50 //the input image ref will still be valid after they have been called |
| 52 DragImageRef fitDragImageToMaxSize(DragImageRef image, const IntSize& srcSiz
e, const IntSize& size); | 51 DragImageRef fitDragImageToMaxSize(DragImageRef image, const IntSize& srcSiz
e, const IntSize& size); |
| 53 DragImageRef scaleDragImage(DragImageRef, FloatSize scale); | 52 DragImageRef scaleDragImage(DragImageRef, FloatSize scale); |
| 54 DragImageRef dissolveDragImageToFraction(DragImageRef image, float delta); | 53 DragImageRef dissolveDragImageToFraction(DragImageRef image, float delta); |
| 55 | 54 |
| 56 DragImageRef createDragImageFromImage(Image*, RespectImageOrientationEnum =
DoNotRespectImageOrientation); | 55 DragImageRef createDragImageFromImage(Image*, RespectImageOrientationEnum =
DoNotRespectImageOrientation); |
| 57 DragImageRef createDragImageForSelection(Frame*); | 56 DragImageRef createDragImageForSelection(Frame*); |
| 58 DragImageRef createDragImageIconForCachedImage(CachedImage*); | 57 DragImageRef createDragImageIconForCachedImage(CachedImage*); |
| 59 DragImageRef createDragImageForLink(KURL&, const String& label, Frame*); | 58 DragImageRef createDragImageForLink(KURL&, const String& label, Frame*); |
| 60 void deleteDragImage(DragImageRef); | 59 void deleteDragImage(DragImageRef); |
| 61 } | 60 } |
| 62 | 61 |
| 63 #endif //!DragImage_h | 62 #endif //!DragImage_h |
| OLD | NEW |