~golfish/netbook-remix-launcher/desktop

« back to all changes in this revision

Viewing changes to src/clutter-drag-server.h

  • Committer: Neil J. Patel
  • Date: 2008-06-03 11:12:18 UTC
  • Revision ID: njpatel@gmail.com-20080603111218-us5xsrseoxh4jmi6
* Update licensing to GPLv3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * Copyright (C) 2008 Canonical Ltd
3
3
 *
4
 
 * This program is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 2 of the License, or (at your option) any later version.
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as 
 
6
 * published by the Free Software Foundation.
8
7
 *
9
 
 * This library is distributed in the hope that it will be useful,
 
8
 * This program is distributed in the hope that it will be useful,
10
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 * Lesser General Public License for more details.
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
13
12
 *
14
 
 * You should have received a copy of the GNU General Public
15
 
 * License along with this library; if not, write to the
16
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 * Boston, MA 02111-1307, USA.
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
15
 *
19
16
 * Authored by Neil Jagdish Patel <neil.patel@canonical.com>
20
17
 *
69
66
 
70
67
ClutterDragServer * clutter_drag_server_get_default (void);
71
68
 
72
 
void                clutter_drag_server_add_drag_dest (ClutterDragServer *server,
73
 
                                                       ClutterDragDest *dest);
 
69
void                clutter_drag_server_add_drag_dest    (ClutterDragServer *server,
 
70
                                                          ClutterDragDest *dest);
74
71
void                clutter_drag_server_remove_drag_dest (ClutterDragServer *server,
75
72
                                                          ClutterDragDest *dest);
76
73
 
77
74
 
78
 
void                clutter_drag_server_begin_drag    (ClutterDragServer *server,
79
 
                                                       ClutterActor      *context,
80
 
                                                       gpointer           udata);
 
75
void                clutter_drag_server_begin_drag       (ClutterDragServer *server,
 
76
                                                          ClutterActor      *context,
 
77
                                                          gpointer           udata);
81
78
 
82
79
 
83
80
#endif /* _CLUTTER_DRAG_SERVER_H_ */