~handsomepot/totem/trunk

« back to all changes in this revision

Viewing changes to src/plugins/tracker/totem-tracker-widget.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Sjoerd Simons, Michael Biebl, Josselin Mouette
  • Date: 2011-11-27 06:21:34 UTC
  • mfrom: (1.4.8) (5.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20111127062134-c3ikko9wdfn9m2av
Tags: 3.2.1-1
[ Sjoerd Simons ]
* New upstream release
* debian/control.in: Update build-depends
* debian/rules: Enable vala plugins
* debian/totem-plugins.install:
  - Add grilo and rotation plugins
  - Remove jamendo, thumbnail and tracker plugins

[ Michael Biebl ]
* debian/control.in:
  - Bump Depends on python-gobject to (>= 2.90.3).

[ Josselin Mouette ]
* Replace python-gobject dependencies by python-gi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
2
 
 *
3
 
 * Copyright (C) 2007 Javier Goday <jgoday@gmail.com>
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
 
 * General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
 * Boston, MA  02110-1301, USA.
19
 
 *
20
 
 * Author : Javier Goday <jgoday@gmail.com>
21
 
 */
22
 
#ifndef __TOTEM_TRACKER_WIDGET_H__
23
 
#define __TOTEM_TRACKER_WIDGET_H__
24
 
 
25
 
#include "totem.h"
26
 
 
27
 
#include <gtk/gtk.h>
28
 
 
29
 
#include <libtracker-sparql/tracker-sparql.h>
30
 
 
31
 
#define TOTEM_TYPE_TRACKER_WIDGET               (totem_tracker_widget_get_type ())
32
 
#define TOTEM_TRACKER_WIDGET(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), TOTEM_TYPE_TRACKER_WIDGET, TotemTrackerWidget))
33
 
#define TOTEM_TRACKER_WIDGET_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), TOTEM_TYPE_TRACKER_WIDGET, TotemTrackerWidgetClass))
34
 
#define TOTEM_IS_TRACKER_WIDGET(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TOTEM_TYPE_TRACKER_WIDGET))
35
 
#define TOTEM_IS_TRACKER_WIDGET_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), TOTEM_TYPE_TRACKER_WIDGET))
36
 
#define TOTEM_TRACKER_WIDGET_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), TOTEM_TYPE_TRACKER_WIDGET, TotemTrackerWidgetClass))
37
 
 
38
 
typedef struct TotemTrackerWidgetPrivate  TotemTrackerWidgetPrivate;
39
 
 
40
 
typedef struct TotemTrackerWidget {
41
 
        GtkEventBox parent;
42
 
        
43
 
        TotemObject *totem;
44
 
        TotemTrackerWidgetPrivate *priv;
45
 
} TotemTrackerWidget;
46
 
 
47
 
typedef struct {
48
 
        GtkEventBoxClass parent_class;
49
 
} TotemTrackerWidgetClass;
50
 
 
51
 
GType       totem_tracker_widget_get_type   (void);
52
 
GtkWidget*  totem_tracker_widget_new        (TotemObject *totem); 
53
 
 
54
 
#endif /* __TOTEM_TRACKER_WIDGET_H__ */