Initial Import
[profile/ivi/clutter-toys.git] / attic / fluttr / libnflick / nflick-show-worker.h
1 /******************************************************************************/
2 /*                                                                            */
3 /* GPL license, Copyright (c) 2005-2006 by:                                   */
4 /*                                                                            */
5 /* Authors:                                                                   */
6 /*      Michael Dominic K. <michaldominik@gmail.com>                          */
7 /*                                                                            */
8 /* This program is free software; you can redistribute it and/or modify it    */
9 /* under the terms of the GNU General Public License as published by the      */
10 /* Free Software Foundation; either version 2, or (at your option) any later  */
11 /* version.                                                                   */
12 /*                                                                            */
13 /* This program is distributed in the hope that it will be useful, but        */
14 /* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY */
15 /* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License   */
16 /* for more details.                                                          */
17 /*                                                                            */
18 /* You should have received a copy of the GNU General Public License along    */
19 /* with this program; if not, write to the Free Software Foundation, Inc., 59 */
20 /* Temple Place - Suite 330, Boston, MA 02111-1307, USA.                      */
21 /*                                                                            */
22 /******************************************************************************/
23
24 #ifndef __NFLICKSHOWWORKER_H__
25 #define __NFLICKSHOWWORKER_H__
26  
27 #include <gtk/gtk.h>
28 #include <libintl.h>
29 #include "nflick-worker.h"
30 #include "nflick-api-request.h"
31 #include "nflick-api-response.h"
32 #include "nflick-get-sizes-response.h"
33 #include "nflick-set-list-response.h"
34 #include "nflick-photo-list-response.h"
35 #include "nflick-photo-set.h"
36 #include "nflick-types.h"
37 #include "nflick-pixbuf-fetch.h"
38
39 struct                          _NFlickShowWorker
40 {
41         NFlickWorker Parent;
42         NFlickShowWorkerPrivate *Private;
43 };
44
45 struct                          _NFlickShowWorkerClass 
46 {
47         NFlickWorkerClass ParentClass;
48 };
49
50 GType                           nflick_show_worker_get_type (void);
51
52 NFlickShowWorker*               nflick_show_worker_new (const gchar *photoid, gint32 width, gint32 height, const gchar *token);
53
54 #endif