root/trunk/WebCore/platform/gtk/PasteboardHelper.h

Revision 29961, 1.3 KB (checked in by alp@webkit.org, 10 months ago)

2008-02-04 Alp Toker <alp@atoker.com>

Rubber-stamped by Mark Rowe.

Remove all trailing whitespace in the GTK+ port and related
components.

  • Property svn:eol-style set to native
Line 
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 PasteboardHelper_h
23#define PasteboardHelper_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
32#include <gtk/gtk.h>
33
34namespace WebCore {
35
36class PasteboardHelper {
37public:
38    virtual ~PasteboardHelper() {};
39
40    virtual GtkClipboard* getClipboard(Frame*) const = 0;
41    virtual GtkTargetList* getCopyTargetList(Frame*) const = 0;
42    virtual GtkTargetList* getPasteTargetList(Frame*) const = 0;
43};
44
45}
46
47#endif // PasteboardHelper_h
Note: See TracBrowser for help on using the browser.