~ubuntu-branches/ubuntu/trusty/gnome-photos/trusty

« back to all changes in this revision

Viewing changes to src/photos-offset-favorites-controller.h

  • Committer: Package Import Robot
  • Author(s): Jackson Doak
  • Date: 2014-02-12 06:40:47 UTC
  • Revision ID: package-import@ubuntu.com-20140212064047-33l9kizb5e74s7db
Tags: upstream-3.10.2
Import upstream version 3.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Photos - access, organize and share your photos on GNOME
 
3
 * Copyright © 2012, 2013 Red Hat, Inc.
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; either version 2
 
8
 * of the License, or (at your option) any later version.
 
9
 *
 
10
 * This program 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
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
18
 * 02110-1301, USA.
 
19
 */
 
20
 
 
21
/* Based on code from:
 
22
 *   + Documents
 
23
 */
 
24
 
 
25
#ifndef PHOTOS_OFFSET_FAVORITES_CONTROLLER_H
 
26
#define PHOTOS_OFFSET_FAVORITES_CONTROLLER_H
 
27
 
 
28
#include "photos-offset-controller.h"
 
29
 
 
30
G_BEGIN_DECLS
 
31
 
 
32
#define PHOTOS_TYPE_OFFSET_FAVORITES_CONTROLLER (photos_offset_favorites_controller_get_type ())
 
33
 
 
34
#define PHOTOS_OFFSET_FAVORITES_CONTROLLER(obj) \
 
35
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
 
36
   PHOTOS_TYPE_OFFSET_FAVORITES_CONTROLLER, PhotosOffsetFavoritesController))
 
37
 
 
38
#define PHOTOS_OFFSET_FAVORITES_CONTROLLER_CLASS(klass) \
 
39
  (G_TYPE_CHECK_CLASS_CAST ((klass), \
 
40
   PHOTOS_TYPE_OFFSET_FAVORITES_CONTROLLER, PhotosOffsetFavoritesControllerClass))
 
41
 
 
42
#define PHOTOS_IS_OFFSET_FAVORITES_CONTROLLER(obj) \
 
43
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
 
44
   PHOTOS_TYPE_OFFSET_FAVORITES_CONTROLLER))
 
45
 
 
46
#define PHOTOS_IS_OFFSET_FAVORITES_CONTROLLER_CLASS(klass) \
 
47
  (G_TYPE_CHECK_CLASS_TYPE ((klass), \
 
48
   PHOTOS_TYPE_OFFSET_FAVORITES_CONTROLLER))
 
49
 
 
50
#define PHOTOS_OFFSET_FAVORITES_CONTROLLER_GET_CLASS(obj) \
 
51
  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
 
52
   PHOTOS_TYPE_OFFSET_FAVORITES_CONTROLLER, PhotosOffsetFavoritesControllerClass))
 
53
 
 
54
typedef struct _PhotosOffsetFavoritesController        PhotosOffsetFavoritesController;
 
55
typedef struct _PhotosOffsetFavoritesControllerClass   PhotosOffsetFavoritesControllerClass;
 
56
typedef struct _PhotosOffsetFavoritesControllerPrivate PhotosOffsetFavoritesControllerPrivate;
 
57
 
 
58
struct _PhotosOffsetFavoritesController
 
59
{
 
60
  PhotosOffsetController parent_instance;
 
61
  PhotosOffsetFavoritesControllerPrivate *priv;
 
62
};
 
63
 
 
64
struct _PhotosOffsetFavoritesControllerClass
 
65
{
 
66
  PhotosOffsetControllerClass parent_class;
 
67
};
 
68
 
 
69
GType                    photos_offset_favorites_controller_get_type          (void) G_GNUC_CONST;
 
70
 
 
71
PhotosOffsetController  *photos_offset_favorites_controller_dup_singleton     (void);
 
72
 
 
73
G_END_DECLS
 
74
 
 
75
#endif /* PHOTOS_OFFSET_FAVORITES_CONTROLLER_H */