| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 220 |
| 221 bool isAutofilled() const { return m_isAutofilled; } | 221 bool isAutofilled() const { return m_isAutofilled; } |
| 222 void setAutofilled(bool = true); | 222 void setAutofilled(bool = true); |
| 223 | 223 |
| 224 FileList* files(); | 224 FileList* files(); |
| 225 void setFiles(PassRefPtr<FileList>); | 225 void setFiles(PassRefPtr<FileList>); |
| 226 | 226 |
| 227 // Returns true if the given DragData has more than one dropped files. | 227 // Returns true if the given DragData has more than one dropped files. |
| 228 bool receiveDroppedFiles(const DragData*); | 228 bool receiveDroppedFiles(const DragData*); |
| 229 | 229 |
| 230 #if ENABLE(FILE_SYSTEM) | |
| 231 String droppedFileSystemId(); | 230 String droppedFileSystemId(); |
| 232 #endif | |
| 233 | 231 |
| 234 Icon* icon() const; | 232 Icon* icon() const; |
| 235 // These functions are used for rendering the input active during a | 233 // These functions are used for rendering the input active during a |
| 236 // drag-and-drop operation. | 234 // drag-and-drop operation. |
| 237 bool canReceiveDroppedFiles() const; | 235 bool canReceiveDroppedFiles() const; |
| 238 void setCanReceiveDroppedFiles(bool); | 236 void setCanReceiveDroppedFiles(bool); |
| 239 | 237 |
| 240 void addSearchResult(); | 238 void addSearchResult(); |
| 241 void onSearch(); | 239 void onSearch(); |
| 242 | 240 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 // that it lives as long as its owning element lives. If we move the loader
into | 436 // that it lives as long as its owning element lives. If we move the loader
into |
| 439 // the ImageInput object we may delete the loader while this element lives o
n. | 437 // the ImageInput object we may delete the loader while this element lives o
n. |
| 440 OwnPtr<HTMLImageLoader> m_imageLoader; | 438 OwnPtr<HTMLImageLoader> m_imageLoader; |
| 441 #if ENABLE(DATALIST_ELEMENT) | 439 #if ENABLE(DATALIST_ELEMENT) |
| 442 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 440 OwnPtr<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 443 #endif | 441 #endif |
| 444 }; | 442 }; |
| 445 | 443 |
| 446 } //namespace | 444 } //namespace |
| 447 #endif | 445 #endif |
| OLD | NEW |