| 1 | /* |
|---|
| 2 | * Copyright (C) 2007 Luca Bruno <lethalman88@gmail.com> |
|---|
| 3 | * All rights reserved. |
|---|
| 4 | * |
|---|
| 5 | * This library is free software; you can redistribute it and/or |
|---|
| 6 | * modify it under the terms of the GNU Library General Public |
|---|
| 7 | * License as published by the Free Software Foundation; either |
|---|
| 8 | * version 2 of the License, or (at your option) any later version. |
|---|
| 9 | * |
|---|
| 10 | * This library is distributed in the hope that it will be useful, |
|---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 13 | * Library General Public License for more details. |
|---|
| 14 | * |
|---|
| 15 | * You should have received a copy of the GNU Library General Public License |
|---|
| 16 | * along with this library; see the file COPYING.LIB. If not, write to |
|---|
| 17 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
|---|
| 18 | * Boston, MA 02110-1301, USA. |
|---|
| 19 | * |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | #ifndef PasteboardHelperGtk_h |
|---|
| 23 | #define PasteboardHelperGtk_h |
|---|
| 24 | |
|---|
| 25 | /* |
|---|
| 26 | * FIXME: this is for WebCore support and must be removed once |
|---|
| 27 | * a better solution is found |
|---|
| 28 | */ |
|---|
| 29 | |
|---|
| 30 | #include "Frame.h" |
|---|
| 31 | #include "PasteboardHelper.h" |
|---|
| 32 | |
|---|
| 33 | #include <gtk/gtk.h> |
|---|
| 34 | |
|---|
| 35 | using namespace WebCore; |
|---|
| 36 | |
|---|
| 37 | namespace WebKit { |
|---|
| 38 | |
|---|
| 39 | class PasteboardHelperGtk : public PasteboardHelper { |
|---|
| 40 | public: |
|---|
| 41 | PasteboardHelperGtk() { } |
|---|
| 42 | virtual GtkClipboard* getClipboard(Frame*) const; |
|---|
| 43 | virtual GtkTargetList* getCopyTargetList(Frame*) const; |
|---|
| 44 | virtual GtkTargetList* getPasteTargetList(Frame*) const; |
|---|
| 45 | }; |
|---|
| 46 | |
|---|
| 47 | } |
|---|
| 48 | |
|---|
| 49 | #endif // PasteboardHelperGtk_h |
|---|